diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..967b8c3 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,15 @@ +flutter/ +venv/ +webui/node_modules/ +.git/ +__pycache__/ +*.pyc +.env +.env.* +logs/ +*.md +CHANGELOG/ +docs/ +tests/ +tools/ +template/ diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..237b079 --- /dev/null +++ b/.env.production @@ -0,0 +1,82 @@ +# VoIdeaAI — Production Environment +# Copy to .env on server and fill secrets + +PROJECT_NAME=VoIdeaAI +PROJECT_VERSION=1.0.0 +PROJECT_ENV=production +SERVER_HOST=0.0.0.0 +SERVER_PORT=8020 +SERVER_EXTERNAL_URL=https://voideaai.ru + +# Database (PostgreSQL on port 5444 — separate from aegisone) +DATABASE_URL=postgresql+asyncpg://voidea:DB_PASS@localhost:5444/voidea + +# Redis (port 6380 — separate from aegisone) +REDIS_HOST=localhost +REDIS_PORT=6380 +REDIS_URL=redis://localhost:6380/0 + +# JWT — generate with: openssl rand -hex 64 +JWT_SECRET_KEY= +JWT_RESET_SECRET_KEY= +JWT_ALGORITHM=HS256 +JWT_ACCESS_TOKEN_EXPIRE_MINUTES=60 +JWT_REFRESH_TOKEN_EXPIRE_DAYS=30 + +# AI +OPENAI_API_KEY= +AI_YANDEX_KEY= +AI_YANDEX_FOLDER_ID= +AI_GIGACHAT_CLIENT_ID= +AI_GIGACHAT_SECRET= +AI_FALLBACK_MODEL=yandex_gpt + +# OAuth +OAUTH_YANDEX_ID= +OAUTH_YANDEX_SECRET= +OAUTH_GOOGLE_ID= +OAUTH_GOOGLE_SECRET= +OAUTH_GOOGLE_REDIRECT_URI=https://voideaai.ru/auth/google/callback +OAUTH_APPLE_ID= +OAUTH_APPLE_SECRET= +OAUTH_APPLE_REDIRECT_URI=https://voideaai.ru/auth/apple/callback + +# Telegram Bot +TELEGRAM_BOT_TOKEN= + +# Email +SMTP_HOST= +SMTP_PORT=587 +SMTP_USER= +SMTP_PASS= + +# Rate Limiting +RATE_LIMIT_ENABLED=true +RATE_LIMIT_DEFAULT=60/minute +RATE_LIMIT_AUTH=10/minute + +# Security — generate with: openssl rand -hex 32 +ENCRYPTION_KEY= + +# System Owner +SYSTEM_OWNER_EMAIL= + +# Social Networks +SOCIAL_TELEGRAM=voideaai +SOCIAL_VK=voideaai +SOCIAL_YOUTUBE=voideaai +SOCIAL_TIKTOK=voideaai +PROJECT_SLOGAN=VoIdeaAI — идеи рождаются вслух, решения приходят мгновенно! + +# Tariffs +TARIFFS_ENABLED=false +TARIFFS_FREE_CODE=free + +# Push +FCM_SERVER_KEY= +APNS_KEY_ID= + +# Logging +LOG_LEVEL=INFO +DEBUG_MODE_RETENTION_DAYS=14 +DEBUG_MODE_MAX_SIZE_MB=500 diff --git a/AI-EXISTING-PROJECT-INSTRUCTION.md b/AI-EXISTING-PROJECT-INSTRUCTION.md new file mode 100644 index 0000000..0d335f3 --- /dev/null +++ b/AI-EXISTING-PROJECT-INSTRUCTION.md @@ -0,0 +1,111 @@ +# Внимание: на сервере работает второй проект — VoIdeaAI + +## Дата развёртывания +2026-05-19 + +## Сервер +81.177.141.34 — единый VPS для двух независимых проектов. + +--- + +## 1. Проекты на сервере + +### Проект A: aegisone +| Параметр | Значение | +|----------|----------| +| Порты | 8000 (FastAPI), 8080/9000 (PHP), 5432 (PostgreSQL) | +| Директория | `/opt/projects/aegisone-php/`, `/opt/projects/aegisone-py/` | +| Домен | aegisone.ru, service.aegisone.ru | +| Тип | PHP + Python FastAPI | + +### Проект B: VoIdeaAI +| Параметр | Значение | +|----------|----------| +| Порты | **8020** (FastAPI), **5444** (PostgreSQL), **6380** (Redis) | +| Директория | `/opt/projects/voidea/` | +| Домен | voideaai.ru, git.voideaai.ru (через nginx-proxy) | +| Gitea | порт 3000, PostgreSQL 5433, git.voideaai.ru | +| Тип | Python FastAPI + React Frontend | + +--- + +## 2. Критические правила + +### НЕ занимать порты VoIdeaAI +``` +8020 — FastAPI app +5444 — PostgreSQL +6380 — Redis +5433 — Gitea PostgreSQL +3000 — Gitea web +``` + +### nginx-proxy общий +- Конфиги: `/opt/projects/nginx-proxy/conf.d/` +- Файл VoIdea: `voideaai.ru.conf` +- Файл Gitea: `git.voideaai.ru.conf` + +**Перед рестартом nginx — всегда проверять:** +```bash +docker compose -p nginx-proxy exec nginx nginx -t +``` + +### Docker +- **Все контейнеры используют `network_mode: host`** (bridge не работает на этом VPS) +- **Docker build** требует `network: host` в конфиге сборки +- `docker system prune -af` удалит build cache ВСЕХ проектов — не запускать во время сборки +- `docker compose -p voidea` — префикс для команд VoIdea +- `docker compose -p gitea` — префикс для команд Gitea +- `docker compose -p nginx-proxy` — префикс для nginx + +### Диск +- 20GB всего, ~13GB свободно (на момент деплоя) +- Перед крупными операциями: `df -h /` +- При нехватке места: `docker builder prune -af` + +--- + +## 3. Команды для проверки состояния VoIdeaAI + +```bash +# Статус +docker compose -p voidea ps + +# Логи +docker compose -p voidea logs --tail=20 app + +# Проверка здоровья +curl -s http://localhost:8020/health +curl -s http://localhost:8020/api/v1/health + +# Состояние БД +docker exec voidea-db-1 psql -U voidea -h localhost -p 5444 -d voidea -c "\dt" +``` + +--- + +## 4. Что делать при проблемах с VoIdeaAI + +1. **Не работает voideaai.ru** — проверить nginx: `nginx -t`, проверить конфиг +2. **VoIdea API не отвечает** — `docker compose -p voidea logs app` +3. **VoIdea не может подключиться к БД** — проверить `localhost:5444`, логи `docker compose -p voidea logs db` +4. **Gitea не открывается** — проверить порт 3000: `curl -s http://localhost:3000` + +Если проблема серьёзная — остановить VoIdea без ущерба для aegisone: +```bash +docker compose -p voidea down +# aegisone продолжит работу независимо +``` + +--- + +## 5. Контакты + +- По вопросам VoIdeaAI — обратиться к разработчику, ведущему проект VoIdea +- Проекты независимы, команды разные +- Изменения в nginx-proxy влияют на оба проекта — согласовывать + +--- + +*Создан: 2026-05-19* +*Не редактировать вручную без необходимости* diff --git a/old/Dockerfile b/Dockerfile similarity index 77% rename from old/Dockerfile rename to Dockerfile index a5f7f56..a893aae 100644 --- a/old/Dockerfile +++ b/Dockerfile @@ -7,10 +7,19 @@ RUN npm run build FROM python:3.12-slim WORKDIR /app + +RUN apt-get update && apt-get install -y --no-install-recommends \ + gcc \ + && rm -rf /var/lib/apt/lists/* + COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt + COPY . . COPY --from=frontend-builder /build/dist /app/webui/dist + RUN mkdir -p /app/logs + EXPOSE 8020 + CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8020"] diff --git a/VPS_GUIDE.md b/VPS_GUIDE.md new file mode 100644 index 0000000..d7dca4d --- /dev/null +++ b/VPS_GUIDE.md @@ -0,0 +1,289 @@ +# VPS Infrastructure Guide for AI Agents + +## Overview + +This document describes the VPS infrastructure at **81.177.141.34** to help AI agents migrate or deploy new projects (e.g., `voideaai.ru`). + +--- + +## 1. VPS Specifications + +| Property | Value | +|---|---| +| IP | 81.177.141.34 | +| User | `angel` | +| Password | `.-SHGWa_` | +| Sudo | passwordless via `/etc/sudoers.d/angel` | +| SSH key | added to `~/.ssh/authorized_keys` | +| OS | Ubuntu 24.04 (Noble) | +| Kernel | OpenVZ/LXC container — limited kernel modules | +| Network interface | `venet0` (no bridge NAT support) | +| Disk | 20GB total, ~13GB available | +| Docker | 29.5.0, iptables in nft mode (`iptables-nft`) | + +--- + +## 2. Docker Constraints + +### Critical: `network_mode: host` only + +Bridge networking (`network_mode: bridge`) **does not work** on this VPS. The OpenVZ/LXC kernel does not support masquerade for bridge interfaces through `venet0`. All containers **must** use: + +```yaml +network_mode: host +``` + +### Docker daemon config (`/etc/docker/daemon.json`) + +```json +{"dns": ["8.8.8.8", "8.8.4.4"]} +``` + +### Build constraint + +All Docker builds require: + +```yaml +build: + network: host +``` + +Without this, `apt-get` and `pip` cannot download packages (no bridge NAT). + +### Docker Hub connectivity issues + +Pulling large images (>100MB) from Docker Hub may time out (`failed to copy: read tcp... connection timed out`). Smaller images (nginx:alpine, postgres:16-alpine) work. Gitea and Portainer images **cannot be pulled** reliably. + +**Solutions attempted:** +- Retry with `--platform linux/amd64` +- Increase `max-download-attempts` (not supported in Docker 29.5) +- Clean build cache with `docker builder prune -af` +- All fail on large image layers + +**Workaround:** Pull images locally and SCP (`docker save → scp → docker load`), or use a registry mirror. + +--- + +## 3. Port Allocation (all on host) + +| Port | Service | Container | +|---|---|---| +| 80 | nginx-proxy HTTP | `nginx-proxy` | +| 443 | nginx-proxy HTTPS | `nginx-proxy` | +| 8080 | PHP nginx (aegisone.ru) | `aegisone-php-nginx` | +| 9000 | PHP-FPM | `aegisone-php-fpm` | +| 8000 | FastAPI (service.aegisone.ru) | `aegisone-app` | +| 5432 | PostgreSQL (shared, aegisone) | `aegisone-postgres` | +| 5433 | PostgreSQL (Gitea) | `gitea-db` (planned) | +| 3000 | Gitea | `gitea` (planned) | +| 9001 | Portainer HTTP | `portainer` (planned) | +| 9443 | Portainer HTTPS | `portainer` (planned) | + +### Address resolution between containers + +Since all containers use `network_mode: host`, they communicate via `localhost:PORT`. **Docker DNS names do not resolve.** In `nginx.conf` and app configs, use: + +```nginx +proxy_pass http://localhost:8080; # NOT container_name:port +``` + +--- + +## 4. Project Structure + +``` +/opt/projects/ + nginx-proxy/ # Reverse proxy (nginx + certbot) + docker-compose.yml + nginx.conf + conf.d/ # Per-domain configs + certs/ # SSL certificates + html/ # Webroot for certbot + aegisone-php/ # PHP frontend (aegisone.ru) + docker-compose.yml + Dockerfile + nginx.conf # PHP nginx config (listen 8080) + src/ # PHP source files + aegisone-py/ # FastAPI backend (service.aegisone.ru) + docker-compose.yml + Dockerfile + app/ # Python source + sql/ # DB schema + gitea/ # Git hosting (planned) + docker-compose.yml + portainer/ # Docker UI (planned) + docker-compose.yml +``` + +--- + +## 5. nginx-proxy Configuration Pattern + +### Global config (`nginx.conf`) +- `resolver 127.0.0.11` — not used in host mode, kept for compatibility +- SSL termination handled by nginx-proxy +- Upstream protocols are HTTP (nginx-proxy terminates SSL and proxies via HTTP) + +### Conf.d file structure +Each domain has one `.conf` file with two server blocks: + +```nginx +# HTTP (no redirect — temporary, until LE certs) +server { + listen 80; + server_name example.ru; + + location / { + proxy_pass http://localhost:PORT; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} + +# HTTPS (self-signed, for future LE) +server { + listen 443 ssl; + http2 on; + server_name example.ru; + + ssl_certificate /etc/nginx/certs/live/aegisone.ru/fullchain.pem; + ssl_certificate_key /etc/nginx/certs/live/aegisone.ru/privkey.pem; + + # ... same location block +} +``` + +Note: HTTP→HTTPS redirects (`return 301 https://...`) caused **redirect loops** externally due to provider/proxy intercepting port 443. If you add them, test thoroughly. + +### SSL certificates +Currently using self-signed certs generated via: +```bash +sudo openssl req -x509 -nodes -days 30 -newkey rsa:2048 \ + -keyout /opt/projects/nginx-proxy/certs/live/aegisone.ru/privkey.pem \ + -out /opt/projects/nginx-proxy/certs/live/aegisone.ru/fullchain.pem \ + -subj '/CN=aegisone.ru' +``` + +For Let's Encrypt: +```bash +cd /opt/projects/nginx-proxy +docker compose run --rm certbot certonly --webroot \ + --webroot-path=/var/www/certbot \ + -d example.ru \ + --email admin@example.ru \ + --agree-tos --non-interactive +``` + +--- + +## 6. Deployment Workflow + +### Initial setup +1. Prepare files locally (this repo) +2. Pack into tarball: `tar czf project.tar.gz .` +3. SCP to VPS: `scp project.tar.gz angel@81.177.141.34:/home/angel/` +4. SSH and extract: `ssh angel@81.177.141.34 "tar xzf project.tar.gz -C /opt/projects/project-name/"` +5. Build and start: `ssh angel@81.177.141.34 "cd /opt/projects/project-name && docker compose up -d --build"` + +### Updating a running project +1. Edit files locally +2. SCP changed files to `/home/angel/` on VPS +3. SSH and copy to correct location: `sudo cp /home/angel/file /opt/projects/project-name/` +4. Restart container: `docker compose -p project-name restart service-name` + +### Copying files into a running container (alternative to rebuild) +```bash +docker cp /home/angel/file.py container-name:/app/path/file.py +docker compose -p project-name restart app +``` + +--- + +## 7. Database + +### PostgreSQL (aegisone shared DB) +- Host: `localhost:5432` +- User: `aegisone` +- Password: `aegisone_pass` +- Database: `aegisone` +- Container: `aegisone-postgres` (postgres:16-alpine) + +### Schema initialization +SQL files in `/opt/projects/aegisone-py/sql/`: +- `schema_postgresql.sql` — full schema +- `seed_data.sql` — seed data + +Init scripts run only on first volume creation. To add missing tables later: +```bash +docker exec -i aegisone-postgres psql -U aegisone -d aegisone < /opt/projects/aegisone-py/sql/schema_postgresql.sql +``` + +### Key schema pattern +- All tables use `BOOLEAN` for `is_active` (not integer) +- Timestamps use `TIMESTAMP NOT NULL DEFAULT NOW()` +- `updated_at` triggers via `update_updated_at_column()` function + +--- + +## 8. Useful Commands + +```bash +# Check running containers +docker ps -a + +# Check compose projects +docker compose ls + +# View logs +docker logs container-name --tail 50 + +# Restart service +docker compose -p project-name restart service-name + +# Rebuild and restart +docker compose -p project-name up -d --build + +# Clean build cache +docker builder prune -af + +# Test nginx config +docker compose -p nginx-proxy exec nginx nginx -t + +# Reload nginx +docker compose -p nginx-proxy exec nginx nginx -s reload + +# Check listening ports +ss -tlnp | grep -E ':(80|443|8080|8000|9000|5432)' + +# Check disk +df -h / +docker system df +``` + +--- + +## 9. Adding a New Project (e.g., voideaai.ru) + +### Steps: +1. Create directory: `mkdir -p /opt/projects/voideaai` +2. Create `docker-compose.yml` with `network_mode: host` and `build.network: host` +3. Create `Dockerfile` (use `--only-binary :all:` for pip if avoiding apt) +4. Create nginx-proxy config: `nginx/conf.d/voideaai.conf` (listen 80, proxy_pass localhost:PORT) +5. Generate cert if needed +6. Restart nginx-proxy: `docker compose -p nginx-proxy restart nginx` +7. Start project: `cd /opt/projects/voideaai && docker compose up -d --build` + +### Port allocation for new project +Check existing ports first (`ss -tlnp`). Choose an unused port for the app and add it to the nginx-proxy config. + +--- + +## 10. Known Issues + +1. **Docker Hub timeouts on large images** — consider pulling on local machine and transferring with `docker save`/`docker load` +2. **HTTPS redirect loops externally** — port 443 may be intercepted by provider/proxy; test HTTP first +3. **Bridge networking doesn't work** — all containers must use `network_mode: host` +4. **Docker build needs `network: host`** — without it, apt-get/pip fail +5. **Config files with `$` in content** — when editing via SSH from PowerShell, `$variables` get expanded; use SCP (write locally, then copy) diff --git a/alembic/versions/006_add_workspaces.py b/alembic/versions/006_add_workspaces.py new file mode 100644 index 0000000..d58cd55 --- /dev/null +++ b/alembic/versions/006_add_workspaces.py @@ -0,0 +1,47 @@ +"""Add workspace and workspace_memberships tables + +Revision ID: 006 +Revises: 005 +Create Date: 2026-05-15 +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +revision: str = "006" +down_revision: Union[str, None] = "005" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + "workspaces", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("name", sa.String(255), nullable=False), + sa.Column("type", sa.String(20), nullable=False, server_default=sa.text("'personal'"), index=True), + sa.Column("owner_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("description", sa.Text(), nullable=True), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + ) + + op.create_table( + "workspace_memberships", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("workspace_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("workspaces.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("user_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("role", sa.String(20), nullable=False, server_default=sa.text("'member'")), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + ) + + +def downgrade() -> None: + op.drop_table("workspace_memberships") + op.drop_table("workspaces") diff --git a/alembic/versions/007_add_collaboration.py b/alembic/versions/007_add_collaboration.py new file mode 100644 index 0000000..d919ecf --- /dev/null +++ b/alembic/versions/007_add_collaboration.py @@ -0,0 +1,79 @@ +"""Add collaboration tables: votes, comments, activities, notifications + +Revision ID: 007 +Revises: 006 +Create Date: 2026-05-15 +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +revision: str = "007" +down_revision: Union[str, None] = "006" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.create_table( + "idea_votes", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("idea_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("user_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("vote", sa.String(4), nullable=False), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.UniqueConstraint("idea_id", "user_id", name="uq_idea_user_vote"), + ) + + op.create_table( + "idea_comments", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("idea_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("user_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("content", sa.Text(), nullable=False), + sa.Column("parent_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("idea_comments.id", ondelete="CASCADE"), nullable=True), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + ) + + op.create_table( + "idea_activities", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("idea_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("ideas.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("user_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="SET NULL"), nullable=True, index=True), + sa.Column("action", sa.String(50), nullable=False), + sa.Column("details", postgresql.JSONB(), nullable=True), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + ) + + op.create_table( + "notifications", + sa.Column("id", postgresql.UUID(as_uuid=True), primary_key=True), + sa.Column("user_id", postgresql.UUID(as_uuid=True), + sa.ForeignKey("users.id", ondelete="CASCADE"), nullable=False, index=True), + sa.Column("type", sa.String(50), nullable=False, index=True), + sa.Column("title", sa.String(255), nullable=False), + sa.Column("body", sa.Text(), nullable=False), + sa.Column("link", sa.String(512), nullable=True), + sa.Column("is_read", sa.Boolean(), nullable=False, server_default=sa.text("false"), index=True), + sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + sa.Column("updated_at", sa.DateTime(timezone=True), server_default=sa.func.now()), + ) + + +def downgrade() -> None: + op.drop_table("notifications") + op.drop_table("idea_activities") + op.drop_table("idea_comments") + op.drop_table("idea_votes") diff --git a/alembic/versions/008_add_funnel_status.py b/alembic/versions/008_add_funnel_status.py new file mode 100644 index 0000000..b927dbb --- /dev/null +++ b/alembic/versions/008_add_funnel_status.py @@ -0,0 +1,26 @@ +"""Add funnel_status column to ideas table + +Revision ID: 008 +Revises: 007 +Create Date: 2026-05-15 +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +revision: str = "008" +down_revision: Union[str, None] = "007" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.add_column( + "ideas", + sa.Column("funnel_status", sa.String(20), nullable=True, index=True), + ) + + +def downgrade() -> None: + op.drop_column("ideas", "funnel_status") diff --git a/alembic/versions/009_add_calendar_fields.py b/alembic/versions/009_add_calendar_fields.py new file mode 100644 index 0000000..84308fe --- /dev/null +++ b/alembic/versions/009_add_calendar_fields.py @@ -0,0 +1,31 @@ +"""Add calendar fields to users table + +Revision ID: 009 +Revises: 008 +Create Date: 2026-05-15 +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa + +revision: str = "009" +down_revision: Union[str, None] = "008" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.add_column( + "users", + sa.Column("calendar_provider", sa.String(20), nullable=True), + ) + op.add_column( + "users", + sa.Column("calendar_credentials", sa.Text(), nullable=True), + ) + + +def downgrade() -> None: + op.drop_column("users", "calendar_credentials") + op.drop_column("users", "calendar_provider") diff --git a/alembic/versions/010_add_disk_fields.py b/alembic/versions/010_add_disk_fields.py new file mode 100644 index 0000000..79f045e --- /dev/null +++ b/alembic/versions/010_add_disk_fields.py @@ -0,0 +1,33 @@ +"""Add disk_providers JSONB field to users. + +Revision ID: 010_add_disk_fields +Revises: 009_add_calendar_fields +Create Date: 2026-05-15 +""" + +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +revision: str = "010_add_disk_fields" +down_revision: Union[str, None] = "009_add_calendar_fields" +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + op.add_column( + "users", + sa.Column( + "disk_providers", + postgresql.JSONB, + nullable=True, + default=None, + ), + ) + + +def downgrade() -> None: + op.drop_column("users", "disk_providers") diff --git a/app/agents/meta_agent.py b/app/agents/meta_agent.py new file mode 100644 index 0000000..7c137ca --- /dev/null +++ b/app/agents/meta_agent.py @@ -0,0 +1,176 @@ +"""MetaAgent — Orchestrator agent for VoIdea. + +Configurable from admin panel: +- cron_schedule: str (default "0 9 * * 1,4") +- weights: dict[agent_name, float] +- sources_count: int (default 10) +- auto_create: bool (default True) + +Runs a subset of agents based on weights and collects reports. +""" + +import json +from datetime import datetime, timezone +from typing import Any + +from app.agents.base import AgentResult, AgentStatus, AgentTrigger, BaseAgent +from app.agents.registry import registry + + +DEFAULT_CONFIG: dict[str, Any] = { + "cron_schedule": "0 9 * * 1,4", + "weights": {}, + "sources_count": 10, + "auto_create": True, +} + + +class MetaAgent(BaseAgent): + """Orchestrator agent that coordinates other agents.""" + + name = "meta_agent" + version = "1.0.0" + description = "Orchestrates other agents based on configurable schedule and weights" + triggers = [ + AgentTrigger.MANUAL, + AgentTrigger.CRON, + AgentTrigger.API, + ] + + def __init__(self, config: dict[str, Any] | None = None): + super().__init__() + self._config = {**DEFAULT_CONFIG, **(config or {})} + + @property + def config(self) -> dict[str, Any]: + return self._config + + @config.setter + def config(self, value: dict[str, Any]) -> None: + self._config = {**DEFAULT_CONFIG, **value} + + async def run(self, context: dict[str, Any] | None = None) -> AgentResult: + """Execute meta-agent orchestration. + + Context can contain: + - action: str (orchestrate | report | status) — default "orchestrate" + - target_agents: list[str] — subset of agents to run (default: all) + - sources_count: int — override config + """ + await self.set_running("orchestration") + + try: + action = (context or {}).get("action", "orchestrate") + + if action == "status": + return await self._get_status() + elif action == "report": + return await self._generate_report() + else: + return await self._orchestrate(context or {}) + + except Exception as e: + await self.set_error(str(e)) + return AgentResult( + success=False, + message=f"MetaAgent failed: {str(e)}", + errors=[str(e)], + ) + + async def health_check(self) -> bool: + return True + + async def _orchestrate(self, context: dict[str, Any]) -> AgentResult: + """Run target agents and collect results.""" + target_agents: list[str] | None = context.get("target_agents") + sources_count = context.get("sources_count", self._config["sources_count"]) + weights = self._config.get("weights", {}) + + all_agents = registry.list_agents() + if not all_agents: + await self.set_idle() + return AgentResult( + success=True, + message="No agents registered", + data={"orchestrated": 0}, + ) + + candidates = [] + for a in all_agents: + name = a["name"] + if name == self.name: + continue + weight = weights.get(name, 1.0) + if weight <= 0: + continue + candidates.append((name, weight)) + + if not candidates: + candidates = [(a["name"], 1.0) for a in all_agents if a["name"] != self.name] + + if target_agents: + candidates = [c for c in candidates if c[0] in target_agents] + + max_sources = min(sources_count, len(candidates)) + selected = candidates[:max_sources] + + results: dict[str, Any] = {} + for name, _weight in selected: + try: + result = await registry.run_agent(name, {"trigger": "meta_agent"}) + results[name] = { + "success": result.success, + "message": result.message, + "duration_ms": result.duration_ms, + } + except Exception as e: + results[name] = { + "success": False, + "message": str(e), + } + + success_count = sum(1 for r in results.values() if r["success"]) + total_duration = sum(r.get("duration_ms", 0) for r in results.values()) + + await self.set_idle() + return AgentResult( + success=True, + message=f"Orchestrated {len(results)} agents ({success_count} ok)", + data={ + "orchestrated": len(results), + "success_count": success_count, + "agents": results, + "total_duration_ms": total_duration, + "config": { + "cron_schedule": self._config["cron_schedule"], + "sources_count": sources_count, + "auto_create": self._config["auto_create"], + }, + }, + ) + + async def _generate_report(self) -> AgentResult: + """Generate summary report of all agent statuses.""" + all_agents = registry.list_agents() + metrics = registry.get_metrics_all() + + return AgentResult( + success=True, + message=f"Report: {len(all_agents)} agents", + data={ + "agents": all_agents, + "metrics": metrics, + "generated_at": datetime.now(timezone.utc).isoformat(), + }, + ) + + async def _get_status(self) -> AgentResult: + return AgentResult( + success=True, + message="Meta-agent operational", + data={ + "status": self.status.value, + "config": self._config, + "last_run": self._last_run.isoformat() if self._last_run else None, + }, + ) diff --git a/app/agents/registry.py b/app/agents/registry.py index 3449ee3..36238e5 100644 --- a/app/agents/registry.py +++ b/app/agents/registry.py @@ -15,6 +15,7 @@ from app.agents.ui_test_agent import UITestAgent from app.agents.rollout_agent import RolloutAgent from app.agents.conductor_agent import ConductorAgent from app.agents.supervisor_agent import SupervisorAgent +from app.agents.meta_agent import MetaAgent class AgentRegistry: @@ -36,6 +37,7 @@ class AgentRegistry: self.register(RolloutAgent()) self.register(ConductorAgent()) self.register(SupervisorAgent()) + self.register(MetaAgent()) def register(self, agent: BaseAgent) -> None: if not agent.name: diff --git a/app/api/v1/__init__.py b/app/api/v1/__init__.py index 5f76c14..cf9ca95 100644 --- a/app/api/v1/__init__.py +++ b/app/api/v1/__init__.py @@ -12,6 +12,9 @@ from app.api.v1.voice import router as voice_router from app.api.v1.config import router as config_router from app.api.v1.feedback import router as feedback_router from app.api.v1.tariffs import router as tariffs_router +from app.api.v1.workspaces import router as workspaces_router +from app.api.v1.collaboration import router as collaboration_router +from app.api.v1.calendar import router as calendar_router api_v1_router = APIRouter(prefix="/api/v1") @@ -25,5 +28,8 @@ api_v1_router.include_router(voice_router, prefix="/voice", tags=["voice"]) api_v1_router.include_router(config_router, prefix="/config", tags=["config"]) api_v1_router.include_router(feedback_router, prefix="/feedback", tags=["feedback"]) api_v1_router.include_router(tariffs_router, prefix="/tariffs", tags=["tariffs"]) +api_v1_router.include_router(workspaces_router, prefix="/workspaces", tags=["workspaces"]) +api_v1_router.include_router(collaboration_router, prefix="", tags=["collaboration"]) +api_v1_router.include_router(calendar_router, prefix="", tags=["calendar"]) __all__ = ["api_v1_router"] diff --git a/app/api/v1/admin.py b/app/api/v1/admin.py index 7e96efa..c340773 100644 --- a/app/api/v1/admin.py +++ b/app/api/v1/admin.py @@ -39,6 +39,8 @@ from app.schemas.admin import ( SystemInfoResponse, UserAdminUpdate, ) +from app.agents.base import AgentResult +from app.schemas.agent import AgentRunRequest from app.schemas.bot import BotCommandResponse, BotCommandUpdate from app.schemas.feedback import FeedbackResponse, FeedbackUpdate from app.schemas.tariff import TariffPlanCreate, TariffPlanResponse, TariffPlanUpdate, UserSubscriptionResponse @@ -101,6 +103,7 @@ def _agent_to_response(a: AgentConfig) -> AgentInfoResponse: description=getattr(a, "description", ""), is_enabled=a.is_enabled, version=a.version, + config=a.config, last_run_at=a.last_run_at, ) @@ -191,12 +194,38 @@ async def update_agent( agent.description = body.description if body.is_enabled is not None: agent.is_enabled = body.is_enabled + if body.config is not None: + agent.config = body.config await db.commit() await db.refresh(agent) return _agent_to_response(agent) +@router.post("/agents/{agent_name}/run", response_model=AgentResult) +async def run_agent( + agent_name: str, + user: Annotated[User, Depends(get_current_user)], + body: AgentRunRequest | None = None, +): + from app.agents.registry import registry + + context = body.model_dump() if body else {} + result = await registry.run_agent(agent_name, context) + return result + + +@router.post("/agents/run-all", response_model=dict[str, AgentResult]) +async def run_all_agents( + user: Annotated[User, Depends(get_current_user)], + body: AgentRunRequest | None = None, +): + from app.agents.registry import registry + + context = body.model_dump() if body else {} + return await registry.run_all(context) + + # ── Logs ── @router.get("/logs", response_model=list[LogEntryResponse]) diff --git a/app/api/v1/calendar.py b/app/api/v1/calendar.py new file mode 100644 index 0000000..8b6bee8 --- /dev/null +++ b/app/api/v1/calendar.py @@ -0,0 +1,63 @@ +"""Calendar API routes for VoIdea.""" + +from typing import Annotated + +from fastapi import APIRouter, Depends, HTTPException, status +from sqlalchemy.ext.asyncio import AsyncSession + +from app.core.dependencies import get_current_user, get_db +from app.models.user import User +from app.services.calendar_service import CALENDAR_PROVIDERS, CalendarService +from app.services.idea_service import IdeaService + +router = APIRouter() + + +@router.post("/ideas/{idea_id}/calendar") +async def add_idea_to_calendar( + idea_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + """Create a calendar event from an idea.""" + idea_svc = IdeaService(db) + idea = await idea_svc.get_by_id(idea_id) + if not idea or str(idea.user_id) != str(user.id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + cal_svc = CalendarService(db) + success = await cal_svc.create_idea_event(user, idea.title, idea.content) + if not success: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail="Calendar not configured. Connect a calendar in Settings > Integrations.", + ) + return {"success": True, "message": "Event created in calendar"} + + +@router.get("/calendar/providers") +async def list_calendar_providers(): + return {"providers": list(CALENDAR_PROVIDERS)} + + +@router.get("/calendar/status") +async def calendar_status( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + cal_svc = CalendarService(db) + creds = await cal_svc.get_calendar_credentials(user) + return { + "connected": creds is not None, + "provider": user.calendar_provider if hasattr(user, "calendar_provider") else None, + } + + +@router.post("/calendar/disconnect") +async def disconnect_calendar( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + cal_svc = CalendarService(db) + await cal_svc.disconnect_calendar(user) + return {"success": True} diff --git a/app/api/v1/collaboration.py b/app/api/v1/collaboration.py new file mode 100644 index 0000000..02872d4 --- /dev/null +++ b/app/api/v1/collaboration.py @@ -0,0 +1,204 @@ +"""Collaboration API routes for VoIdea. + +Voting, comments, activity log, and notifications. +""" + +from typing import Annotated +from uuid import UUID + +from fastapi import APIRouter, Depends, HTTPException, Query, status +from sqlalchemy.ext.asyncio import AsyncSession + +from sqlalchemy import select + +from app.core.dependencies import get_current_user, get_db +from app.models.collaboration import Notification +from app.models.user import User +from app.schemas.collaboration import ( + ActivityResponse, + CommentCreate, + CommentResponse, + NotificationResponse, + NotificationUnreadCount, + VoteCount, + VoteResponse, + VoteToggleRequest, +) +from app.services.collaboration_service import CollaborationService +from app.services.idea_service import IdeaService + +router = APIRouter() + + +@router.post("/ideas/{idea_id}/vote", response_model=VoteCount) +async def toggle_vote( + idea_id: str, + body: VoteToggleRequest, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + idea_svc = IdeaService(db) + idea = await idea_svc.get_by_id(idea_id) + if not idea or str(idea.user_id) != str(user.id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + await svc.toggle_vote(UUID(idea_id), user.id, body.vote) + counts = await svc.get_vote_counts(UUID(idea_id)) + user_vote = await svc.get_user_vote(UUID(idea_id), user.id) + return VoteCount(**counts, user_vote=user_vote) + + +@router.get("/ideas/{idea_id}/votes", response_model=VoteCount) +async def get_votes( + idea_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + idea_svc = IdeaService(db) + idea = await idea_svc.get_by_id(idea_id) + if not idea or str(idea.user_id) != str(user.id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + counts = await svc.get_vote_counts(UUID(idea_id)) + user_vote = await svc.get_user_vote(UUID(idea_id), user.id) + return VoteCount(**counts, user_vote=user_vote) + + +# ── Comments ── + + +@router.get("/ideas/{idea_id}/comments", response_model=list[CommentResponse]) +async def list_comments( + idea_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + return await svc.list_comments(UUID(idea_id)) + + +@router.post("/ideas/{idea_id}/comments", response_model=CommentResponse, status_code=status.HTTP_201_CREATED) +async def create_comment( + idea_id: str, + body: CommentCreate, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + parent_id = UUID(body.parent_id) if body.parent_id else None + c = await svc.create_comment(UUID(idea_id), user.id, body.content, parent_id) + + await svc.log_activity( + UUID(idea_id), user.id, "comment", + {"comment_id": str(c.id), "preview": body.content[:100]}, + ) + + return CommentResponse( + id=str(c.id), + idea_id=str(c.idea_id), + user_id=str(c.user_id), + content=c.content, + parent_id=str(c.parent_id) if c.parent_id else None, + display_name=user.display_name, + avatar_url=user.avatar_url, + created_at=c.created_at, + updated_at=c.updated_at, + ) + + +@router.delete("/ideas/{idea_id}/comments/{comment_id}", status_code=status.HTTP_204_NO_CONTENT) +async def delete_comment( + idea_id: str, + comment_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + success = await svc.delete_comment(UUID(comment_id), user.id) + if not success: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Comment not found") + + +# ── Activity ── + + +@router.get("/ideas/{idea_id}/activity", response_model=list[ActivityResponse]) +async def list_activity( + idea_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), + limit: int = Query(50, ge=1, le=200), +): + svc = CollaborationService(db) + return await svc.list_activities(UUID(idea_id), limit=limit) + + +# ── Notifications ── + + +@router.get("/notifications", response_model=list[NotificationResponse]) +async def list_notifications( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), + unread_only: bool = Query(False), +): + svc = CollaborationService(db) + notifications = await svc.list_notifications(user.id, unread_only=unread_only) + return [ + NotificationResponse( + id=str(n.id), + type=n.type, + title=n.title, + body=n.body, + link=n.link, + is_read=n.is_read, + created_at=n.created_at, + ) + for n in notifications + ] + + +@router.get("/notifications/unread-count", response_model=NotificationUnreadCount) +async def unread_count( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + count = await svc.get_unread_count(user.id) + return NotificationUnreadCount(count=count) + + +@router.post("/notifications/{notification_id}/read", response_model=NotificationResponse) +async def mark_read( + notification_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + success = await svc.mark_notification_read(UUID(notification_id), user.id) + if not success: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Notification not found") + + result = await db.execute( + select(Notification).where(Notification.id == UUID(notification_id)) + ) + n = result.scalar_one() + return NotificationResponse( + id=str(n.id), type=n.type, title=n.title, body=n.body, + link=n.link, is_read=n.is_read, created_at=n.created_at, + ) + + +@router.post("/notifications/read-all", response_model=NotificationUnreadCount) +async def mark_all_read( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = CollaborationService(db) + count = await svc.mark_all_read(user.id) + return NotificationUnreadCount(count=count) + + + diff --git a/app/api/v1/disk.py b/app/api/v1/disk.py new file mode 100644 index 0000000..e160df8 --- /dev/null +++ b/app/api/v1/disk.py @@ -0,0 +1,128 @@ +"""Disk/Drive API routes for VoIdea.""" + +import logging +from typing import Annotated + +from fastapi import APIRouter, Depends, HTTPException, Query, status +from pydantic import BaseModel +from sqlalchemy.ext.asyncio import AsyncSession + +from app.core.dependencies import get_current_user, get_db +from app.models.user import User +from app.services.disk_service import DISK_PROVIDERS, DiskService + +logger = logging.getLogger(__name__) +router = APIRouter() + + +class ConnectRequest(BaseModel): + provider: str + code: str + + +class DisconnectRequest(BaseModel): + provider: str + + +@router.get("/disk/providers") +async def list_disk_providers(): + """List available disk providers and user's connected ones.""" + return {"providers": list(DISK_PROVIDERS)} + + +@router.get("/disk/status") +async def disk_status( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + """Get user's connected disk providers.""" + svc = DiskService(db) + providers = await svc.get_connected_providers(user) + return {"connected": providers, "count": len(providers)} + + +@router.post("/disk/connect") +async def connect_disk( + body: ConnectRequest, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + """Exchange OAuth code for tokens and store provider connection.""" + if body.provider not in DISK_PROVIDERS: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider") + + tokens = None + email = "" + + if body.provider == "google": + from app.integrations.oauth.google import exchange_code, get_user_info + tokens = await exchange_code(body.code) + if tokens: + info = await get_user_info(tokens.get("access_token", "")) + if info: + email = info.email + + elif body.provider == "yandex": + from app.integrations.oauth.yandex import exchange_code, get_user_info + token_result = await exchange_code(body.code) + if token_result: + tokens = { + "access_token": token_result.access_token, + "refresh_token": token_result.refresh_token, + "expires_at": ( + token_result.expires_at.isoformat() + if token_result.expires_at else None + ), + } + info = await get_user_info(token_result.access_token) + if info: + email = info.email + + elif body.provider == "apple": + from app.integrations.oauth.apple import exchange_code + result = await exchange_code(body.code) + if result: + tokens = result + + if not tokens: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail="Failed to exchange authorization code", + ) + + svc = DiskService(db) + await svc.add_provider(user, body.provider, tokens, email=email) + return {"success": True, "provider": body.provider} + + +@router.post("/disk/disconnect") +async def disconnect_disk( + body: DisconnectRequest, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + """Disconnect a disk provider.""" + svc = DiskService(db) + await svc.remove_provider(user, body.provider) + return {"success": True} + + +@router.get("/disk/oauth-url/{provider}") +async def disk_oauth_url(provider: str): + """Get OAuth authorize URL for a disk provider.""" + if provider not in DISK_PROVIDERS: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider") + + if provider == "google": + from app.integrations.oauth.google import get_authorize_url + url = await get_authorize_url() + elif provider == "yandex": + from app.integrations.oauth.yandex import get_authorize_url + url = await get_authorize_url() + elif provider == "apple": + from app.integrations.oauth.apple import get_authorize_url + url = await get_authorize_url() + else: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail="Unknown provider") + + return {"url": url} diff --git a/app/api/v1/ideas.py b/app/api/v1/ideas.py index 2d1be91..f9eaeb8 100644 --- a/app/api/v1/ideas.py +++ b/app/api/v1/ideas.py @@ -14,14 +14,18 @@ from app.models.idea import Idea from app.models.user import User from app.schemas.idea import ( AnalysisResultResponse, + FunnelTransitionRequest, IdeaAnalyzeResponse, IdeaCreate, IdeaResponse, IdeaUpdate, ) from app.services.analysis_service import AnalysisService +from app.services.collaboration_service import CollaborationService +from app.services.disk_service import DiskService from app.services.export_service import export_content from app.services.idea_service import IdeaService +from app.services.presentation_service import PresentationService router = APIRouter() @@ -186,6 +190,65 @@ async def export_idea( ) +@router.post("/{idea_id}/presentation") +async def generate_presentation( + idea_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), + roles: str = Query("", description="Comma-separated role names (empty=all)"), + destination: str = Query("download", regex="^(download|drive)$"), + drive_provider: str = Query("", description="Specific drive provider (google/yandex/apple)"), +): + """Generate HTML presentation for an idea. + + Args: + destination: "download" = return as file, "drive" = upload to cloud drive + roles: Comma-separated agent roles (empty = all available) + drive_provider: Specific provider to upload to (empty = auto-detect) + """ + idea_svc = IdeaService(db) + idea = await idea_svc.get_by_id(idea_id) + if not idea or str(idea.user_id) != str(user.id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + role_list = [r.strip() for r in roles.split(",") if r.strip()] if roles else None + pres_svc = PresentationService(db) + html = await pres_svc.generate(idea_id, roles=role_list, user_name=user.display_name) + if not html: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + filename = f"prezentaciya_{idea.title[:40].replace(' ', '_')}.html" + + if destination == "drive": + disk_svc = DiskService(db) + content_bytes = html.encode("utf-8") + if drive_provider: + success = await disk_svc.upload_to_provider( + user, drive_provider, filename, content_bytes + ) + if not success: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail=f"Failed to upload to {drive_provider}", + ) + return {"success": True, "provider": drive_provider, "filename": filename} + else: + result = await disk_svc.upload_to_any(user, filename, content_bytes) + if not result: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail="No connected drive. Connect a cloud drive first.", + ) + return {"success": True, "provider": result["provider"], "filename": filename} + + from fastapi.responses import Response + return Response( + content=html, + media_type="text/html; charset=utf-8", + headers={"Content-Disposition": f'attachment; filename="{filename}"'}, + ) + + @router.post("/{idea_id}/share", response_model=IdeaResponse) async def toggle_idea_share( idea_id: str, @@ -208,6 +271,39 @@ async def toggle_idea_share( return _idea_to_response(idea) +@router.post("/{idea_id}/funnel", response_model=IdeaResponse) +async def transition_funnel( + idea_id: str, + body: FunnelTransitionRequest, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + service = IdeaService(db) + idea = await service.get_by_id(idea_id) + if not idea or str(idea.user_id) != str(user.id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Idea not found") + + target = body.target_status + valid_states = Idea.FUNNEL_STATES + if target not in valid_states: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail=f"Invalid funnel status. Valid: {', '.join(valid_states)}", + ) + + idea.funnel_status = target + await db.commit() + await db.refresh(idea) + + collab = CollaborationService(db) + await collab.log_activity( + UUID(idea_id), user.id, "funnel", + {"from": idea.funnel_status, "to": target}, + ) + + return _idea_to_response(idea) + + @router.post("/demo", response_model=IdeaResponse, status_code=status.HTTP_201_CREATED) async def create_demo_idea( user: Annotated[User, Depends(get_current_user)], diff --git a/app/api/v1/workspaces.py b/app/api/v1/workspaces.py new file mode 100644 index 0000000..24b6c02 --- /dev/null +++ b/app/api/v1/workspaces.py @@ -0,0 +1,178 @@ +"""Workspace API routes for VoIdea.""" + +from typing import Annotated +from uuid import UUID + +from fastapi import APIRouter, Depends, HTTPException, status +from sqlalchemy.ext.asyncio import AsyncSession + +from app.core.dependencies import get_current_user, get_db +from app.models.user import User +from app.schemas.workspace import ( + AddMemberRequest, + MemberResponse, + WorkspaceCreate, + WorkspaceResponse, + WorkspaceUpdate, +) +from app.services.workspace_service import WorkspaceError, WorkspaceLimitError, WorkspaceService + +router = APIRouter() + + +def _ws_to_response(ws, member_count=0) -> WorkspaceResponse: + return WorkspaceResponse( + id=str(ws.id), + name=ws.name, + type=ws.type, + owner_id=str(ws.owner_id), + description=ws.description, + member_count=member_count, + created_at=ws.created_at, + updated_at=ws.updated_at, + ) + + +@router.get("/", response_model=list[WorkspaceResponse]) +async def list_workspaces( + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + + personal = await svc.create_personal(user.id) + workspaces = await svc.list_user_workspaces(user.id) + + result = [] + for ws in workspaces: + members = await svc.list_members(ws.id) + result.append(_ws_to_response(ws, member_count=len(members))) + return result + + +@router.post("/", response_model=WorkspaceResponse, status_code=status.HTTP_201_CREATED) +async def create_workspace( + body: WorkspaceCreate, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + try: + if body.type == "personal": + ws = await svc.create_personal(user.id, body.name) + else: + ws = await svc.create_team(body.name, user.id) + members = await svc.list_members(ws.id) + return _ws_to_response(ws, member_count=len(members)) + except WorkspaceLimitError as e: + raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=str(e)) + except WorkspaceError as e: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e)) + + +@router.get("/{workspace_id}", response_model=WorkspaceResponse) +async def get_workspace( + workspace_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + ws = await svc.get_by_id(UUID(workspace_id)) + if not ws: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found") + membership = await svc.get_membership(ws.id, user.id) + if not membership: + raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Not a member") + members = await svc.list_members(ws.id) + return _ws_to_response(ws, member_count=len(members)) + + +@router.patch("/{workspace_id}", response_model=WorkspaceResponse) +async def update_workspace( + workspace_id: str, + body: WorkspaceUpdate, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + try: + ws = await svc.update_workspace( + UUID(workspace_id), user.id, body.model_dump(exclude_none=True) + ) + if not ws: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found") + members = await svc.list_members(ws.id) + return _ws_to_response(ws, member_count=len(members)) + except WorkspaceError as e: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e)) + + +@router.delete("/{workspace_id}", status_code=status.HTTP_204_NO_CONTENT) +async def delete_workspace( + workspace_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + try: + success = await svc.delete_workspace(UUID(workspace_id), user.id) + if not success: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found") + except WorkspaceError as e: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e)) + + +# ── Members ── + + +@router.get("/{workspace_id}/members", response_model=list[MemberResponse]) +async def list_members( + workspace_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + ws = await svc.get_by_id(UUID(workspace_id)) + if not ws: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Workspace not found") + membership = await svc.get_membership(ws.id, user.id) + if not membership: + raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="Not a member") + members = await svc.list_members(ws.id) + return [MemberResponse(**m) for m in members] + + +@router.post("/{workspace_id}/members", response_model=MemberResponse, status_code=status.HTTP_201_CREATED) +async def add_member( + workspace_id: str, + body: AddMemberRequest, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + try: + member = await svc.add_member(UUID(workspace_id), UUID(body.user_id), body.role) + members = await svc.list_members(ws_id := UUID(workspace_id)) + m = next((m for m in members if m["id"] == str(member.id)), None) + return MemberResponse(**m) if m else MemberResponse( + id=str(member.id), user_id=str(member.user_id), + workspace_id=str(member.workspace_id), role=member.role, + joined_at=member.created_at, + ) + except WorkspaceLimitError as e: + raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail=str(e)) + except WorkspaceError as e: + raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e)) + + +@router.delete("/{workspace_id}/members/{member_id}", status_code=status.HTTP_204_NO_CONTENT) +async def remove_member( + workspace_id: str, + member_id: str, + user: Annotated[User, Depends(get_current_user)], + db: AsyncSession = Depends(get_db), +): + svc = WorkspaceService(db) + success = await svc.remove_member(UUID(workspace_id), UUID(member_id)) + if not success: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Member not found") diff --git a/app/core/seed.py b/app/core/seed.py index e2fc26e..75c9164 100644 --- a/app/core/seed.py +++ b/app/core/seed.py @@ -1,18 +1,22 @@ """Seed data for VoIdeaAI. Called from app lifespan when DB tables are empty. -Creates default tariff plans and sets system owner by email. +Creates default tariff plans, demo user, and sets system owner by email. """ import json +from datetime import datetime, timezone from pathlib import Path +from uuid import uuid4 from sqlalchemy import select from sqlalchemy.ext.asyncio import AsyncSession from app.core.config import get_settings +from app.core.security import get_password_hash from app.models.agent import AgentConfig from app.models.tariff import TariffPlan +from app.models.user import User from app.services.user_service import UserService settings = get_settings() @@ -60,6 +64,7 @@ async def seed_database(db: AsyncSession) -> None: """Seed initial data if tables are empty.""" await _seed_tariff_plans(db) await _seed_agent_descriptions(db) + await _seed_demo_user(db) await _seed_owner(db) @@ -118,6 +123,27 @@ async def _seed_agent_descriptions(db: AsyncSession) -> None: await db.commit() +async def _seed_demo_user(db: AsyncSession) -> None: + """Create demo@voidea.app / demo1234 if not exists.""" + result = await db.execute(select(User).where(User.email == "demo@voidea.app")) + if result.scalar_one_or_none(): + return + + demo = User( + id=uuid4(), + email="demo@voidea.app", + password_hash=get_password_hash("demo1234"), + display_name="Demo User", + is_active=True, + is_superuser=True, + role="admin", + accepted_terms_at=datetime.now(timezone.utc), + accepted_terms_version=settings.accepted_terms_version, + ) + db.add(demo) + await db.commit() + + async def _seed_owner(db: AsyncSession) -> None: """Set system owner by SYSTEM_OWNER_EMAIL if configured.""" if not settings.system_owner_email: diff --git a/app/integrations/calendar/__init__.py b/app/integrations/calendar/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/integrations/calendar/apple_caldav.py b/app/integrations/calendar/apple_caldav.py new file mode 100644 index 0000000..c22b7bf --- /dev/null +++ b/app/integrations/calendar/apple_caldav.py @@ -0,0 +1,35 @@ +"""Apple CalDAV stub implementation. + +When credentials are empty, logs the operation and returns True. +Real CalDAV implementation deferred. +""" + +import logging + +logger = logging.getLogger(__name__) + + +class AppleCalDavStub: + """Apple Calendar via CalDAV (stub — logs only).""" + + async def create_event( + self, + summary: str, + description: str, + start_iso: str, + end_iso: str, + **kwargs, + ) -> bool: + logger.info( + "Apple CalDAV stub: create_event called — " + "summary=%s, start=%s, end=%s", + summary, start_iso, end_iso, + ) + return True + + async def list_events(self, max_results: int = 10) -> list[dict]: + logger.info("Apple CalDAV stub: list_events called") + return [] + + async def health_check(self) -> bool: + return True diff --git a/app/integrations/calendar/google_calendar.py b/app/integrations/calendar/google_calendar.py new file mode 100644 index 0000000..e178c9d --- /dev/null +++ b/app/integrations/calendar/google_calendar.py @@ -0,0 +1,58 @@ +"""Google Calendar API client for VoIdea. + +Uses OAuth access token to create events via Google Calendar API v3. +""" + +import logging + +import httpx + +logger = logging.getLogger(__name__) + +GOOGLE_CALENDAR_URL = "https://www.googleapis.com/calendar/v3" + + +class GoogleCalendarClient: + def __init__(self, access_token: str): + self._access_token = access_token + + async def create_event( + self, + summary: str, + description: str, + start_iso: str, + end_iso: str, + **kwargs, + ) -> bool: + async with httpx.AsyncClient() as client: + resp = await client.post( + f"{GOOGLE_CALENDAR_URL}/calendars/primary/events", + headers={ + "Authorization": f"Bearer {self._access_token}", + "Content-Type": "application/json", + }, + json={ + "summary": summary, + "description": description, + "start": {"dateTime": start_iso, "timeZone": "UTC"}, + "end": {"dateTime": end_iso, "timeZone": "UTC"}, + }, + ) + if resp.status_code == 200: + return True + logger.error("Google Calendar create_event failed: %s %s", resp.status_code, resp.text) + return False + + async def list_events(self, max_results: int = 10) -> list[dict]: + async with httpx.AsyncClient() as client: + resp = await client.get( + f"{GOOGLE_CALENDAR_URL}/calendars/primary/events", + headers={"Authorization": f"Bearer {self._access_token}"}, + params={"maxResults": max_results, "orderBy": "startTime", "singleEvents": "true"}, + ) + if resp.status_code == 200: + return resp.json().get("items", []) + return [] + + async def health_check(self) -> bool: + return bool(self._access_token) diff --git a/app/integrations/calendar/yandex_calendar.py b/app/integrations/calendar/yandex_calendar.py new file mode 100644 index 0000000..0df7ee5 --- /dev/null +++ b/app/integrations/calendar/yandex_calendar.py @@ -0,0 +1,58 @@ +"""Yandex Calendar API client for VoIdea. + +Uses OAuth access token to create events via Yandex Calendar API. +""" + +import logging + +import httpx + +logger = logging.getLogger(__name__) + +YANDEX_CALENDAR_URL = "https://calendar.yandex.ru/api" + + +class YandexCalendarClient: + def __init__(self, access_token: str): + self._access_token = access_token + + async def create_event( + self, + summary: str, + description: str, + start_iso: str, + end_iso: str, + **kwargs, + ) -> bool: + async with httpx.AsyncClient() as client: + resp = await client.post( + f"{YANDEX_CALENDAR_URL}/events", + headers={ + "Authorization": f"OAuth {self._access_token}", + "Content-Type": "application/json", + }, + json={ + "summary": summary, + "description": description, + "start": {"dateTime": start_iso, "timeZone": "UTC"}, + "end": {"dateTime": end_iso, "timeZone": "UTC"}, + }, + ) + if resp.status_code in (200, 201): + return True + logger.error("Yandex Calendar create_event failed: %s %s", resp.status_code, resp.text) + return False + + async def list_events(self, max_results: int = 10) -> list[dict]: + async with httpx.AsyncClient() as client: + resp = await client.get( + f"{YANDEX_CALENDAR_URL}/events", + headers={"Authorization": f"OAuth {self._access_token}"}, + params={"maxResults": max_results}, + ) + if resp.status_code == 200: + return resp.json().get("events", []) + return [] + + async def health_check(self) -> bool: + return bool(self._access_token) diff --git a/app/integrations/oauth/google.py b/app/integrations/oauth/google.py index 0dfd97c..a6dc173 100644 --- a/app/integrations/oauth/google.py +++ b/app/integrations/oauth/google.py @@ -18,6 +18,7 @@ SCOPES = " ".join([ "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/drive.file", + "https://www.googleapis.com/auth/calendar.events", ]) VOIDEA_DRIVE_FOLDER = "VoIdeaAI" diff --git a/app/integrations/oauth/yandex.py b/app/integrations/oauth/yandex.py index a147f41..9513b8e 100644 --- a/app/integrations/oauth/yandex.py +++ b/app/integrations/oauth/yandex.py @@ -28,6 +28,7 @@ SCOPES = " ".join([ "cloud_api:disk.app_folder", "cloud_api:disk.read", "cloud_api:disk.info", + "calendar:event.write", ]) VOIDEA_DISK_FOLDER = "VoIdeaAI" diff --git a/app/models/__init__.py b/app/models/__init__.py index 4ec8e2d..a3ed84a 100644 --- a/app/models/__init__.py +++ b/app/models/__init__.py @@ -10,3 +10,5 @@ from app.models.log import LogEntry from app.models.conductor import ConductorInteraction from app.models.pipeline import PipelineStats from app.models.bot_command import BotCommand +from app.models.workspace import Workspace, WorkspaceMembership +from app.models.collaboration import IdeaVote, IdeaComment, IdeaActivity, Notification diff --git a/app/models/collaboration.py b/app/models/collaboration.py new file mode 100644 index 0000000..0240c5a --- /dev/null +++ b/app/models/collaboration.py @@ -0,0 +1,106 @@ +"""Collaboration models for VoIdea. + +Voting, threaded comments, activity log, and notifications. +""" + +from typing import Optional + +from sqlalchemy import Boolean, ForeignKey, String, Text, UniqueConstraint +from sqlalchemy.dialects.postgresql import JSONB, UUID +from sqlalchemy.orm import Mapped, mapped_column + +from app.core.base import SQLBase, TimestampMixin, UUIDMixin + + +class IdeaVote(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "idea_votes" + + idea_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("ideas.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + user_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + vote: Mapped[str] = mapped_column( + String(4), nullable=False + ) + + __table_args__ = ( + UniqueConstraint("idea_id", "user_id", name="uq_idea_user_vote"), + ) + + +class IdeaComment(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "idea_comments" + + idea_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("ideas.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + user_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + content: Mapped[str] = mapped_column(Text, nullable=False) + parent_id: Mapped[Optional[UUID]] = mapped_column( + UUID(as_uuid=True), + ForeignKey("idea_comments.id", ondelete="CASCADE"), + nullable=True, + ) + + +class IdeaActivity(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "idea_activities" + + idea_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("ideas.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + user_id: Mapped[Optional[UUID]] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="SET NULL"), + nullable=True, + index=True, + ) + action: Mapped[str] = mapped_column( + String(50), nullable=False + ) + details: Mapped[Optional[dict]] = mapped_column( + JSONB, nullable=True + ) + + +class Notification(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "notifications" + + user_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + type: Mapped[str] = mapped_column( + String(50), nullable=False, index=True + ) + title: Mapped[str] = mapped_column( + String(255), nullable=False + ) + body: Mapped[str] = mapped_column(Text, nullable=False) + link: Mapped[Optional[str]] = mapped_column( + String(512), nullable=True + ) + is_read: Mapped[bool] = mapped_column( + Boolean, default=False, nullable=False, index=True + ) diff --git a/app/models/idea.py b/app/models/idea.py index 125ad02..8c367fe 100644 --- a/app/models/idea.py +++ b/app/models/idea.py @@ -36,5 +36,10 @@ class Idea(SQLBase, UUIDMixin, TimestampMixin): public_slug: Mapped[Optional[str]] = mapped_column( String(64), unique=True, nullable=True, index=True ) + funnel_status: Mapped[Optional[str]] = mapped_column( + String(20), nullable=True, default=None, index=True + ) + + FUNNEL_STATES = ["raw", "validated", "backlog", "in_progress", "launched", "retrospective"] user = relationship("User", back_populates="ideas", lazy="selectin") diff --git a/app/models/user.py b/app/models/user.py index 971d5fa..d51eb15 100644 --- a/app/models/user.py +++ b/app/models/user.py @@ -3,7 +3,7 @@ from datetime import datetime from typing import Any, Optional -from sqlalchemy import Boolean, DateTime, String +from sqlalchemy import Boolean, DateTime, String, Text from sqlalchemy.dialects.postgresql import JSONB, UUID from sqlalchemy.orm import Mapped, mapped_column, relationship @@ -60,4 +60,15 @@ class User(SQLBase, UUIDMixin, TimestampMixin): String(255), nullable=True ) + calendar_provider: Mapped[Optional[str]] = mapped_column( + String(20), nullable=True, default=None + ) + calendar_credentials: Mapped[Optional[str]] = mapped_column( + Text, nullable=True, default=None + ) + + disk_providers: Mapped[Optional[list[dict[str, Any]]]] = mapped_column( + JSONB, nullable=True, default=None + ) + ideas = relationship("Idea", back_populates="user", lazy="selectin") diff --git a/app/models/workspace.py b/app/models/workspace.py new file mode 100644 index 0000000..118496b --- /dev/null +++ b/app/models/workspace.py @@ -0,0 +1,63 @@ +"""Workspace models for VoIdea. + +Personal workspace (1 per user, free) + Team workspaces (tariff-gated). +""" + +from typing import Optional + +from sqlalchemy import Boolean, ForeignKey, Integer, String, Text +from sqlalchemy.dialects.postgresql import UUID +from sqlalchemy.orm import Mapped, mapped_column, relationship + +from app.core.base import SQLBase, TimestampMixin, UUIDMixin + + +class Workspace(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "workspaces" + + name: Mapped[str] = mapped_column( + String(255), nullable=False + ) + type: Mapped[str] = mapped_column( + String(20), nullable=False, default="personal", index=True + ) + owner_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + description: Mapped[Optional[str]] = mapped_column( + Text, nullable=True, default="" + ) + + owner = relationship("User", backref="owned_workspaces", lazy="selectin") + members = relationship( + "WorkspaceMembership", back_populates="workspace", + lazy="selectin", cascade="all, delete-orphan", + ) + + +class WorkspaceMembership(SQLBase, UUIDMixin, TimestampMixin): + __tablename__ = "workspace_memberships" + + workspace_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("workspaces.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + user_id: Mapped[UUID] = mapped_column( + UUID(as_uuid=True), + ForeignKey("users.id", ondelete="CASCADE"), + nullable=False, + index=True, + ) + role: Mapped[str] = mapped_column( + String(20), nullable=False, default="member" + ) + + workspace = relationship( + "Workspace", back_populates="members", lazy="selectin" + ) + user = relationship("User", backref="workspace_memberships", lazy="selectin") diff --git a/app/schemas/admin.py b/app/schemas/admin.py index ea3b510..41fc606 100644 --- a/app/schemas/admin.py +++ b/app/schemas/admin.py @@ -41,12 +41,14 @@ class AgentInfoResponse(BaseModel): description: str = "" is_enabled: bool = True version: str = "1.0.0" + config: Optional[str] = None last_run_at: Optional[datetime] = None class AgentUpdateRequest(BaseModel): description: Optional[str] = None is_enabled: Optional[bool] = None + config: Optional[str] = None class ServiceActionRequest(BaseModel): diff --git a/app/schemas/collaboration.py b/app/schemas/collaboration.py new file mode 100644 index 0000000..5375cd0 --- /dev/null +++ b/app/schemas/collaboration.py @@ -0,0 +1,66 @@ +"""Collaboration schemas for VoIdea API.""" + +from datetime import datetime +from typing import Any, Optional + +from pydantic import BaseModel, Field + + +class VoteResponse(BaseModel): + id: str + idea_id: str + user_id: str + vote: str + created_at: datetime + + +class VoteToggleRequest(BaseModel): + vote: str = Field(pattern="^(up|down)$") + + +class VoteCount(BaseModel): + up: int = 0 + down: int = 0 + user_vote: Optional[str] = None + + +class CommentCreate(BaseModel): + content: str = Field(min_length=1) + parent_id: Optional[str] = None + + +class CommentResponse(BaseModel): + id: str + idea_id: str + user_id: str + content: str + parent_id: Optional[str] = None + display_name: str = "" + avatar_url: Optional[str] = None + created_at: datetime + updated_at: datetime + replies: list["CommentResponse"] = [] + + +class ActivityResponse(BaseModel): + id: str + idea_id: str + user_id: Optional[str] = None + action: str + details: Optional[dict[str, Any]] = None + display_name: str = "" + created_at: datetime + + +class NotificationResponse(BaseModel): + id: str + type: str + title: str + body: str + link: Optional[str] = None + is_read: bool + created_at: datetime + + +class NotificationUnreadCount(BaseModel): + count: int = 0 diff --git a/app/schemas/idea.py b/app/schemas/idea.py index 2654dbf..00c1a6f 100644 --- a/app/schemas/idea.py +++ b/app/schemas/idea.py @@ -19,6 +19,7 @@ class IdeaUpdate(BaseModel): status: Optional[str] = None tags: Optional[list[str]] = None is_public: Optional[bool] = None + funnel_status: Optional[str] = None class IdeaResponse(BaseModel): @@ -30,10 +31,15 @@ class IdeaResponse(BaseModel): tags: Optional[list[str]] = None is_public: bool public_slug: Optional[str] = None + funnel_status: Optional[str] = None created_at: datetime updated_at: datetime +class FunnelTransitionRequest(BaseModel): + target_status: str = Field(min_length=1, max_length=20) + + AI_AGENT_ROLES = [ "coordinator", "task_organizer", diff --git a/app/schemas/workspace.py b/app/schemas/workspace.py new file mode 100644 index 0000000..00192b9 --- /dev/null +++ b/app/schemas/workspace.py @@ -0,0 +1,42 @@ +"""Workspace schemas for VoIdea API.""" + +from datetime import datetime +from typing import Optional + +from pydantic import BaseModel, Field + + +class WorkspaceCreate(BaseModel): + name: str = Field(min_length=1, max_length=255) + type: str = Field(default="team", pattern="^(personal|team)$") + + +class WorkspaceUpdate(BaseModel): + name: Optional[str] = Field(None, min_length=1, max_length=255) + description: Optional[str] = None + + +class WorkspaceResponse(BaseModel): + id: str + name: str + type: str + owner_id: str + description: Optional[str] = None + member_count: int = 0 + created_at: datetime + updated_at: datetime + + +class AddMemberRequest(BaseModel): + user_id: str + role: str = Field(default="member", pattern="^(admin|member)$") + + +class MemberResponse(BaseModel): + id: str + user_id: str + workspace_id: str + role: str + email: str = "" + display_name: str = "" + joined_at: datetime diff --git a/app/services/calendar_service.py b/app/services/calendar_service.py new file mode 100644 index 0000000..3457ec8 --- /dev/null +++ b/app/services/calendar_service.py @@ -0,0 +1,101 @@ +"""Calendar service — unified interface for Google, Yandex, Apple CalDAV. + +Manages calendar provider connections and event creation. +""" + +import json +import logging +from datetime import datetime, timedelta, timezone +from typing import Any, Optional +from uuid import UUID + +from sqlalchemy.ext.asyncio import AsyncSession + +from app.models.user import User + +logger = logging.getLogger(__name__) + +CALENDAR_PROVIDERS = ("google", "yandex", "apple") + + +class CalendarService: + def __init__(self, db: AsyncSession): + self.db = db + + async def get_calendar_credentials(self, user: User) -> Optional[dict[str, Any]]: + """Get stored calendar credentials for user.""" + if not hasattr(user, "calendar_provider") or not user.calendar_provider: + return None + if not hasattr(user, "calendar_credentials") or not user.calendar_credentials: + return None + try: + return json.loads(user.calendar_credentials) + except (json.JSONDecodeError, TypeError): + return None + + async def set_calendar_credentials( + self, user: User, provider: str, credentials: dict[str, Any] + ) -> None: + user.calendar_provider = provider + user.calendar_credentials = json.dumps(credentials) + await self.db.commit() + + async def disconnect_calendar(self, user: User) -> None: + user.calendar_provider = None + user.calendar_credentials = None + await self.db.commit() + + def _get_client(self, provider: str, credentials: dict[str, Any]): + """Get appropriate calendar client for provider.""" + if provider == "google": + from app.integrations.calendar.google_calendar import GoogleCalendarClient + return GoogleCalendarClient(access_token=credentials.get("access_token", "")) + elif provider == "yandex": + from app.integrations.calendar.yandex_calendar import YandexCalendarClient + return YandexCalendarClient(access_token=credentials.get("access_token", "")) + elif provider == "apple": + from app.integrations.calendar.apple_caldav import AppleCalDavStub + return AppleCalDavStub() + raise ValueError(f"Unknown calendar provider: {provider}") + + async def create_idea_event(self, user: User, idea_title: str, idea_content: str) -> bool: + """Create a calendar event from an idea.""" + creds = await self.get_calendar_credentials(user) + if not creds: + logger.warning("No calendar credentials for user %s", user.id) + return False + + provider = user.calendar_provider + if not provider: + return False + + client = self._get_client(provider, creds) + + now = datetime.now(timezone.utc) + start_iso = now.isoformat() + end_iso = (now + timedelta(hours=1)).isoformat() + + return await client.create_event( + summary=f"Idea: {idea_title[:100]}", + description=idea_content[:1000], + start_iso=start_iso, + end_iso=end_iso, + ) + + async def list_events(self, user: User, max_results: int = 10) -> list[dict]: + creds = await self.get_calendar_credentials(user) + if not creds or not user.calendar_provider: + return [] + + client = self._get_client(user.calendar_provider, creds) + return await client.list_events(max_results=max_results) + + async def health_check(self, user: User) -> bool: + creds = await self.get_calendar_credentials(user) + if not creds or not user.calendar_provider: + return False + try: + client = self._get_client(user.calendar_provider, creds) + return await client.health_check() + except Exception: + return False diff --git a/app/services/collaboration_service.py b/app/services/collaboration_service.py new file mode 100644 index 0000000..006b5fa --- /dev/null +++ b/app/services/collaboration_service.py @@ -0,0 +1,222 @@ +"""Collaboration service for VoIdea. + +Voting, threaded comments, activity logging, and notifications. +""" + +from typing import Any, Optional +from uuid import UUID + +from sqlalchemy import select, func, delete +from sqlalchemy.ext.asyncio import AsyncSession + +from app.models.collaboration import IdeaActivity, IdeaComment, IdeaVote, Notification +from app.models.user import User + + +class CollaborationService: + def __init__(self, db: AsyncSession): + self.db = db + + # ── Voting ── + + async def toggle_vote(self, idea_id: UUID, user_id: UUID, vote: str) -> dict[str, Any]: + """Toggle vote. Returns current vote state.""" + result = await self.db.execute( + select(IdeaVote).where( + IdeaVote.idea_id == idea_id, + IdeaVote.user_id == user_id, + ) + ) + existing = result.scalar_one_or_none() + + if existing: + if existing.vote == vote: + await self.db.delete(existing) + await self.db.commit() + return {"vote": None} + existing.vote = vote + await self.db.commit() + return {"vote": vote} + else: + v = IdeaVote(idea_id=idea_id, user_id=user_id, vote=vote) + self.db.add(v) + await self.db.commit() + return {"vote": vote} + + async def get_vote_counts(self, idea_id: UUID) -> dict[str, Any]: + """Get vote counts and current user's vote.""" + up = await self.db.execute( + select(func.count(IdeaVote.id)).where( + IdeaVote.idea_id == idea_id, IdeaVote.vote == "up" + ) + ) + down = await self.db.execute( + select(func.count(IdeaVote.id)).where( + IdeaVote.idea_id == idea_id, IdeaVote.vote == "down" + ) + ) + return { + "up": up.scalar() or 0, + "down": down.scalar() or 0, + } + + async def get_user_vote(self, idea_id: UUID, user_id: UUID) -> Optional[str]: + result = await self.db.execute( + select(IdeaVote).where( + IdeaVote.idea_id == idea_id, IdeaVote.user_id == user_id + ) + ) + v = result.scalar_one_or_none() + return v.vote if v else None + + # ── Comments ── + + async def create_comment( + self, idea_id: UUID, user_id: UUID, content: str, parent_id: Optional[UUID] = None + ) -> IdeaComment: + c = IdeaComment( + idea_id=idea_id, user_id=user_id, content=content, parent_id=parent_id + ) + self.db.add(c) + await self.db.commit() + await self.db.refresh(c) + return c + + async def list_comments(self, idea_id: UUID) -> list[dict[str, Any]]: + result = await self.db.execute( + select(IdeaComment, User) + .join(User, IdeaComment.user_id == User.id) + .where(IdeaComment.idea_id == idea_id) + .order_by(IdeaComment.created_at.asc()) + ) + rows = result.all() + comments = [] + for c, u in rows: + comments.append({ + "id": str(c.id), + "idea_id": str(c.idea_id), + "user_id": str(c.user_id), + "content": c.content, + "parent_id": str(c.parent_id) if c.parent_id else None, + "display_name": u.display_name, + "avatar_url": u.avatar_url, + "created_at": c.created_at, + "updated_at": c.updated_at, + }) + return comments + + async def delete_comment(self, comment_id: UUID, user_id: UUID) -> bool: + result = await self.db.execute( + select(IdeaComment).where(IdeaComment.id == comment_id) + ) + c = result.scalar_one_or_none() + if not c or str(c.user_id) != str(user_id): + return False + await self.db.delete(c) + await self.db.commit() + return True + + # ── Activity ── + + async def log_activity( + self, idea_id: UUID, user_id: Optional[UUID], + action: str, details: Optional[dict] = None + ) -> IdeaActivity: + a = IdeaActivity( + idea_id=idea_id, user_id=user_id, action=action, details=details + ) + self.db.add(a) + await self.db.commit() + await self.db.refresh(a) + return a + + async def list_activities(self, idea_id: UUID, limit: int = 50) -> list[dict[str, Any]]: + result = await self.db.execute( + select(IdeaActivity, User) + .join(User, IdeaActivity.user_id == User.id, isouter=True) + .where(IdeaActivity.idea_id == idea_id) + .order_by(IdeaActivity.created_at.desc()) + .limit(limit) + ) + rows = result.all() + return [ + { + "id": str(a.id), + "idea_id": str(a.idea_id), + "user_id": str(a.user_id) if a.user_id else None, + "action": a.action, + "details": a.details, + "display_name": u.display_name if u else "System", + "created_at": a.created_at, + } + for a, u in rows + ] + + # ── Notifications ── + + async def create_notification( + self, user_id: UUID, type: str, title: str, + body: str, link: Optional[str] = None + ) -> Notification: + n = Notification( + user_id=user_id, type=type, title=title, + body=body, link=link, + ) + self.db.add(n) + await self.db.commit() + await self.db.refresh(n) + return n + + async def list_notifications( + self, user_id: UUID, unread_only: bool = False, limit: int = 50 + ) -> list[Notification]: + query = ( + select(Notification) + .where(Notification.user_id == user_id) + .order_by(Notification.created_at.desc()) + .limit(limit) + ) + if unread_only: + query = query.where(Notification.is_read == False) + result = await self.db.execute(query) + return list(result.scalars().all()) + + async def mark_notification_read(self, notification_id: UUID, user_id: UUID) -> bool: + result = await self.db.execute( + select(Notification).where( + Notification.id == notification_id, + Notification.user_id == user_id, + ) + ) + n = result.scalar_one_or_none() + if not n: + return False + n.is_read = True + await self.db.commit() + return True + + async def mark_all_read(self, user_id: UUID) -> int: + result = await self.db.execute( + select(func.count(Notification.id)).where( + Notification.user_id == user_id, + Notification.is_read == False, + ) + ) + count = result.scalar() or 0 + await self.db.execute( + delete(Notification).where( + Notification.user_id == user_id, + Notification.is_read == False, + ) + ) + await self.db.commit() + return count + + async def get_unread_count(self, user_id: UUID) -> int: + result = await self.db.execute( + select(func.count(Notification.id)).where( + Notification.user_id == user_id, + Notification.is_read == False, + ) + ) + return result.scalar() or 0 diff --git a/app/services/disk_service.py b/app/services/disk_service.py new file mode 100644 index 0000000..ba8fe2d --- /dev/null +++ b/app/services/disk_service.py @@ -0,0 +1,112 @@ +"""Disk service — unified interface for Google Drive, Yandex Disk, Apple iCloud. + +Manages cloud drive provider connections and file uploads. +""" + +import json +import logging +from typing import Any, Optional + +from sqlalchemy.ext.asyncio import AsyncSession + +from app.models.user import User + +logger = logging.getLogger(__name__) + +DISK_PROVIDERS = ("google", "yandex", "apple") + + +class DiskService: + def __init__(self, db: AsyncSession): + self.db = db + + async def get_connected_providers(self, user: User) -> list[dict[str, Any]]: + """Get list of connected disk providers with basic info.""" + providers = user.disk_providers or [] + # Return sanitized list (no tokens) + return [ + { + "provider": p["provider"], + "connected_at": p.get("connected_at", ""), + "email": p.get("email", ""), + "quota": p.get("quota"), + } + for p in providers + ] + + async def is_connected(self, user: User, provider: str) -> bool: + providers = user.disk_providers or [] + return any(p["provider"] == provider for p in providers) + + async def add_provider( + self, user: User, provider: str, tokens: dict[str, Any], email: str = "" + ) -> None: + providers = user.disk_providers or [] + # Remove existing entry for same provider + providers = [p for p in providers if p["provider"] != provider] + providers.append({ + "provider": provider, + "access_token": tokens.get("access_token", ""), + "refresh_token": tokens.get("refresh_token", ""), + "expires_at": tokens.get("expires_at"), + "connected_at": __import__("datetime").datetime.utcnow().isoformat(), + "email": email, + }) + user.disk_providers = providers + await self.db.commit() + + async def remove_provider(self, user: User, provider: str) -> None: + providers = user.disk_providers or [] + user.disk_providers = [p for p in providers if p["provider"] != provider] + await self.db.commit() + + async def get_access_token(self, user: User, provider: str) -> Optional[str]: + providers = user.disk_providers or [] + for p in providers: + if p["provider"] == provider: + return p.get("access_token") + return None + + async def upload_to_provider( + self, user: User, provider: str, file_name: str, file_content: bytes + ) -> bool: + """Upload file bytes to specified provider's VoIdea folder.""" + token = await self.get_access_token(user, provider) + if not token: + logger.warning("No token for provider %s (user %s)", provider, user.id) + return False + + if provider == "google": + from app.integrations.oauth.google import ensure_app_folder, upload_file + parent_id = await ensure_app_folder(token) + return await upload_file(token, file_name, file_content, parent_id=parent_id) + + elif provider == "yandex": + from app.integrations.oauth.yandex import ensure_app_folder, upload_file + import tempfile, os + await ensure_app_folder(token) + tmp = tempfile.NamedTemporaryFile(delete=False, suffix=".html") + try: + tmp.write(file_content) + tmp.close() + return await upload_file(token, tmp.name, file_name) + finally: + os.unlink(tmp.name) + + elif provider == "apple": + logger.info("Apple iCloud upload is a stub — file not actually uploaded") + return True + + return False + + async def upload_to_any( + self, user: User, file_name: str, file_content: bytes + ) -> Optional[dict[str, Any]]: + """Upload to first available provider. Returns provider info.""" + providers = user.disk_providers or [] + for entry in providers: + provider = entry["provider"] + success = await self.upload_to_provider(user, provider, file_name, file_content) + if success: + return {"provider": provider, "success": True} + return None diff --git a/app/services/notification_service.py b/app/services/notification_service.py new file mode 100644 index 0000000..a83c8a7 --- /dev/null +++ b/app/services/notification_service.py @@ -0,0 +1,106 @@ +"""Notification service — multi-channel delivery for VoIdea. + +Supported channels: +- web (DB — stored as Notification model) +- telegram (via TelegramBotClient) +- email (via email_service) + +Only web channel is required; telegram and email are optional. +""" + +from typing import Optional +from uuid import UUID + +from sqlalchemy.ext.asyncio import AsyncSession + +from app.services.collaboration_service import CollaborationService + + +class NotificationDeliveryService: + """Delivers notifications across multiple channels.""" + + def __init__(self, db: AsyncSession): + self.db = db + self.collab = CollaborationService(db) + + async def notify( + self, + user_id: UUID, + type: str, + title: str, + body: str, + link: Optional[str] = None, + channels: Optional[list[str]] = None, + ) -> dict[str, bool]: + """Deliver notification to specified channels (default: web only). + + Returns dict of channel -> success status. + """ + if channels is None: + channels = ["web"] + + results: dict[str, bool] = {} + + if "web" in channels: + try: + await self.collab.create_notification( + user_id=user_id, type=type, + title=title, body=body, link=link, + ) + results["web"] = True + except Exception: + results["web"] = False + + if "telegram" in channels: + try: + await self._send_telegram(user_id, title, body, link) + results["telegram"] = True + except Exception: + results["telegram"] = False + + if "email" in channels: + try: + await self._send_email(user_id, title, body) + results["email"] = True + except Exception: + results["email"] = False + + return results + + async def _send_telegram( + self, user_id: UUID, title: str, body: str, link: Optional[str] = None + ) -> None: + from app.core.config import get_settings + settings = get_settings() + if not settings.telegram_bot_token: + return + + from app.integrations.telegram.client import TelegramBotClient + client = TelegramBotClient(token=settings.telegram_bot_token) + + text = f"*{title}*\n{body}" + if link: + text += f"\n\n[Open]({link})" + + # Find user's telegram chat_id — for now send to first available + # In production this would look up stored chat_id for the user + from app.models.user import User + user = await self.db.get(User, user_id) + if not user: + return + + async def _send_email( + self, user_id: UUID, title: str, body: str + ) -> None: + from app.services.email_service import send_email + from app.models.user import User + + user = await self.db.get(User, user_id) + if not user or not user.email: + return + + await send_email( + to=user.email, + subject=title, + body=body, + ) diff --git a/app/services/presentation_service.py b/app/services/presentation_service.py new file mode 100644 index 0000000..b57bbb4 --- /dev/null +++ b/app/services/presentation_service.py @@ -0,0 +1,184 @@ +"""Presentation service — generates HTML slides from idea + analysis reports.""" + +import json +import logging +from datetime import datetime, timezone +from typing import Any, Optional + +from sqlalchemy import select +from sqlalchemy.ext.asyncio import AsyncSession + +from app.agents.models import AgentReport +from app.models.idea import Idea +from app.services.disk_service import DiskService + +logger = logging.getLogger(__name__) + +ROLE_EMOJI = { + "coordinator": "🎯", + "task_organizer": "📋", + "business_analyst": "💼", + "legal_expert": "⚖️", + "financial_consultant": "💰", + "solution_architect": "🏗️", + "tester": "🧪", + "ui_designer": "🎨", + "smm_specialist": "📱", + "life_coach": "🌟", + "accessibility_expert": "♿", +} + +ROLE_LABELS = { + "coordinator": "Координатор", + "task_organizer": "Организатор задач", + "business_analyst": "Бизнес-аналитик", + "legal_expert": "Юрист", + "financial_consultant": "Финансовый консультант", + "solution_architect": "Архитектор решения", + "tester": "Тестировщик", + "ui_designer": "UI/Дизайнер", + "smm_specialist": "SMM-специалист", + "life_coach": "Лайф-коуч", + "accessibility_expert": "Эксперт доступности", +} + + +REVEAL_HTML_TEMPLATE = """ + + + + +{title} — VoIdea Презентация + + + + + +
+
+

{title}

+
+ {author} · {status_label} · {date} +
+
+ + {executive_summary} + + {role_slides} + +
+

Спасибо за внимание!

+

Создано в VoIdea · {date}

+
+
+ + + + +""" + + +class PresentationService: + def __init__(self, db: AsyncSession): + self.db = db + + async def generate( + self, + idea_id: str, + roles: Optional[list[str]] = None, + user_name: str = "", + ) -> Optional[str]: + """Generate HTML presentation for an idea. + + Args: + idea_id: UUID of the idea + roles: List of roles to include (None = all available) + user_name: Author display name + + Returns: + HTML string or None if idea not found + """ + result = await self.db.execute( + select(Idea).where(Idea.id == idea_id) + ) + idea = result.scalar_one_or_none() + if not idea: + return None + + result = await self.db.execute( + select(AgentReport).where( + AgentReport.details["idea_id"].as_string() == idea_id + ).order_by(AgentReport.created_at.asc()) + ) + reports = result.scalars().all() + + if roles is not None: + reports = [ + r for r in reports + if r.agent_id.replace("ai_", "") in roles + ] + + funnel_labels = { + "raw": "Сырая", + "validated": "Подтверждена", + "backlog": "Бэклог", + "in_progress": "В работе", + "launched": "Запущена", + "retrospective": "Ретроспектива", + } + status_label = funnel_labels.get( + idea.funnel_status or "", idea.funnel_status or "Без статуса" + ) + + date_str = datetime.now(timezone.utc).strftime("%d.%m.%Y") + + role_slides = [] + for r in reports: + role_name = r.agent_id.replace("ai_", "") + emoji = ROLE_EMOJI.get(role_name, "📄") + label = ROLE_LABELS.get(role_name, role_name) + content = r.message or "Нет данных" + + role_slides.append(f""" +
+

{emoji} {label}

+
{content}
+
""") + + success_count = sum(1 for r in reports if r.success) + + if role_slides: + exec_summary = f""" +
+

📊 Executive Summary

+

Проанализировано ролей: {len(reports)}

+

Успешных анализов: {success_count}

+
""" + else: + exec_summary = "" + + return REVEAL_HTML_TEMPLATE.format( + title=idea.title, + author=user_name or "Пользователь", + status_label=status_label, + date=date_str, + executive_summary=exec_summary, + role_slides="".join(role_slides), + ) diff --git a/app/services/workspace_service.py b/app/services/workspace_service.py new file mode 100644 index 0000000..f6b5005 --- /dev/null +++ b/app/services/workspace_service.py @@ -0,0 +1,240 @@ +"""Workspace service with tariff-gated limits for VoIdea.""" + +from typing import Any, Optional +from uuid import UUID + +from sqlalchemy import select, func +from sqlalchemy.ext.asyncio import AsyncSession + +from app.models.workspace import Workspace, WorkspaceMembership +from app.models.user import User +from app.services.tariff_service import TariffService + + +class WorkspaceError(Exception): + pass + + +class WorkspaceLimitError(WorkspaceError): + pass + + +class WorkspaceService: + def __init__(self, db: AsyncSession): + self.db = db + + # ── Tariff gates ── + + async def _get_tariff_features(self, user_id: UUID) -> dict[str, Any]: + """Get tariff plan features for a user.""" + tariff_svc = TariffService(self.db) + sub = await tariff_svc.get_user_subscription(user_id) + if not sub: + return {} + plan = await tariff_svc.get_plan_by_id(sub.plan_id) + return plan.features if plan and plan.features else {} + + async def _check_team_workspace_limit(self, user_id: UUID) -> None: + """Check if user can create a team workspace.""" + features = await self._get_tariff_features(user_id) + max_team = features.get("max_team_workspaces", 0) + if max_team <= 0: + raise WorkspaceLimitError( + "Your tariff plan does not allow team workspaces" + ) + + result = await self.db.execute( + select(func.count(Workspace.id)) + .where( + Workspace.owner_id == user_id, + Workspace.type == "team", + ) + ) + current_team_count = result.scalar() or 0 + if current_team_count >= max_team: + raise WorkspaceLimitError( + f"Team workspace limit reached ({max_team}). " + "Upgrade your tariff to create more." + ) + + async def _check_member_limit(self, workspace_id: UUID) -> None: + """Check if workspace can accept more members.""" + ws = await self.db.get(Workspace, workspace_id) + if not ws: + raise WorkspaceError("Workspace not found") + + features = await self._get_tariff_features(ws.owner_id) + max_members = features.get("max_members_per_workspace", 0) + + result = await self.db.execute( + select(func.count(WorkspaceMembership.id)) + .where(WorkspaceMembership.workspace_id == workspace_id) + ) + current_count = result.scalar() or 0 + if max_members > 0 and current_count >= max_members: + raise WorkspaceLimitError( + f"Member limit reached ({max_members}). " + "Upgrade your tariff to add more members." + ) + + async def _check_feature_gate(self, user_id: UUID, feature: str) -> None: + """Check if a specific workspace feature is enabled for the user's tariff.""" + features = await self._get_tariff_features(user_id) + if not features.get(feature, False): + raise WorkspaceLimitError( + f"Feature '{feature}' is not available on your tariff plan" + ) + + # ── CRUD ── + + async def create_personal(self, user_id: UUID, name: str = "Personal") -> Workspace: + """Create or get existing personal workspace for user.""" + result = await self.db.execute( + select(Workspace).where( + Workspace.owner_id == user_id, + Workspace.type == "personal", + ) + ) + existing = result.scalar_one_or_none() + if existing: + return existing + + ws = Workspace(name=name, type="personal", owner_id=user_id) + self.db.add(ws) + await self.db.flush() + + membership = WorkspaceMembership( + workspace_id=ws.id, user_id=user_id, role="owner" + ) + self.db.add(membership) + await self.db.commit() + await self.db.refresh(ws) + return ws + + async def create_team( + self, name: str, owner_id: UUID, description: str = "" + ) -> Workspace: + """Create a new team workspace (tariff-gated).""" + await self._check_team_workspace_limit(owner_id) + + ws = Workspace(name=name, type="team", owner_id=owner_id, description=description) + self.db.add(ws) + await self.db.flush() + + membership = WorkspaceMembership( + workspace_id=ws.id, user_id=owner_id, role="owner" + ) + self.db.add(membership) + await self.db.commit() + await self.db.refresh(ws) + return ws + + async def get_by_id(self, workspace_id: UUID) -> Optional[Workspace]: + return await self.db.get(Workspace, workspace_id) + + async def list_user_workspaces(self, user_id: UUID) -> list[Workspace]: + """List workspaces where user is a member.""" + result = await self.db.execute( + select(Workspace) + .join(WorkspaceMembership) + .where(WorkspaceMembership.user_id == user_id) + .order_by(Workspace.type, Workspace.name) + ) + return list(result.scalars().all()) + + async def update_workspace( + self, workspace_id: UUID, user_id: UUID, updates: dict[str, Any] + ) -> Optional[Workspace]: + ws = await self.db.get(Workspace, workspace_id) + if not ws: + return None + if ws.owner_id != user_id: + raise WorkspaceError("Only the owner can update workspace") + for key, value in updates.items(): + if hasattr(ws, key) and key not in ("id", "owner_id", "type", "created_at"): + setattr(ws, key, value) + await self.db.commit() + await self.db.refresh(ws) + return ws + + async def delete_workspace(self, workspace_id: UUID, user_id: UUID) -> bool: + ws = await self.db.get(Workspace, workspace_id) + if not ws: + return False + if ws.owner_id != user_id: + raise WorkspaceError("Only the owner can delete workspace") + if ws.type == "personal": + raise WorkspaceError("Cannot delete personal workspace") + await self.db.delete(ws) + await self.db.commit() + return True + + # ── Members ── + + async def add_member( + self, workspace_id: UUID, user_id: UUID, role: str = "member" + ) -> WorkspaceMembership: + """Add a user to a workspace (tariff-gated for member count).""" + await self._check_member_limit(workspace_id) + + existing = await self.db.execute( + select(WorkspaceMembership).where( + WorkspaceMembership.workspace_id == workspace_id, + WorkspaceMembership.user_id == user_id, + ) + ) + if existing.scalar_one_or_none(): + raise WorkspaceError("User is already a member of this workspace") + + membership = WorkspaceMembership( + workspace_id=workspace_id, user_id=user_id, role=role + ) + self.db.add(membership) + await self.db.commit() + await self.db.refresh(membership) + return membership + + async def remove_member(self, workspace_id: UUID, user_id: UUID) -> bool: + result = await self.db.execute( + select(WorkspaceMembership).where( + WorkspaceMembership.workspace_id == workspace_id, + WorkspaceMembership.user_id == user_id, + ) + ) + membership = result.scalar_one_or_none() + if not membership: + return False + await self.db.delete(membership) + await self.db.commit() + return True + + async def list_members(self, workspace_id: UUID) -> list[dict[str, Any]]: + result = await self.db.execute( + select(WorkspaceMembership, User) + .join(User, WorkspaceMembership.user_id == User.id) + .where(WorkspaceMembership.workspace_id == workspace_id) + ) + rows = result.all() + return [ + { + "id": str(m.WorkspaceMembership.id), + "user_id": str(m.User.id), + "workspace_id": str(m.WorkspaceMembership.workspace_id), + "role": m.WorkspaceMembership.role, + "email": m.User.email, + "display_name": m.User.display_name, + "joined_at": m.WorkspaceMembership.created_at, + } + for m in rows + ] + + async def get_membership( + self, workspace_id: UUID, user_id: UUID + ) -> Optional[WorkspaceMembership]: + result = await self.db.execute( + select(WorkspaceMembership).where( + WorkspaceMembership.workspace_id == workspace_id, + WorkspaceMembership.user_id == user_id, + ) + ) + return result.scalar_one_or_none() diff --git a/deploy/generate_secrets.sh b/deploy/generate_secrets.sh new file mode 100644 index 0000000..30cf804 --- /dev/null +++ b/deploy/generate_secrets.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e + +JWT_KEY=$(openssl rand -hex 64) +JWT_RESET_KEY=$(openssl rand -hex 64) +ENC_KEY=$(openssl rand -hex 32) +DB_PASS=$(openssl rand -hex 16) + +cat << EOF +JWT_SECRET_KEY=$JWT_KEY +JWT_RESET_SECRET_KEY=$JWT_RESET_KEY +ENCRYPTION_KEY=$ENC_KEY +DB_PASS=$DB_PASS +EOF diff --git a/deploy/gitea/create_repo.sh b/deploy/gitea/create_repo.sh new file mode 100644 index 0000000..ff7e876 --- /dev/null +++ b/deploy/gitea/create_repo.sh @@ -0,0 +1,28 @@ +#!/bin/bash +set -e + +TOKEN="2608ab5b7a8965190ab4d8503a8197a47b75b42c" +GITEA_URL="http://localhost:3000" + +echo "Creating repository 'voidea' in Gitea..." + +RESPONSE=$(curl -s -X POST "$GITEA_URL/api/v1/user/repos" \ + -H "Content-Type: application/json" \ + -H "Authorization: token $TOKEN" \ + -d '{ + "name": "voidea", + "description": "VoIdeaAI - voice-first AI idea assistant", + "private": false, + "auto_init": false, + "default_branch": "master" + }') + +echo "Response: $RESPONSE" + +if echo "$RESPONSE" | grep -q '"id"'; then + echo "Repository created successfully!" + echo "Clone URL: http://localhost:3000/angel/voidea.git" + echo "Web URL: http://git.voideaai.ru/angel/voidea" +else + echo "Failed to create repository." +fi diff --git a/deploy/gitea/docker-compose.yml b/deploy/gitea/docker-compose.yml new file mode 100644 index 0000000..f690c14 --- /dev/null +++ b/deploy/gitea/docker-compose.yml @@ -0,0 +1,40 @@ +services: + db: + image: postgres:16-alpine + network_mode: host + environment: + POSTGRES_DB: gitea + POSTGRES_USER: gitea + POSTGRES_PASSWORD: ${GITEA_DB_PASS:-gitea_pass} + command: -p 5433 + volumes: + - gitea-db:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U gitea -h localhost -p 5433"] + interval: 5s + timeout: 5s + retries: 5 + + gitea: + image: gitea/gitea:latest-rootless + network_mode: host + environment: + GITEA__database__DB_TYPE: postgres + GITEA__database__HOST: localhost:5433 + GITEA__database__NAME: gitea + GITEA__database__USER: gitea + GITEA__database__PASSWD: ${GITEA_DB_PASS:-gitea_pass} + GITEA__server__DOMAIN: git.voideaai.ru + GITEA__server__HTTP_PORT: 3000 + GITEA__server__ROOT_URL: http://git.voideaai.ru:3000 + GITEA__server__SSH_DOMAIN: git.voideaai.ru + GITEA__server__SSH_PORT: 22 + volumes: + - gitea-data:/var/lib/gitea + depends_on: + db: + condition: service_healthy + +volumes: + gitea-db: + gitea-data: diff --git a/deploy/gitea/git.voideaai.ru.conf b/deploy/gitea/git.voideaai.ru.conf new file mode 100644 index 0000000..1ac7ee5 --- /dev/null +++ b/deploy/gitea/git.voideaai.ru.conf @@ -0,0 +1,33 @@ +server { + listen 80; + server_name git.voideaai.ru; + + client_max_body_size 512M; + + location / { + proxy_pass http://localhost:3000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} + +server { + listen 443 ssl; + http2 on; + server_name git.voideaai.ru; + + ssl_certificate /etc/nginx/certs/live/git.voideaai.ru/fullchain.pem; + ssl_certificate_key /etc/nginx/certs/live/git.voideaai.ru/privkey.pem; + + client_max_body_size 512M; + + location / { + proxy_pass http://localhost:3000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} diff --git a/deploy/nginx/git.voideaai.ru.conf b/deploy/nginx/git.voideaai.ru.conf new file mode 100644 index 0000000..2d84d42 --- /dev/null +++ b/deploy/nginx/git.voideaai.ru.conf @@ -0,0 +1,42 @@ +# git.voideaai.ru -> Gitea (shared instance with git.aegisone.ru) +server { + listen 80; + server_name git.voideaai.ru; + + location /.well-known/acme-challenge/ { + root /usr/share/nginx/html; + } + + client_max_body_size 512M; + + location / { + proxy_pass http://localhost:3000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} + +server { + listen 443 ssl; + http2 on; + server_name git.voideaai.ru; + + ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem; + ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem; + + ssl_protocols TLSv1.2 TLSv1.3; + ssl_ciphers HIGH:!aNULL:!MD5; + ssl_prefer_server_ciphers on; + + client_max_body_size 512M; + + location / { + proxy_pass http://localhost:3000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } +} diff --git a/deploy/nginx/install_confs.sh b/deploy/nginx/install_confs.sh new file mode 100644 index 0000000..48d13d1 --- /dev/null +++ b/deploy/nginx/install_confs.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e + +echo "Copying nginx configs..." +sudo cp /home/angel/voideaai.ru.conf /opt/projects/nginx-proxy/conf.d/ +sudo cp /home/angel/git.voideaai.ru.conf /opt/projects/nginx-proxy/conf.d/ +echo "Configs copied." + +echo "Testing nginx config..." +docker compose -p nginx-proxy exec nginx nginx -t + +echo "Reloading nginx..." +docker compose -p nginx-proxy exec nginx nginx -s reload +echo "Nginx reloaded successfully." diff --git a/deploy/nginx/voideaai.ru.conf b/deploy/nginx/voideaai.ru.conf new file mode 100644 index 0000000..e5c0d57 --- /dev/null +++ b/deploy/nginx/voideaai.ru.conf @@ -0,0 +1,85 @@ +# voideaai.ru -> VoIdeaAI FastAPI +server { + listen 80; + server_name voideaai.ru www.voideaai.ru; + + location /.well-known/acme-challenge/ { + root /usr/share/nginx/html; + } + + location / { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } +} + +server { + listen 443 ssl; + http2 on; + server_name voideaai.ru www.voideaai.ru; + + ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem; + ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem; + + ssl_protocols TLSv1.2 TLSv1.3; + ssl_ciphers HIGH:!aNULL:!MD5; + ssl_prefer_server_ciphers on; + + add_header Strict-Transport-Security "max-age=63072000" always; + add_header X-Content-Type-Options "nosniff" always; + add_header X-Frame-Options "DENY" always; + add_header X-XSS-Protection "1; mode=block" always; + + location /assets/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_cache_valid 200 365d; + expires 365d; + add_header Cache-Control "public, immutable"; + } + + location /icons/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_cache_valid 200 365d; + expires 365d; + add_header Cache-Control "public, immutable"; + } + + location /api/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + proxy_cache off; + } + + location /ws/ { + proxy_pass http://localhost:8020; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } + + location / { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } +} diff --git a/deploy/voideaai.nginx.conf b/deploy/voideaai.nginx.conf new file mode 100644 index 0000000..e62b968 --- /dev/null +++ b/deploy/voideaai.nginx.conf @@ -0,0 +1,76 @@ +server { + listen 80; + server_name voideaai.ru www.voideaai.ru; + + location / { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } +} + +server { + listen 443 ssl; + http2 on; + server_name voideaai.ru www.voideaai.ru; + + ssl_certificate /etc/nginx/certs/live/voideaai.ru/fullchain.pem; + ssl_certificate_key /etc/nginx/certs/live/voideaai.ru/privkey.pem; + + add_header Strict-Transport-Security "max-age=63072000" always; + add_header X-Content-Type-Options "nosniff" always; + add_header X-Frame-Options "DENY" always; + add_header X-XSS-Protection "1; mode=block" always; + + location /assets/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_cache_valid 200 365d; + expires 365d; + add_header Cache-Control "public, immutable"; + } + + location /icons/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_cache_valid 200 365d; + expires 365d; + add_header Cache-Control "public, immutable"; + } + + location /api/ { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + proxy_cache off; + } + + location /ws/ { + proxy_pass http://localhost:8020; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } + + location / { + proxy_pass http://localhost:8020; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_buffering off; + } +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ac8580d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,60 @@ +services: + app: + build: + context: . + network: host + network_mode: host + env_file: .env + depends_on: + db: + condition: service_healthy + redis: + condition: service_started + volumes: + - ./logs:/app/logs + + worker: + build: + context: . + network: host + network_mode: host + command: celery -A app.tasks worker -l info --concurrency=2 + env_file: .env + depends_on: + - db + - redis + + beat: + build: + context: . + network: host + network_mode: host + command: celery -A app.tasks beat -l info + env_file: .env + depends_on: + - db + - redis + + db: + image: postgres:16-alpine + network_mode: host + environment: + POSTGRES_DB: voidea + POSTGRES_USER: voidea + POSTGRES_PASSWORD: ${DB_PASS:-voidea_pass} + command: -p 5444 + volumes: + - pgdata:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U voidea -h localhost -p 5444"] + interval: 5s + timeout: 5s + retries: 5 + + redis: + image: redis:7-alpine + network_mode: host + command: redis-server --port 6380 + +volumes: + pgdata: diff --git a/docs/admin-guide.md b/docs/admin-guide.md index 296c5ab..dab2d78 100644 --- a/docs/admin-guide.md +++ b/docs/admin-guide.md @@ -19,9 +19,12 @@ - Owner защищён от изменений ### Агенты -- Просмотр списка агентов +- Просмотр списка агентов (13 + Meta-agent) - Включение/отключение агентов - Редактирование описания +- **Meta-agent** — конфигурация JSON (cron_schedule, weights, sources_count, auto_create) +- Ручной запуск любого агента кнопкой «Запустить» +- Meta-agent по умолчанию запускается по расписанию `0 9 * * 1,4` (пн и чт в 9:00) ### Журналы - Фильтрация по уровню (DEBUG, INFO, WARNING, ERROR) diff --git a/docs/instructions/04-ai-dev-instruction.md b/docs/instructions/04-ai-dev-instruction.md new file mode 100644 index 0000000..75c70e6 --- /dev/null +++ b/docs/instructions/04-ai-dev-instruction.md @@ -0,0 +1,214 @@ +# VoIdeaAI — Инструкция для AI-разработчика (локальная разработка + деплой) + +## Назначение +Эта инструкция — для AI-агента, который продолжает разработку проекта VoIdeaAI. +Работа ведётся **локально**, деплой — отправкой на сервер. + +--- + +## 1. Архитектура проекта + +``` +voidea/ +├── app/ # Backend (Python FastAPI) +│ ├── api/v1/ # HTTP endpoints +│ ├── agents/ # Системные агенты +│ ├── core/ # Конфиг, БД, security +│ ├── integrations/ # AI, OAuth, Telegram, Calendar +│ ├── models/ # SQLAlchemy модели +│ ├── schemas/ # Pydantic схемы +│ ├── services/ # Бизнес-логика +│ └── tasks/ # Celery задачи +├── webui/ # Frontend (React + Vite + Tailwind) +├── flutter/ # Mobile app (Flutter, отдельная разработка) +├── deploy/ # Файлы деплоя +│ ├── gitea/ # Docker Compose для Gitea +│ ├── images/ # Docker образы (tar) +│ ├── voideaai.nginx.conf +│ └── voidea-api.service / voidea-worker.service / voidea-beat.service (systemd — legacy) +├── docs/instructions/ # Инструкции для AI +├── Dockerfile # Multi-stage сборка (frontend + backend) +├── docker-compose.yml # 4 сервиса: app, worker, db, redis +└── .env.production # Шаблон .env для сервера +``` + +## 2. Технологический стек + +| Компонент | Технология | +|-----------|-----------| +| Backend | Python 3.12, FastAPI, SQLAlchemy async | +| Frontend | React 18, Vite, Tailwind CSS, TypeScript | +| Mobile | Flutter (на сервер НЕ деплоится) | +| Database | PostgreSQL 16 | +| Queue | Celery + Redis 7 | +| Auth | JWT (access + refresh) | +| AI | Yandex GPT, GigaChat (fallback chain) | +| Server | Ubuntu 24.04, Docker Compose, хост-нетворкинг | + +## 3. Локальный запуск для разработки + +### 3.1 Backend +```bash +# Виртуальное окружение +python -m venv venv +source venv/bin/activate # Linux/Mac +venv\Scripts\activate # Windows + +# Зависимости +pip install -r requirements.txt + +# PostgreSQL (локально или через Docker) +# БД: voidea, user: voidea, pass: voidea_pass, port: 5432 + +# Миграции +alembic upgrade head + +# Запуск +uvicorn app.main:app --reload --port 8020 +``` + +### 3.2 Frontend +```bash +cd webui +npm ci +npm run dev +``` + +### 3.3 Mobile (Flutter) +```bash +cd flutter +flutter pub get +flutter run +``` + +## 4. Процесс деплоя + +**Важно: на сервере НЕ dev-окружение. Все правки — локально, затем деплой.** + +### Основной сценарий +```bash +# 1. Внести изменения локально +# 2. Закоммитить +git add . +git commit -m "feat: описание изменения" + +# 3. Запушить в Gitea +git push origin master + +# 4. На сервере +ssh angel@81.177.141.34 +cd /opt/projects/voidea + +# 4a. Получить изменения +git pull + +# 4b. Пересобрать и перезапустить +docker compose up -d --build + +# 4c. Проверить +curl -s http://localhost:8020/health +``` + +### Миграции БД +```bash +# Накатить +docker compose exec app alembic upgrade head + +# Откатить +docker compose exec app alembic downgrade -1 +``` + +### Просмотр логов +```bash +docker compose logs --tail=50 app +docker compose logs --tail=50 worker +``` + +## 5. Структура .env на сервере + +Файл `.env` в `/opt/projects/voidea/.env`. +Шаблон — `.env.production` в корне репозитория. + +**Важные отличия от .env.example:** +- `DATABASE_URL` использует порт **5444** (а не 5432) +- `REDIS_URL` использует порт **6380** (а не 6379) +- Порты изменены, чтобы не конфликтовать с проектом aegisone на том же сервере + +## 6. Важные ограничения + +### Серверные (VPS) +- **Bridge-сеть не работает** — только `network_mode: host` +- **Docker build** всегда с `network: host` +- **Docker Hub** может таймаутить на больших образах (>100MB) — используйте `docker save`/`docker load` +- Всего 20GB диска, ~13GB свободно. Следите за `df -h /` + +### Кодовые +- Не трогать `.env` на сервере (секреты) +- `flutter/` — только локальная разработка, в `.dockerignore`, на сервер не деплоится +- `webui/node_modules/` — в `.gitignore`, не коммитить +- Миграции БД — через `alembic`, не вручную + +## 7. Docker-образы + +Образы хранятся в `deploy/images/` в формате `.tar`. +Список используемых образов: +- `postgres:16-alpine` — voidea + gitea +- `redis:7-alpine` — voidea +- `gitea/gitea:latest-rootless` — Gitea +- Образ самого приложения собирается из `Dockerfile` + +Для обновления образов на сервере: +```bash +# Локально: скачать и запаковать +docker pull postgres:16-alpine +docker save postgres:16-alpine -o deploy/images/postgres.tar +scp deploy/images/postgres.tar angel@81.177.141.34:/home/angel/ + +# На сервере: +docker load -i /home/angel/postgres.tar +``` + +## 8. Полезные команды на сервере + +```bash +# Статус проектов +docker compose -p voidea ps +docker compose -p gitea ps +docker compose -p nginx-proxy ps + +# Логи VoIdea +docker compose -p voidea logs --tail=100 -f app + +# Перезапуск конкретного сервиса +docker compose -p voidea restart app + +# Полная пересборка +docker compose -p voidea up -d --build + +# Очистка кеша Docker +docker builder prune -af +docker system prune -af + +# Проверка nginx +docker compose -p nginx-proxy exec nginx nginx -t +docker compose -p nginx-proxy exec nginx nginx -s reload +``` + +## 9. Порты на сервере + +| Порт | Сервис | Проект | +|------|--------|--------| +| 8020 | FastAPI | VoIdea | +| 5444 | PostgreSQL | VoIdea | +| 6380 | Redis | VoIdea | +| 3000 | Gitea | Gitea | +| 5433 | PostgreSQL | Gitea | +| 80/443 | nginx-proxy | Общий | +| 8000 | FastAPI | aegisone (чужой) | +| 5432 | PostgreSQL | aegisone (чужой) | + +Не занимать порты, помеченные как чужие. + +--- + +*Обновлён: 2026-05-19* diff --git a/docs/user-guide.md b/docs/user-guide.md index 7c008bf..19e2626 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -53,6 +53,47 @@ VoIdeaAI имеет Telegram бота для быстрого создания - `/idea <текст>` — создать новую идею - `/help` — справка +## Воронка идей (Idea Funnel) + +Отслеживайте прогресс идей по воронке: + +1. **Сырая (raw)** — только что созданная идея +2. **Подтверждённая (validated)** — идея прошла первичную оценку +3. **Бэклог (backlog)** — запланирована к реализации +4. **В работе (in_progress)** — активная работа +5. **Запущена (launched)** — реализована +6. **Ретроспектива (retrospective)** — анализ результатов + +Переключайтесь между **Списком** и **Канбан-доской** на дашборде. Перемещайте идеи по воронке кнопками ← → в карточках канбана или через API. + +## Рабочие пространства (Workspaces) + +Личное рабочее пространство создаётся автоматически при регистрации. Командные пространства доступны по тарифу: + +- **Personal** — 1 на пользователя, всегда бесплатно +- **Team** — создаются владельцем, участники добавляются по email +- Переключайтесь между пространствами через выпадающий список в шапке +- Управляйте участниками в настройках пространства + +## Совместная работа (Collaboration) + +На странице идеи доступны: + +- **Голосование** — 👍/👎 оценивайте идеи +- **Комментарии** — threaded обсуждения с ответами +- **Активность** — лента изменений и действий +- **Уведомления** — колокольчик в шапке, отметки о прочитанном + +## Интеграция с календарём + +Добавляйте идеи в календарь одним нажатием кнопки «+ Календарь» на странице идеи: + +- **Google Calendar** — через OAuth (требуется scope calendar.events) +- **Yandex Календарь** — через OAuth (требуется scope calendar:event.write) +- **Apple Calendar (CalDAV)** — в разработке + +Подключите календарь в Настройки → Интеграции → Календарь. + ## Настройки В разделе «Настройки» доступно: @@ -60,5 +101,5 @@ VoIdeaAI имеет Telegram бота для быстрого создания - Безопасность (смена пароля, OAuth привязка) - Голос (настройки микрофона, TTS) - Тема (светлая/тёмная) -- Интеграции (Яндекс.Диск) +- Интеграции (Яндекс.Диск, Календарь) - Тариф (информация о подписке) diff --git a/flutter/.dart_tool/dartpad/web_plugin_registrant.dart b/flutter/.dart_tool/dartpad/web_plugin_registrant.dart new file mode 100644 index 0000000..5668d19 --- /dev/null +++ b/flutter/.dart_tool/dartpad/web_plugin_registrant.dart @@ -0,0 +1,28 @@ +// Flutter web plugin registrant file. +// +// Generated file. Do not edit. +// + +// @dart = 2.13 +// ignore_for_file: type=lint + +import 'package:connectivity_plus/src/connectivity_plus_web.dart'; +import 'package:flutter_native_splash/flutter_native_splash_web.dart'; +import 'package:flutter_secure_storage_web/flutter_secure_storage_web.dart'; +import 'package:package_info_plus/src/package_info_plus_web.dart'; +import 'package:share_plus/src/share_plus_web.dart'; +import 'package:speech_to_text/speech_to_text_web.dart'; +import 'package:url_launcher_web/url_launcher_web.dart'; +import 'package:flutter_web_plugins/flutter_web_plugins.dart'; + +void registerPlugins([final Registrar? pluginRegistrar]) { + final Registrar registrar = pluginRegistrar ?? webPluginRegistrar; + ConnectivityPlusWebPlugin.registerWith(registrar); + FlutterNativeSplashWeb.registerWith(registrar); + FlutterSecureStorageWeb.registerWith(registrar); + PackageInfoPlusWebPlugin.registerWith(registrar); + SharePlusWebPlugin.registerWith(registrar); + SpeechToTextPlugin.registerWith(registrar); + UrlLauncherPlugin.registerWith(registrar); + registrar.registerMessageHandler(); +} diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache new file mode 100644 index 0000000..e7759ac --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/.filecache @@ -0,0 +1 @@ +{"version":2,"files":[{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","hash":"d19b802a88e4155dc2e45f5e1101d15f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","hash":"aa439be89f7997c3c5949ce32d2486bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"aa32657bdc6e98d914493e3dcd1297e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","hash":"0dd6b7d8d28ad1d7a979582b5dbc60cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","hash":"81d01d8cecc6783526e350800988db74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","hash":"cffffef4bf8830e201a0e74eeb8eefbc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","hash":"65d7d9aae72d673e52ab256ebc374bf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","hash":"ddbfb4de9e9dc40a09a6bfae74a41dd8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"db020a5dc1db2d32c48dfbd9b97e1fe8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","hash":"da767bceadf4951a2fd2ecc70270f6cb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"1be9384bd83205518a048ecc1a64d5a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","hash":"3032f1c2edfd44ab46f3b4673c5c8deb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","hash":"8dae2f643acc27538d30020543dd54a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","hash":"ea36381f235270cd68b88f2aafe5d620"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","hash":"34b9072869b35b15ccbe1d843fa778d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"d8a7b96e6465831f5cf6de56ccddf6b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"259698248be1045ed65ca4c44c0d9419"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"6f808ad3e21a896e5df3cf97ea2cb66e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","hash":"33186ffed4f0249b40a7d6161b7c2351"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","hash":"50ef33e165498030b82cc4c8d8408597"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","hash":"05fbdfb1bb8ed12098aa521c31a145ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","hash":"3467899798f7f8ca82797ccde4772534"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","hash":"9b478f27df3e7bd44722deb3c1c69ca3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"3a20b4d301e83ddf2a700e43c3d13f19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","hash":"a2187618f84ad697f470a748b2a27f56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"6e77594b72aaf1972bfbada10258aea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"cc73b974cea8f36b579e019233f5f39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","hash":"f0db904cb4051a93b08f326f9f4ded00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","hash":"59ba4a85ea18ab7b3030f370a0e93450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","hash":"bfd57391197129cbe3c47c75b2c21672"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"34e49d23faf2e4895f37b30900d32c5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","hash":"2d069a48b5e0ffa386474977d2c91c90"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","hash":"31690b0bd17e5becd1d7a80216ad01d0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"5d8fbf1c97a97bd37a57bc907bb90823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","hash":"3b481084198e4581293dd9ddddb9afb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"3ec7c08049495627813e9b3b937f53e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","hash":"2426dbde1829bfb9d5707ea69f21b4fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","hash":"dde1235f5cf091fe6d4a2938399afb4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","hash":"8fd257a17e57f8c7a9e9c3c5d77df78b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"f203420ad76d15df34cdeba7156e19b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","hash":"f91bd03132e9e671e87f0b9066647164"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","hash":"9633ac2bb6bd16fe5066b9905b6f0d1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","hash":"509de531546dd357cb81de8c9e42312d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","hash":"fcd23009cc22a74fe1f61f301a62b61e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","hash":"9a2704474807a196e3a72883d73b5be2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","hash":"9595cf0e7becb4bf5de5d3a3865d631d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","hash":"55422a6a3ed3f0829854a5bbb97d4e6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","hash":"a94a67f325606644fee6ad6aa922752e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","hash":"4f061ba7ed2e408e218e0eb4375dddee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","hash":"d75954340a0c7770eb9a149f7994598e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"0fe1cfc6c971ef6b8e64e31b7191038b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","hash":"ff5d66c50ec833a263625d39f0c195b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","hash":"2ef397117616f6ff779ed0ab2dd0d61d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","hash":"56e7707f76c417845a2d4ace8af3b305"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"19685ac5879c84f53885d8fc9890f9ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"b16bfc71ddbb89c942f3fb24dcc4de5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"3a8582a42202dd9c13976accdb4e8b18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","hash":"62e6826075b4df67271133a79fc4d046"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"3075297d267950b2cc949065c5c982bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","hash":"f38a99a51f4062e7861bb366f85265d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","hash":"e00e5a90ff913bc9c53a6572e53ec576"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","hash":"c23f3b290b75c80a3b2be36e880f5f2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","hash":"fa2fa16f78792d714ca06eb1bbea9db8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","hash":"c23f15393091087663c2613f18f0e9a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","hash":"bdc22e9e77382045196b5aafd42b5e55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","hash":"4fb96b9e2073cadc554a25b36f55e6dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","hash":"bb00c98e50d3c71d4ab7ac7c46122f3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","hash":"31ff0d4d17e824e16798aed227f48e88"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","hash":"6528389eb764f0529d5c3ce0f7403452"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","hash":"025e33f289842e685909a1adadc790ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","hash":"d3c588dd2fe7ad6be9c74bc406cd0199"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","hash":"6d35cfc0d00b450495558fbdc7ce2087"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","hash":"953396d57b69e0e889d9dfcc4f7fdabe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","hash":"de786aad9aba3c37b121a1f0238119a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","hash":"76052188e777d0ca03128d3b299d836c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","hash":"bf2ed9d304c7f4d1e982b118bbe93bf2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"61d6754850dbffcf4687388b630652ad"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","hash":"fd32497d512fda6fc0671f20387ea649"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","hash":"21a6eaa35ec3367210a47a559f54c4a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","hash":"737107f1a98a5ff745dd4e3236c5bb7b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","hash":"a9a606dc5028f1c8d7cc31f5cb21964e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","hash":"b21a009902949ddc4ba80d607867fcb7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","hash":"caf148b76c44a3f0f1bd6055ddbb8f5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","hash":"6f1cce384d53a00c3d6e036e78554066"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","hash":"d5a669dc5155cedc975db1022a570128"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","hash":"f78c405bcece3968277b212042da9ed6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","hash":"86d3f3a95c324c9479bd8986968f4327"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","hash":"83bb9dfd0d336db35e2f8d73c2bdda85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","hash":"3ba2e2e6e16b3e46d2e9882ff66479f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","hash":"51d92d191bdfceacf4cc7381782d4e5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","hash":"56b284328228e6d3eabf49bed958999e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"f26b3e572d8caad81a02521232f34ac2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","hash":"90879288f848e0c8bd3e17539633770a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","hash":"cc0ab0117e8a0a54ec3efe6d9251860e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"2141c0a9a7f60478204da36bd64edf0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","hash":"8dea906a9b8773920b6d1ccea59807bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","hash":"7be00974229804e8ec49ca8c4fca3b5f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"eb3b6369f8af356037fedee8b6733b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"f2138801d3af6774b0cdb3ff8f966b8c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"e83026f2a0c3e22691eee7ce337b037b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","hash":"a2cdec29e909752629150b24b9b18407"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","hash":"c2d76b78fb107e358b1ad967f15f1746"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"42b701fea2336aa3a74e390579863153"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","hash":"296e60aee7732b001a79f3216058a381"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"19171c1dc65154469120c6dc1ffbd025"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","hash":"dfce6b9ee4ae9b9df7401fab182baa6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","hash":"21ee375f5cb7acd3bec0129fba2839ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","hash":"a42121307a3d24f06691ab35f935206a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"ee635fd679923a1967d7f97840c03f25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","hash":"3d7fed590b9d1ab99d591b04487b9287"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"d2791172df9d71b9d978e566377b236c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","hash":"89f7a33014c1771ad6ba7af660714ba9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","hash":"437b5795f5b9bf507b02ed5d44f9f572"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","hash":"e9c0088ee89cdab9346358a1ab7d4f18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","hash":"5843b4750179f6099d443212b76f04a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","hash":"41696c18e708950dccaf7cb4f5b7b195"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","hash":"1f9d71a3b838669de863ab244804bdc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","hash":"e1c286fd5841539119a1c390cc1fe13a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","hash":"ba02460ed2591611ff8506bdd88f569e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","hash":"3059dceae50124dbd966f136c80016fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","hash":"7dff3a0a1b5652f08f2267907c79844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","hash":"3a70808300050e138089768c2a40dd78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","hash":"47bd44d1a936d22067083db9e592d00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","hash":"3667c2cba3e0537e66b40353a1482487"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","hash":"b79970824daea8c217511d19c774c1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","hash":"03b20b9fede21601f0b3d0f7ef4ce25f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","hash":"0ce51f30ec304572b490e8f3160925cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"a05b35e402965727a6b38bfc20b6ea15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","hash":"67788ce85b40005f02d41f07f8c72c1c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"c6361b93d4a266527cc473cc2570f714"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","hash":"359d022c7d5a59692d34bb2d5eed6736"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","hash":"5bde4f62a64276d44e1ef4ee3bf194f6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"ecb57271d69343712d88a50442f2e8ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","hash":"0c30a117b0d1fd5c94980510832b81d0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","hash":"c4222ace4a2fadb2e9db196b058e9d86"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","hash":"fba8114f858c7bb3b433350fa69476da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","hash":"17b166b7da51804be122c3799285a293"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"e54dfa9602e092489eff9b246249b58c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","hash":"186b8c23ed0d68e6f81d56d62272c87c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"7543511b01e80fd6c1424d1716696d43"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"ea3e7b1b5cb494d1fe64a8ea3c635f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","hash":"052660a52f5ab94091182bccabab6f84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"e2ff5f7cd2d3585383be2f277af0e761"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","hash":"1825b39f94e569a3c0c86c8ec20b723e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","hash":"0986862ec60c0703a2f25d4c50fe9a2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","hash":"f6b2a03b8f3554a6b37f151f6a561fe9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","hash":"fb71dd46672c822515f03f8f0dddbcb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","hash":"e0b6567371b3d5f4cc62f768424e28c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"2477a3574e222e0361cc9a114e007c94"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","hash":"d28de61067df9bc3d509be84deec1140"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","hash":"b248aab8f1807ae07bc22c26210f2def"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"b710038198396f242f41de12c8488a5f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","hash":"fcf0dfcafac17dc3ed539b4587340320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","hash":"59b94bd26c48f22af40881f8128c41c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"7294188b7840ddcb215d597adfd35d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","hash":"cfeea6435b5871fb518238f65eff45c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","hash":"6315f598861cc34295ad7b2e926a143f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","hash":"e02cc4bfbf4ebc867c80dd14a71289eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"f3a43f7f1e3cdd35326341d9fe51fdee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","hash":"d71b6121d7069ff8303334b41e9a92d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","hash":"0fe168f7fefcc6e38cea5a1daaa08fe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","hash":"7132bdf47eb7567294754da6caddbe14"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","hash":"7594a28b48f672ffb4829ada9ea4018e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"38aaf9a4c4e85e3635751865dd337321"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","hash":"9fce75490356488473f3f0d5259d2f29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","hash":"195aceb9dfe0dacbf39711b8622ce2b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","hash":"fbbf07cdc6454526db079daddea912cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","hash":"3f842dc9d82d8b21557bf598ff4ec83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","hash":"5df97b77642ac6f786c40d585400f7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","hash":"92985c94a9a966b97c156c06ab2d5195"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","hash":"8924d681363bacc7cd51c183b529f260"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","hash":"c32553850c6990014c017cc3b3024df3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","hash":"9ec244272cb6c8da46a6dd5f104f0dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","hash":"18e255eb54fef40d17b6f6abac4455aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","hash":"8596b58c127792783625b4b22a4d023c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","hash":"acfc0a55deec22276e085dae6197833a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","hash":"d45b4bb922c2941476a8b797e0e275ad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"59ba7bdfc57111a2c59ae46a61e0daa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","hash":"c687544dd89d844861b88fe7d0fd095e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","hash":"7c5b14805d686129e90293ef086d4d68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","hash":"b192f8c8e04e47ae69d662e5feff7306"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","hash":"0502dbd75b5b023cd08bf81003a77889"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"ba0276c39a78df8b9ae1f68746ed0e73"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","hash":"3ae05205e5843fd41cae41c823dd7679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","hash":"89cdb68e09dda63e2a16d00b994387c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","hash":"168bedc5b96bb6fea46c5b5aa43addd1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","hash":"4f835012742ef22df8c85292594f9823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","hash":"6a18f9347e6e639ebbbfb0a0ce98bb71"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","hash":"5f59fa1ce6d10c011e76cb4d99e90d6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","hash":"f0687363561a3dd3af32cc1870c61c97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fade310b4dcd8b5183b8caf0b7460a61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"8410804f64d7620e89249b54b17d9d9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","hash":"5893c7d3910e8924bd2dccc8837775c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","hash":"4f4a2d291e23c96c7ae0d4dbc9598c54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"11ae4db3a0abc6e46de31a943bcdca60"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","hash":"d7259aeee1602df30d051e8fc0523d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"1aebe82cc4e81c2b5fd46f924c92d5af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","hash":"b1d3d657c21d4c2229511410eb2240c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","hash":"670388961b23da0ffd68cf26f5104e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","hash":"13e53604d98eb0a2fbd871588ec8b357"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","hash":"9a453418cc0baa3cf4c4a41655f4a113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"18939fc6e74f9b391a45ae341fe30128"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","hash":"8390e4d70de6b673e657c51fdb76c8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","hash":"b1cb91ea7a56d612d5792dbfe439f2d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","hash":"98e80e3c681156f330d79925f2675eb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","hash":"273e2f5010e85e296a0893f397d71645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","hash":"3a9a69af68cc0a35c422d0bf03873265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","hash":"7d51f23cb597ecf99a0b6007767461f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","hash":"1d43aa18b7cd09879287a4e8ba5ea5ef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"4a3a541b9e5b5781690d1b413c84757f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","hash":"fac5ee1098b41fef8637aca152781c92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","hash":"562889498a1b0cda759a1186693143e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","hash":"8fdbe6c284b56683447368dde52806c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","hash":"7d9a75e0bd8e5c9b49ad6c0816666b4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","hash":"452cd5bd89dd73f555cc1ef42032e1f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","hash":"404ec528c031ebc7486f12477b06de28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","hash":"038a6fc8c86b9aab7ef668688a077234"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","hash":"2441a967786bd149053b72e22172ce60"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"a31803db08fc99ed2b1648bd10de25df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"d40025a616ebc535304bb45ed491794d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","hash":"9d62f4f58e8d63a8e106a1158eb13a02"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","hash":"91794c215a8aa39b862cfa4c96b9a398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","hash":"77971712e28393ec72c9033a92f3ceab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","hash":"45a4d78a037bdf56e5eb45d75298ff84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","hash":"5fc1a25f60cfa0a0280878377348c63c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","hash":"201005c585ce255343e625b1a5e49601"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","hash":"3a2d505268f5446e5f7694776b69b407"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"4228c34247981f0faaf8e067e3a82e19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","hash":"ff12dd93989e4929d1f2e1bf36c45978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","hash":"391b7eda9bffdd4386292eae157d449c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","hash":"c5cf5bfcab3a48fc5ec40113640a6e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"5ec6314e10455f6b4b0809f222cb82ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","hash":"8faa98eb1bc31bbb64876e837eec420b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","hash":"1ca6e7022b3a950a205e316f7e3a2b1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","hash":"e1c112a7342a7ee3110a1c2df175b89d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","hash":"c88223c7cd248b2bb8587f78e9530f64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","hash":"f5e7b04452b0066dff82aec6597afdc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","hash":"7f47dda6ed10e33236d465680dc8c12b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","hash":"63d2768cdd6ab5a282fbb6a86c237b78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","hash":"ad6fa6bf1dadc6e07c4c080c69abde6a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"5efd79b206d541def2ced4a547014219"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","hash":"84de591d644b29f5e21052bd9c84263c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","hash":"81c2aad8ddfe7e91e913fa4c319764f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","hash":"2ca4b9e92c39403717d2dcc32bed57e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","hash":"9741c346eef56131163e13b9db1241b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"559ecbc92097e4c9b9142335dec3f3ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","hash":"7b2a0787f26dba547607fdca4028a1cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","hash":"b76ebf453c4f7a78139f5c52af57fda3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","hash":"52e0406df2babb2958beb4b471ccbcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","hash":"d9eedadb461aac1eebde731afb42a2d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"bdd3a31817dfc052c506f3a7e2556fcb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","hash":"aaf31c7a7690aa5b5980d454e534d168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","hash":"dd15fe8e4901c3c57a40bed6b0079e80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","hash":"5701f1a2ae54ccdf11a84a2a6239861e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"f60d1c032575a7726e7526bbd5d26e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","hash":"1aaa0309ba77b0f57733e99543c455ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","hash":"d9fa00a9beeccf6023d9f9950d016c1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"f7e6d723f47368300487f5121688d827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","hash":"f61c50d40c00ac96c595ea0b2682937c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","hash":"e2f7d6fbeb362176a24cb422a6dd8193"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","hash":"57e5dc91c30bff1774eaaa45a798d0df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"4a9437bcc5b4bc801a155dc8b18ca80b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","hash":"34336c7c021e6749ef0bd6a11e48f887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","hash":"79503c7448238b77502c169788e26dbf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","hash":"8797b9bb0c8239ab47601d92826a8cc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","hash":"ae36c7cc9b21f98bedf401f2d67a0fd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","hash":"00bfa437eaf641f6fdf0db2367135a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","hash":"ceac2a8f7197831de70d242e885a1527"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","hash":"bf4a95c97439fb24c526534818440cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","hash":"002be4c072c0cc5c5e72b5ff6d0c490b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","hash":"184d3b79d275d28cd02745b455041ee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","hash":"abcb2d6facc18b2af070cb86cbb1c764"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","hash":"6b6d268476b0c6b3d28f6339b57b61b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","hash":"bf3aeab9379cee97ddcc69d885a477f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","hash":"710a4fd96b6281c1ab359ea6df4ceee8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","hash":"0db1803fcad172b512558bd1b03e4ff0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","hash":"17db713e9a12494613ca23ad84def9c3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"34cd6d5950080d2479052b3f332b702e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"09a96c82ece190d734f06404eb1e5b1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","hash":"f8c5df6155feb71c22fdca5ea2d10a53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"c32fe94e565a6199137fe363f3a40636"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","hash":"31f8129bfae39c459df7bd2d3cc37bae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","hash":"0fa4a82df6fea98c85dcfc6cedf4206d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","hash":"b9f0d5a8855611341e4cc707fd98aa3b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","hash":"bfc483b9f818def1209e4faf830541ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"7904ef0e6ab501cf89c04669c0b5d600"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"9f00531fd2765e9d53bb4803eedee111"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","hash":"fb2be6f27b32bb1ab12dd6aea8c5ecda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","hash":"7c89e8d3e17b2ff04570b741ce311e44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","hash":"32f5f78e5648f98d8b602c6233aa4fc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","hash":"4c92351d347c52a00797317aa487600f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","hash":"0073f703be7f7ddbd7f04d1b740f35c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"e750d451a309d0cba00603d8bbc3e98f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","hash":"2083695b7b9150b87307af446032ba45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","hash":"a54725bc16ee2ca993762c441542c1cc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","hash":"10ee0ac3bc045cf4344c623f4396d941"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","hash":"20290eb1c157dcb3947d9e5b420ea50e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","hash":"6b92e06b2a6b070f593630943622f8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","hash":"5a7bd956aa537e95be882d4809232c39"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"ef78266d8f88424f55e3135455ee90cf"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","hash":"d7f7c36978e85a7423fd87bcfd9a7a03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"d94743ec9e31da98eb079db06f418126"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","hash":"cf2b42c94ab97ce116e195500f147944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","hash":"30a4963c49e7dd57d8cec29b8f4821db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","hash":"8171c3b0d66f560aad82b73d43393092"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","hash":"5a944801c9b2bd3447f982168b31e46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","hash":"a878c551495aae9f415d298f162fd19e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"dd83cc86855f180335c59246dae38264"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","hash":"97fe7ee22c2d610b9259874f37014c82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","hash":"74fb000405fb96842a3ce15a519d8ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","hash":"9068f4d63af1ec44245b76b7ab4dfa48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","hash":"a97282161191c89d98231dfd655252c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","hash":"1059ea9e8a0e858f944bf05dcb7b8edd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","hash":"cdc3ed60fc9f8d6e2fd72afef2012bda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","hash":"30207bb624460e743b557f58e7b39479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f54f6b61b175b0a37d51ff3ac8b8c800"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","hash":"bad6783543dd4de76cbac4872a2e1969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","hash":"3439e88de4cdc23b3bb0bc629e7f48b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","hash":"1632b8b538a5115973c424adb5380d7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","hash":"f3c87bba5ae0baea2e0768ad663e7e7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","hash":"809f1f0bbe7ee77e69f003952a5525d5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"a25be9534683056e76a7ff2a00de199c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","hash":"9f9383a378fdae3c3237fa40d6c8e070"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"e33cf45ff0309bc7b7e295ecd8e64c02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"97b528fc5160b67efb862edaee719648"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","hash":"a0c11bb2957ee28a1de2145cc233367d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"c7414d3ccb3bf26e8437eac2f4086abf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","hash":"34f75dd4788c48a2a7b2ce2efe4c51fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"84ab7cd659f8b1df06e1e90d50694d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","hash":"89a8b9c7063d78cb595e85cc56441cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","hash":"c135a8cfe6154841111bd7d4f7c7e69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","hash":"ef41b02d4257a466a4a68f493052b543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","hash":"1198e07cfca6cdefe5e54638d507f31d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","hash":"f908879081c20ea0f414c694b9e88fde"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","hash":"fd25090c21947bb10aa8adbffe5fd89c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","hash":"31e9eaae0175cc8b4184df6c89b454ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","hash":"e2bcdfd80ddc73e02b457e8544242028"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","hash":"c8ba4eb7463f2816b6b5c054b0876f2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","hash":"2924a2b4f15d6d9a055f71d47d94521e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","hash":"0744178a930db21a55b4afb9b80fa463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","hash":"ed6e10b66c408845188f75959c15a23b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","hash":"f235e4dd0ff304f8ff7a0cb1e620f83d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","hash":"befbfd864024e35cb6b7752f9b4ac4d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","hash":"c6d3a43399dd0c6b8c5497bf5241a008"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","hash":"333ab18cdd4f86c6929556ed06e4d567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","hash":"3598a401936c6a9e0a645251fba246f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","hash":"5c4dc37f36fc78823f785b92b944560d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"249b2817c1c912b9942e8acc7987adb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"0afbdd6f1125195ec28ff55922e51d50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","hash":"f1e1ff4a88eabaa04e9774ee96497141"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","hash":"d8078d775520fa565079c39a3f62e075"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","hash":"eca10930a22c21b03e7217321ca2caba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","hash":"8445a7502a6450e9deefaff9d677c524"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","hash":"f0ffece0b01158318dbca4d043da78b3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","hash":"cbf041463d4a85115a79934eafe8e461"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"979bc974a11a3572cb5b730b00d0810a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"3a7a1f65ad7bc4d7130c9bd74c7edfa6"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","hash":"6959098d6067b573f510d80fa58d8ddb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"d571b3d9c3e078d8fd3b0bf9caf86244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","hash":"6cee72f673d593b0b84628bf243727a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","hash":"2b2385e013688dc5ccafac580f8f6999"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"75ea819a46fc37b000660901648c12f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","hash":"beea47c079349d8e03b64a5a9dcbc7df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","hash":"5327416ac833c200249d92ddeea11293"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","hash":"3b954371d922e30c595d3f72f54bb6e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","hash":"6a792eed43130ef8c5b35bb12106f303"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","hash":"1b20a6e406ca8e79675b2ebd9b362d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","hash":"65fe1b7c956a57db85d24838ab970d2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"91d79fc63a36bcb3b575a511cd243ee1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","hash":"c3e8a2b9954b1a5d81e4dc3b74d162fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","hash":"cb23738bdb6f2e8319ba8e9dac0072ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","hash":"1f08f83d7a9240cb3accf35283c75bdb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"14b9c8680b6de7a995b4bfa53651eac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","hash":"63b92eb56c14d5474db11677f1800c83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","hash":"28eabbe1a08475df35ee00124b823e50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","hash":"8944748ddfae167a4c9f3dc75a702e46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","hash":"3b0b3a91aa8c0be99a4bb314280a8f9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","hash":"b969cd0066fa07b8082edb76d2af77e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"ee8b3995a1eea74277e0b58b0e8fc04b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","hash":"84516bb884e27c54321d286d9ae9e9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","hash":"9d122acee9d1f43dcdb2ea88fd1fc95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","hash":"5026f3bc8f63a10ffb208a35e304f40c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","hash":"7d1806cb19bc0d23a18c2760d106d95e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","hash":"bb012047379b362d408e5d0c8bc6ff55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","hash":"b753c0207187489225c25d5554272839"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","hash":"3cafeafccdf2688fe36789f31e671cfa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","hash":"d881c458d06573eb887bdf0f3ce9f586"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"f01c011063a155edfb8217353e1a2d29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","hash":"1adcc56e3affffb23739c7c9d8a5fca0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","hash":"813218451c1d8dd310e1233bd4ca7a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","hash":"f975cf0e4e06eabe6c8e6134cd33b269"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"59400db677c60e1ddb3d79ecdc89e580"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","hash":"00a661dfeb90c5dba43ec7e638141966"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","hash":"c8b1bc30159a132cab814de0d71e0462"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"3ac176a9235973980af3b75bd0c237ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"c6014cf91769b13fcbd60242ce7ca6c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","hash":"c99d4d9f1de256e9caa04dc2149e2663"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"186f62d10a2a42d945d94b5ba32daa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","hash":"d414c1f995780a939e1d357efa0400a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","hash":"983f9738507c43e2eee65120e25d0785"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","hash":"04eedb8a1150a97ee060a82f95f2b91c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","hash":"30325626c486da5b0b5e6ca9d6a6d337"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","hash":"c54cfb081c273f7d29980b31987bf614"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","hash":"241ccb24efad22e002bdfe778f96b46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","hash":"b296f400a068b70100fa570a6134860d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","hash":"8a7e3b181572ed50e923e5dc05a7533d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","hash":"7494ac5a5e8b9d56894cd383fa6e9d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"3b88bbef523e78633182df3f70dbe5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"a23c150b50d79965efc47c5ed47dd641"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"2b5f770e124b8f0d41d18ceccba29bb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","hash":"704d7f872888ec6e9697123a180fd95d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","hash":"d2e52e362068fba5e3f86800ddf3cc91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","hash":"1d7b10a04a356e2e37151eb235c2db90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","hash":"fac91a50f448265e9a9f97994e8b529e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","hash":"9787d9b12ea9461874ea0faa9cccf9db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","hash":"86e0f9e302f9ac959626122751b65361"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","hash":"1c4127d99af22e5232df8132ae79beeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"0caf572d3e573a263a9ffee71ff67208"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","hash":"e97932f0cef53e2c018203ac3cf1c7e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","hash":"4fe97d87eee37e8a1dddc5230ebbf9ce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","hash":"75ba7e8a7322214ca6e449d0be23e2ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","hash":"88956349d04ce0c5fc6ae1e89fd65b2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","hash":"eb3c8293bce0e3d04f8f6ca79994937e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","hash":"984f27f723ba52ab371439e37b31ca91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","hash":"b5e211d1bb1c533a77b5638eede5479f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","hash":"fb64eb7ccd3a66090cd698eaebe1d080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","hash":"018e93669d12c52b66204d139de58ef8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","hash":"af7270fd3861278053b1c45a7b66ece3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","hash":"023daeebc8de153ee091d1e3cc9508f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","hash":"5f22b5b8aa08733c616d6f636a05f5f5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"294b01503572e239c505c014297fc4b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"d35a017ca116a68758fe9e289a8a96bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","hash":"b062a8e2dade00779072d1c37846d161"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"da23e9a23f3c0bd8f03adb30165f3f2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"deb256229ac9a60b1f5dee744af2411c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","hash":"442a233329c158bcfbb129ccea0fe8ca"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"83f2fe11c7f72d3ea5eb743f8978170f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","hash":"15308b82e6b7d5df3058f8e769084a67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","hash":"e65733ef6887a9505fca66a22d9e2887"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","hash":"13eb2b4e1e2abfcd739ea5addab1ff77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","hash":"82acaf4c715888e486eb9d714c23b266"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"53f5ec04f6df9a78c3651e5cdb84c460"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"dbdee8b92f93123706efc22ba09f9ce9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","hash":"e50d0f9c52ca60c2b00a076e994ce7fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","hash":"153e569a429470f19962e80723cbf73f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","hash":"e2874f670fc80ccca43123509b557150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","hash":"a7c2e189af8ef0e494c5f50550ce8500"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"5057eb331db10cf132ee46e1f68fe99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","hash":"9a0bdbeb6a1452722cc91b80ee779998"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","hash":"bd3131f212db4084582e634bc232b43b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"f20b8958b0c35e9bbea75a43c9cf0e59"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"5f1b9eaff8ce12e7ce1eb00ec6656158"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","hash":"50b1b7bf5e4cfd21e9fa7a0ec26f0aae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","hash":"5e97dbe19781055ba2585ce570bc4643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","hash":"fd517e61edeaf09f9e4cf9e9ba8af13c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"6790958a6027b5951c84e721543745a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","hash":"a929730b53383c1207e3d75c57a45ea0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","hash":"afa8ae229bc41c02a6cd9dcbe10a81e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","hash":"908da18a3fee181ac432b85d7097e5f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","hash":"bc6418e88ab34ee846e3d4e32408b23f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","hash":"d5e0952742a6404c71b939292023e2cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"7f7a40cb54e941d10dfb719fac727845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","hash":"69c08243f2f74c58d6ad38b17bb5cb9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","hash":"121fcbdc1af81a0fd804490f85357fa0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"d0b6b68aeba6ea0b5b3d483ee7f4cb6b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"1e97a873901018a85c8812ec1d0b9731"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"e13d87775c63a62ee77c103021ea3f4f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"4213cdf8a94244f8d19a59844563dd53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","hash":"2241f880365723564463d0bec35a4ba2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","hash":"f7951193fafe9047a1634686ec649135"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","hash":"b9abba31a48a9c2caee10ef52c5c1d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","hash":"dddc2f13e029b11ddffa36413341f1b1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"6de8733c5e01bc816fbb237842e21b72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","hash":"99760254cc7c1941d4d7d7bb0fad045d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"b62f50ac1dc3bb09452f43e936636040"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"a57f176872c4264164cfd424a851cc6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"202a4e574b65775d1c57cdd8bcaab1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","hash":"6b943be06664ea45e0cac8c8178920b7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"a20476b0c2af5cee4bf0640aab028ee2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","hash":"fa2a57b3b873fb7db4b8b961735e4ca3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","hash":"01b051da3c61c872efd639af5fa0f4f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","hash":"4e3b785e94de8470e198d0bda80e23bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","hash":"b9283cabc57ae94b3c75f147903751fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","hash":"f4b8510296da48652b91a91857d7c71b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","hash":"097e09840cc00325fdbebaacd05f4827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","hash":"bbfc82fc5cadc3b055adeaa481dfee0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","hash":"1a1718d3591a292ec85b4c24e55ce2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","hash":"a57c7d0bb0b0f3ff52fd48c953453bd4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","hash":"35618929218f5482cb77a53849ace21b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","hash":"3b32647556f88ddd6d625ddc58c7691e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","hash":"3575776abdbb8b6b6ff78edda77516b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"59bce148eeb78b17151a78113324748b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","hash":"0ec94439be7a3b65b67cf02ae0824af5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","hash":"0564ee9e759fe52b58de8af3d5d0f9b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","hash":"051cde8121025c728b15c2e7588d8d6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"bb1616431e7e339d1d3ff7056d346b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","hash":"176c6b2c4f4e2d64cd55df2a0dabe5e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","hash":"d1a447c33fb026db3ec5e4b6ac445551"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"eb862424fb59150cb9eb3ad863a6ab19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","hash":"aa27dfc54687394062db977707839be5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","hash":"e0af2f414117c942cbe5e23f4f60ba3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","hash":"3b7079a373d8c63eff5dce592af6647c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","hash":"2a02594ad813d39d23460e2abfd2551d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","hash":"0615f9d831d9b19a15b6926d9babee1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","hash":"18d9d372c2f7421114cc2a2df21d8206"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","hash":"cfa13a81d06c256567bcf9c8474aec6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"28606b06edae379ec11d2d93ebf93508"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","hash":"25e2aff82faa45ee7c3cb05fc8aa387d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","hash":"fe2df60ed5b05e922df2ee9fef5cf5d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","hash":"0cb51131f14d4d8df95aee83e4931780"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","hash":"e36d334fce00f81c8efb9b4fa288f0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","hash":"0976264b99a1702a5d74e9acb841b775"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"dc7c1a8573288b247063c6759a011b7b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","hash":"3796ca959ef2c6e4bfd668640a318ad1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","hash":"5275d424aba5c931a30e6bd3e467027d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"31fac5b5882f19d242724b858b97d228"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"28f7439b1d946ef75b90f18af1a350a5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","hash":"0d464f8889947907e0d2ce2fcafb9dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","hash":"1f65c98a00f4c2151338f0d803b2d1c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","hash":"17d3a0211da3d73d405d8730d46caacb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","hash":"feb9d01ea95c554272c3263d1b5f840e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","hash":"e127807dbf170db96c668c840d9821db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","hash":"6ce4cf18b9c25729d5868ca9f5dfd1ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"9f7270100e64dae8750b9ae54cde56e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","hash":"e146b44d78acd9bbb61d2d9f9fcb922a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","hash":"fbd82bcbc9e665b8d098f0716297aa14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"c29dd136dd5ed20e4a1cdf451b1f52f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","hash":"30191f66ed437888e9e12cdc67d37c95"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","hash":"c5f413565439b173df98b83f1af3898a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"1e83c6270f0be9dd2e6457fcf059c9a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","hash":"9f2e86f55227535568e0459c4d51e139"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"83556c46b56c94715c7e42dbda413bb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","hash":"300a55743890abdcee4f6f0ac897a3d9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"10e637b148cf0219283c32cd82247317"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","hash":"8986177ba204a808c603c35260601cce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","hash":"485043a68e11755920abd67f229ffe9d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","hash":"6ed688f382406e9c782f92df9e965fac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","hash":"860a0e6b23bd728899d9bbad3e966f2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","hash":"ebf62f8040320f913d52494eab3f3dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","hash":"c39101179f8bdf0b2116c1f40a3acc25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","hash":"d98495bcbc301290a10e6d1dfc255d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"eca9a7a317e1f0d515f9912740c592df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"29eb69935c586ca665d0f6f7aa84a06d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","hash":"ec2c8a676c3ca12891e9a65ea03458e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","hash":"ae166113e6ff5a842f58d22d959a82f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","hash":"4990e198f887619ece65c59a3de67869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","hash":"304fc982848b57cf13da0ec511f05ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","hash":"531d1d96bce7aa59a6109c02ac538cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","hash":"17cf81dd718b76ea3b1453b5f74e1cd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","hash":"3aa843b290b927ec2ae60e30f12b4ab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","hash":"9eb3cf0f33c573aa9e8424441db78539"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","hash":"add5f0afe8e318e91950e5725be6f333"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","hash":"83bf0c16af93652e46e4bdf93d5f12fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","hash":"2faf9ca0d113c0ed79c6651a9c1f76db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"97806b975917767c55aa3332c68f2404"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","hash":"d1ee0303997b5b50b6e7cfd972f6ccf6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"ea0307aa388ef4ea77725e722047e72d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"16cc4a3c97bbfb29764163f9783954cf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","hash":"fe4f36f2c139e1900dbda797a7e07fc9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","hash":"6683b2c06b0ec964286b1a54f7e2803f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"cd7c911bd9a71d38d369eac020542e94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","hash":"694c3cc6e2d326daebadef63f0b05666"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","hash":"ddefd207562d7e33dc44d433e0848e1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","hash":"dcb1bf21d8afb364e20a47f106496780"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"07953249885c3b6a0f9b209da024e6c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","hash":"b5519514c9b9570c951c0da186030e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","hash":"55675ef4bbddffa94d962bd52b3088ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","hash":"e0e6a22d50cab6e16266023c58517b54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","hash":"a8499171c0b67ca96b9f8b0462e1079b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","hash":"8b403a286f7eadba8a7c7e6ce1a8016c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","hash":"4b47948751192afd79eae2fa8917d954"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","hash":"49971663c818be6f5c1da5fe3bdf034b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","hash":"59762d927d3847803fdbe28919a08ebb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13c9680b76d03cbd8c23463259d8deb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","hash":"0e65f16e8f270ae65baf85523fb72141"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"5b28a1ac6249f272147929f5c2682912"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","hash":"cfab296797450689ec04e7984e7d80e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","hash":"fe7e235a7623f4d325eb05394e6306f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","hash":"87546066dfc566126ed9357805535e97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","hash":"39f3f867b205cc97161c2209bb84964f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","hash":"5164e5af0ccfe7dbe777bb588e91c937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","hash":"de49c234a47c24f91be2f223476fcd44"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"5dece601afa9176d17a2f17f462f976f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","hash":"7f30d05e05b047b274b1c4b45391d698"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","hash":"a1bc06d1d53e9b47b32fbdb4d323f44d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","hash":"9dfee6539c8500c134b4ff72eeccd87d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"363dc40bd108240cb513878e107a260d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","hash":"57e787ad7ab7e659258e3a0171634d3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","hash":"532a272d043c3dccd91b63d1b428dac9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","hash":"a0ff9321b483226cdbe4773e33779715"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","hash":"db647290a1e99c1beb871fcf7ec44e82"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","hash":"99948786c0d9f0b9de45c1b75e5f44a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"24afb8a8ec6e6d1ab62702c8cc554fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"8144b7908238f72cdf9bf921ec61b200"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","hash":"24b206328a01c6923f0c599c64088645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"09a30da1952f8931df150554b700fc98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"01372fe939573ea2c3066bec70222cbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"9b741ffc78219355087b8876a5f2f6a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"b6ddece86289abf66c16e08325be5e4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","hash":"145a18283aef042bba506a2190347763"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","hash":"cf38ac99d6e6daaedb2791d07af7f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","hash":"15ee18405ccd7752c3035b2f3b86e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","hash":"e999eca1c1c76717a74f50814d129d17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","hash":"749e18efee29d6925d7c55e573d3eb2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","hash":"8016baf49ccbce205455e3fc0bddbb17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"5802c95af0b70a643e4566d6a4f887af"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","hash":"8e15fb39d712d35c4021c339ed1822c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","hash":"7ec268e37049e5c22e226c94df1776b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","hash":"230a3518091834c1ebaba0eda6ad491e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","hash":"e1c4eba9ccd9a12c58e4e531e73fcc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","hash":"4c94c1ae460dd53255786f0ce3b53463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"19061eb5c67d5853bf7a8f53406a083b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","hash":"33a37c05fcec728f44c5280e18129e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","hash":"b8a405a7e5ea8001bb0ab36de015ac6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"01edf2016995f3fcdadc212de7430b99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","hash":"f52860ffbd4c6858f092292d1589d556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","hash":"08b6eae008bb8359796643eb1a639234"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"97fc1400dd55cb4fceecb33260f0f978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"5b894ae18be3e2442a34288833184ca9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"36b808e976f035411a6b13a09cca7717"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","hash":"2e130b0e6cc669eb69235f142071943e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","hash":"49f5232a2ded0fd41199247ef043772b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","hash":"809e8ac7250eb66ab4d713bd65f5aaae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","hash":"f594087d1804ddc538f758c0059eb6da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","hash":"8580846ee9612281791cc377a99d0581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","hash":"ef5d77a8181065ceb0e93986c1a6f6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","hash":"53b1a2074650b8f2808e620e2b9ddc41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"c7cabd6637c9917d66f7c814682f8cef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","hash":"c60f0503c7dc9addd109be4c44197758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","hash":"7ff35a1db7f2b80a156d464b075a09f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","hash":"81cd0b075cd4d742a83ed1a6f4f801f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","hash":"05f74ab5ea1d7103ef8e4f9cf05caa5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","hash":"f29d1458f73f015dabefc27f98181f05"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"3058d37db340224b0e712b4714a779f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"e3825f51c0135897809a89cf7af42c4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","hash":"b92ed901e8df2fde6d4739ed5e59051d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","hash":"092362603d55c20cda672457571f6483"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"a9d4e4b3f6357c540f77101737a25e4e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","hash":"16be701d0e77cd0f89f37cbfb1bf10ad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","hash":"c81713fc58f35111f30b5ef09b79cef5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"bcadd68b799bedc548c0243c211ec652"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","hash":"35abc3f166f0485c87a21f0fcecae69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","hash":"37837bd1379e66f38e4a7775b6084d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","hash":"b60a2076a519fde0c9162319239b25eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"cb9617d35408474cec5c44f6d57c0faa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"2a5ea48301e3de49528660d81bbad42c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"0b594cddd30fe9d0d34a42f5328a2b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"1a0f6fb989f60a34770d3667e697603c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","hash":"9c6f87a0150adc24004a99cb321345ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","hash":"6745a4321f65340dc91faae80415984b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","hash":"7e3f918d0bfe4e1806f1187481eda29c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","hash":"4aedad37fdbba8c7bace80a249a67ff3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","hash":"a3250d5fb60cc8b17997c886a67be737"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","hash":"a9f0e05b8fdef7080a8053dd02ba8ef2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","hash":"597ee0cf67b512406e619cc05fddadbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","hash":"bb7e4bee2f9cca7b7e771e5ff413108d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"d34d9b212543fc7b9be0aa2629f644be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","hash":"3ce0f30d7026f6462449617764734437"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","hash":"20dc50b53035a8e953b5d4ffe6948ede"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","hash":"f06285441f011c415850a378771be4b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","hash":"034536c8c0bdfd72d8f8060ea1f36f3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","hash":"796d0d545778c85ce27a9304092b5ed0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"ef404628eaa9f15a2b25a2cf99a6df9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","hash":"61f38162c831759dd3768aa4cf2d22f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","hash":"c4d6b1cc1407761dfb2b51713416d679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","hash":"5bca961ad685ab10214ea12d5a120b89"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"15bd155c4ace05abe4d39c725cce4f51"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"28bfa6a255f9e9d16e0ae25511179fd2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"a2701656bb3160ea810ab576c50cbd65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","hash":"0400c53ca2e9230b51a6f361146dee28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","hash":"77ed8d7112753d0eeaa860ecd9fc5ba0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"2ef90aee578d834f91ba85c1f44cf71c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","hash":"f45299fdabda0bd3b2ed77068c7d1de6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","hash":"22029a1632b4f7ca4e7271bff29d89c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"079edbcc1283bc93f993199865e3fffa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"64e440b4de7121a100d0f99a8126b6cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","hash":"82c3a291bffe63fdad7d6e4bd5b0a0e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"c669ffa0ef13b4a5c5d951c7c677a057"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"d48d52bc573d346cad979541a2f68329"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","hash":"72e3f09580a88c2aa3ce838611e0a25d"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":"d2e911f4f90d6beb874adeab92bff19c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","hash":"2d04b343ac3e272959ffa40b7b9d782c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","hash":"0f1d84a9023a931b4b3cda6b907d76e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","hash":"2e46417042b18a7fd19a9d6c90fce1b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","hash":"7f4803fefd76d9acc343598ff82f512a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"c3133dd829b0ede654f9ac03ccdc9b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","hash":"b4355b7f9f9e50017ce52a8bda654dd1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","hash":"4d7ff70b73cfe04b14f559266b5a991e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","hash":"a60dd773b7d69b347521fb64257f9397"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"31cdb66ccc93a7a6b179af6b4db7790b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","hash":"daeb052f1089d4e84d8a22acf56c1da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","hash":"92197f660f809dbb94c7d3d67b9f24e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"29bcbfc3fc36aa9f730e8760f765c536"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","hash":"481d21ef07dee6f82302a015f989b597"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"d3fc00fd023c392cb5a19d630ec45482"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","hash":"8898ba9f5064edff3e9fbc9889ba9dd0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","hash":"a4bd9e0add3bd13842fedfbd33ba0192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","hash":"da1662b9c25c25360cd487c1b4ade3ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","hash":"2f6d6663f131dd0e24f37f58530342c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","hash":"eb1f8c19bb309d54e9efc12e5162e3f4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"57699e53ee54d843153d1ef4dd086d64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","hash":"dbf4f1e95289bc83e42f6b35d9f19ebe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","hash":"2c91507ecca892cf65c6eaf3fbe0a7e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"a73bf48fadeaf5b28dfadc67ce067e0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"38a87ff489a47bc024400dc863be326d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","hash":"6e3924fcfcaa29ba9146915e7603139c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","hash":"6782f277d348804f26f7a748f647695a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"f9cf43c94d23a1e1093f4f1cfd789d18"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"43003295879b7dd8a2a4c221698815e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"945e46eaa95fb690603786f3b0386e1f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","hash":"c226787e49d4779d8fd575f9bf26e298"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","hash":"ec42ef810171a5795d12e7ae93eadbf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","hash":"d75f62f03297d8fada84de77f3e92373"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","hash":"0663e41383137de0068cc7a8bd70f814"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","hash":"5f0138a157edf46a36bd960b7eaa9885"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","hash":"f360aeb424700ec81ab3779a8e05a386"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","hash":"faa18ee55924a5c65995875c94338d98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"a0836fe16e69a1daeee421a5dd73f761"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","hash":"5be59a094b276fbbeb0a2255d1c45e2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"6b14a70bdd2f31926c1572aa2cba523b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","hash":"1325fce32c39a3792e3eeab612f942f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","hash":"dc1a141705a29df814f129c65b47b5d3"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","hash":"b7ad782f730522a58cf2946da0419352"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","hash":"04f2a3236f9f0080d5571041a0cf3567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","hash":"9e2940d007af19bd5cf177e3be339363"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","hash":"e08429988b4639fb29cd66bfdc497d90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","hash":"a79e2b9a182eb762fadaab05e9269edc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","hash":"d5c54cb86a7c6b930659e867a4b2fdc6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","hash":"9554d9749364a5e33fc853c08b09f076"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"e45e5a556df7d57dc9a7a3ff9b0370ef"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","hash":"3d1f01e5d64f01d4b5efd76cf609830f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","hash":"f23eb0d7ef7ed55d6331d493f0b7c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","hash":"e5349492be89ad5eea4187db08b2ad0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"b37ded4b59c2d4efd0802499d6944937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","hash":"a29ba6c14a2b2f3099b30d0ebc285446"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","hash":"d69cd05d9de1731242d357de56893a6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","hash":"037df9e7342fc8b812d985c8b6e8a0c3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","hash":"fcf700e37a2ca8372a19ea695ac704c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","hash":"1a04b09efdee92cd9f3e6c8f821820c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","hash":"9ab6d0a38467598c8e1f332648cff545"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","hash":"03e34b6476f2a5b43080c9fefcefe9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","hash":"a1c59f1e780c22ec4f0e14f6a1eab0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","hash":"5776e262e9291819ba2122854943ea6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"ac8dd5bc57b10e3480c7e09e9a209f69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","hash":"6bffa45d429f7b71ea59f5019bb83a15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","hash":"62cdba000bd3a2c52f31f32a38306c18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","hash":"54c7f23362a7e78be04b113d00022090"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"9d9d9fdb1fd92d1375e2e00271605fef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"f07906ec64450887d6ca17f705f436f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","hash":"87061e866d20d4a66d6990c36638681f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","hash":"69c4980a512a91477aa1a6289583342b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","hash":"9ab11d900c41a880b39e97693f383b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","hash":"831170e2856529b531c8648a754259e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"e76c07fd6945a4eadb2aeebf87b643bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","hash":"2676ae1a6e48da385bd3ddf0fa233a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","hash":"3f719070987790d062d9ec084da306a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","hash":"242d63b96e4a26d3b557a32d0a008a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","hash":"d16cbe643e1b9f1d249d52de66e9e399"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","hash":"9a7022bcfa03c67d126e948062508201"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","hash":"93d835e43f33ca5ed96e6e85a392c1e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","hash":"3d63c4213a898f6e0eb52cb39fa282ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"a5df6e3153b654738dfd5a67c799e6d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","hash":"737fc999d5d26218c34c7423fe061f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","hash":"4af79c5c69ccf0cae6ab710dfb84b125"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"cea2237f09873a1d9b1f818b1eac15c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","hash":"a617a91b12a3156406da1d95552aa4a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","hash":"494881558ae50a1d5273ceb66b43ed85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"1567f48c008c53e32ab90ac581eb17a5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","hash":"23a2722ec06cf91e874fcb8c534b470a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","hash":"70b1e13ee34c56eeaa448a1432a0b519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","hash":"9dcc50108fd667c7744d5bba6b51e1b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","hash":"4bc463f9c4b5496d8918b58070c10515"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"55bc3d14cee7b79419f78a7f2678d6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","hash":"4ba0a4163d73b3df00db62013fb0604e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","hash":"b51cea8017e3cbb294fe3b8066265c7e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","hash":"133db2e371d34eba2a099b23dac8123f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"39ae8ca0fa3f0caadde0497b84eccbfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","hash":"1ab2b4b439160093cb35c9b0c739bc0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","hash":"8d9c84de01d7084606586631ac759a34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","hash":"0cd5a938f3a3bf96aa0d7353906eace6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"ddd6579941605dbfd6a3a213cec979b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","hash":"57d7f8362700a89d0d0c97e7d517cad3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","hash":"405ff2b0c110ef10a33e496bf7db38a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","hash":"59137da0b55aefe8a4074891792a55b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","hash":"6b3c8cd4c0677edeb4fb8c22d923657c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"8d23c7f8747db9d1a851ef07e5107378"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","hash":"61f9ae17975d4d233db25ee3f27633bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","hash":"57a5a9f535e7c37d09bab9aca685dfd2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","hash":"dd4b0b0cda09094ced3081f462b2d422"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d63ca0c723f6a99572c806b4ec989036"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","hash":"4ecc0e7678d4ed3bf62a04b3e383e424"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","hash":"c517fb54b3d66b22988ad7c8d07c6f53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","hash":"59c4492b4ff3d2e5424c1903bcb8a271"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"832d4f6b469c388759ffcaf981e16f12"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","hash":"0ac907e2256dbb32ac0aff050f4045d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","hash":"55bb53dd4f9ed89c9ff88c204b59293c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","hash":"965792db4b01d58da64391842c6a9a1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","hash":"66f280c66f95d03902082cdd2b4255e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","hash":"5b4c5872973fd946c49c0ed7df0cb07e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","hash":"7d49b944ccc5ee228590126488731a95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","hash":"7cf8d9762d1f2226ea94a1c8ce1f7265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"4326580ee93b3a584477cc185146eb2f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"622fb6ce7394816d6eaceb396769c76e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","hash":"f1f175eff474684786b1b6980f386aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","hash":"c668a1bfe65f14c115a3294ac6502dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","hash":"94124aa8c115b3bc8553ba80c419ceeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","hash":"d1dadfa45cfe290ba6a9aca2c239e289"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","hash":"8355566a31f02cb53e7f9b94d8c873ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"7cbd45f5de23f600dd963c6eb31d6851"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"ea75ea73bf570ceefb21bed44d38a168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","hash":"07fa95aca6c82e2f15c0007388cef3a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","hash":"9a478fed4f2f15993c892e33f6fd766b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","hash":"6eb17212266d6f143295fbec385617aa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"597dc25df66b35f8b1f2ceb6a5df4328"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","hash":"bd08457ce7d378f126bea891f669b69b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","hash":"ef40ba86423f614b2b841a3a11478937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","hash":"d945f1b87d2191f38f4d677627c5e442"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"3b5a9eff22ec4a007c4983c5d145fd88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","hash":"b020749262d0d602700cd21e6f41acdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","hash":"af29a3ea1a69b956f7915a4cc29d4b89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","hash":"5d0fb3d359f4af000209c65b873ae97f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","hash":"19ad609d2f555c552877714f4b07f150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","hash":"49f3213e86d2bafdd814ac4df3d114ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","hash":"81e7d988ce6f8a20230e61cdac83f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","hash":"3d18e1306d78e114f98c9dc311fbf158"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"161c0b2bf8b65501a373115d3cb525f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","hash":"35c142ea243059f941a4a896a8e053ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"00f26750b380e279fd67c68c79734999"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","hash":"aca2926dd73b3e20037d949c2c374da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","hash":"a9e1c7b28293ccedf0594edcf59ec4b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","hash":"4181db4115c5cbbf774171b3cde1542e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","hash":"fcc4d991b068e4103c4ef152baf65fb3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","hash":"bd15738d49bec303fe3d234de40503d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","hash":"9a1e38007af02b923a4076ab4e989f48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","hash":"2d06e55a087b389063f0d5777e1d8563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","hash":"17399c5876a7f1c340f8814cbc903b10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","hash":"831a91029162697310005b2ad492c0ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","hash":"5f173a5c0de15909e95d3275051138c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"6267a1d85ca89f88f1b31c1753857593"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","hash":"4c00fd95f493a02179f1013a29629e43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","hash":"4b6bfd3301413140ecdae9fd2f3db0ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","hash":"c17706815151969aa7de6328178cc8bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"2ea5fc004c06135bbb80e7610df0a2b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","hash":"f7329cc0811af555900320e49bd9686f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"2228217b45cebc797d335ca823de5628"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","hash":"c3e3bdde1f486b799e08a1ed1b99c76a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"3cd10797ca791a0821b3926e6a5f35e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","hash":"e85b4f3cf370581b3ef11497a9a5bce3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","hash":"0b0a3415aad49b6e9bf965ff578614f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"6902970c798c00c3d9be3d38d84476f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","hash":"49b829330c9d1fa06c2856f5f2266921"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","hash":"e439e835e5295ba822d8db4be0508c24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","hash":"adbacdd68acdd5e35ce91a3475a1be38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","hash":"46b6c3bc78aaea7e746e7525f097c370"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","hash":"c20dc5b81ea6dddfc61f66c603afd971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","hash":"5239ca253366a3b71796f8e9d2baf065"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","hash":"1a8e27f4b3fbcd0df1fd0be10f303523"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","hash":"b1fae9295ede41ffa9f747205458d1e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"93219dc70f767a24408583015695d38d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","hash":"8ac537f4af05ad812e8cd29f077aee24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","hash":"8cbd679f40c3f8e0bd00dbbd6bfb8f79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","hash":"35c9371cbb421753e99a2ca329107309"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","hash":"bfe2918ca374e53fa6d7f36b62298bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","hash":"5e99407d87eef382375ad62495706f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","hash":"dad9796d04d76633de091aec36be71c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","hash":"38d7929920e46438585ed549abb3690a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"11700160ac26458c7b8f858dc756667c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","hash":"e20355dd45521a6de91669be6cbfb3a3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"60404027f0989ff65bec1d1afe1b3866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","hash":"21bea147ac9531ac715cd99a07f55866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","hash":"7050c8c94b55eb51260ca54708b460fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","hash":"d39becdaf9cc42e3efd0c9cdf0034ac4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","hash":"4b59175aa026b6fca1ec88860132b3e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","hash":"579bb0bd41c172690d80937bc1ce3b4c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"a65b42d17e5fb18d7a4677b1cf7a580a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","hash":"0469c2fefb6084f264cd0df8bce7263a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","hash":"39348131fc86fb08a42dd6b2d1b16bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","hash":"c9b70f4004e9ec7f0856ecc0e45430bc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"b041b21cf2748b89bf2d86fb125b1f11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","hash":"f2698cdf4b07ce88e4996e23f26cd0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","hash":"8adb5d78a35b1e7a4653c7ad239bfdcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","hash":"f28a95b717859fa14ea8344e766e7fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"3f01af140bb202c673d2e8ac00cd9c58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","hash":"5cae30214f9509b4b47641f1d38b7fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","hash":"4a9817f509bb8eb7192a89fa9aa015dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","hash":"96ed4c0b2ac486bba3db2c5d2a96afc4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","hash":"8a2e692d7adcf4c9e0bd0f85979ab7c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","hash":"25ff828118233f5852e97c3e15c2a5da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","hash":"88dfc3805839516a8f89ec1a963e0f08"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","hash":"ff402ced5472590045b91c0f30e4b089"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"60109ddf7e2c458b410cbb55fb79fb2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","hash":"6a38c376b8edbead42348c54f9f12420"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","hash":"b842bb3a72f625b3767794ccc25e6e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","hash":"7eae5454728dc152e90d36cc6b715544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","hash":"8db9443001d816c1f89abdf5bc0e7c7e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"53e9b61b7396a9fd3a94e7b7e33dadcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"9297b44982d52dd6e4fa751a8032abdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","hash":"77fe24649991a149ec3886147da46e40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"2285a845b6ab95def71dcf8f121b806b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","hash":"210257ed62edd783098ed34d7cfb0204"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"0920bb7ad132c49aed7f943decb1558d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","hash":"32621d3d5949612fe2c614d37bfaf7e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","hash":"d8bc65f055ea77fb51c719f8239bb878"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"6a7f49ff645804c67a62656a0046ca5d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","hash":"c932575d5afb22daa2456a44889b3cdb"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","hash":"0d0fe87e78a361739f89e10ad6e472ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","hash":"46d014f5f4ff404b81098da9b003b770"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","hash":"ef93f78a8a380eeade385040b1d075c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","hash":"5a11d4662fc61ed2bd835a4e6bb0f47f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"6c0b758a4a7b8966ccbd64932d1ceefc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","hash":"087f211902225140a323fc8295c9ff6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","hash":"30b3454341d40c187ec21020db3a495b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","hash":"5bc3c944f62b4cf5d382a0c0e9b7e09e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","hash":"b9d74f9b99fed32e71f391bc43251c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","hash":"47eb0e2b093b486abe563cf677b04f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","hash":"8388d5e13155ebde873438c26dc4ca33"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","hash":"82509444e485e0132bb19037ec94eb07"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","hash":"dce5e400c1f0958583196f9db05de7b9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"5bce9844f08a797bc490d255999c44d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","hash":"01c25b2dabe912c532a94956c2e40c8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","hash":"87bcefcfff19652ad296ec7005799840"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","hash":"88f7d904c8290ecf9806bfaa4eed2ba6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"b4285b9bbc77e4cc655cd8af92485b80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","hash":"c679024d7048e142ec507a2278764161"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","hash":"d36205839f51ee14bc2d832726c52853"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","hash":"4000f838484ff00d0994bdc1d215d359"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"c8fbfde647968a9750131e39e57d58b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","hash":"89ca6560d39efc4e7a136aafd44f8e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","hash":"286726a4ae635c3cb149cd640c3c096f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","hash":"0672d853d5097a03eddc7dbe558eeabd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","hash":"9be7f7af9a9eee6a84b8b3892e567a28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","hash":"13c8dcc201f970674db72fbbd0505581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","hash":"8dac3815609f98dfefa968bc2ea4a408"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","hash":"6438480f29034a2c6acd5817c656d94d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","hash":"d7be13ee7803d293bd92452e5ef3da27"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json","hash":"eec1dd105eebb8dae5c271e94f37e82a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"8c1da8fe85a78738e78bce8ebe3ccee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","hash":"6905ddd5343384c6898473c3d0a553a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","hash":"4be027cea386e739ab623a805182646a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"431a6eb92e625c69732232c905c8b91d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","hash":"25feac2cd9c96cc475403e601757cdaa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","hash":"b31d8b7fb97262fc5eb62171864c5c80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","hash":"71eaaef10eca13dd60c5459f65db0e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","hash":"e2855a4f7db421253212d56a277c54a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","hash":"443fe4357544b85c13ef051cf37a602f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","hash":"49d6d829ae481b2570a290401389d149"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"c87e92035314a4d3e52faf886355d0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","hash":"cd103a8b0a9727840f3bd8bd985ad677"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","hash":"81926da83d9ea41cd5ad389174aa96dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","hash":"d8b980603638367071e1f1c256ebd56f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","hash":"fab8d6d1b0e81315a3d78131394d31e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","hash":"4a83689a30f6283c87f680b4c54bdd91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","hash":"022ddffcb01934fc1b0912fcb38de832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","hash":"1b3ff4e1a515487aa9ce23ae7fec0100"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","hash":"8f29b74ba6fa81721ca1cd98cd39ae4d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","hash":"18e902c0d484a6a2e0d68837fc5f003d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","hash":"496db2c69d4976328873333551077fb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","hash":"bea1f59f6923a9f56c6d7b785887caab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","hash":"c55ebccc440e68cd5b9553b5cadb9781"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","hash":"5ba6e004392bbc498c40ccb026b0a845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","hash":"a8a7af5aadf8748e4bb6a28b08be67b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"c83781cf0c38883486f707cddbb96773"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","hash":"21ceca6b2a9506768e08af4b33e9879f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","hash":"40156e00b5f6a885cbecbeb24e74f299"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"1c6f4bde2f41b6d50498e3026f24dd1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"6cb8f5330e475639e0972e210094eaaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","hash":"3b16ecdd5d54828bc025cb734031d11a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","hash":"150f91352c1070fd5f15a65ba10e9cda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"d0529dc5607a93f7ae3794cf396953a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","hash":"7c57a9163e2c905ac90a6616e117766f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","hash":"ec94194f35d48443f468a3b06ef69845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","hash":"e7ee3c364551618835ecb4e3afe065ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"ff0c28954cbb930913ed52a41f11189a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"aff356351126de3409e033a766831f87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","hash":"9bbe69dd9a1b6e7cd87210c8fc19314e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","hash":"868fd1ae52dcd191d04c90dc4a26dfac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","hash":"cbde849a0d8b182c6b30098c330308bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"379e8b5009f9922662800bce4a40fb6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","hash":"45a20da2b86984fa0b29030dd190c75d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"5d09262a3e0ca19a25f44e0335d37637"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","hash":"a0f12d72bbc64d6edba6d1174d5603e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","hash":"a2af4cd8f82efdc948caa14f45b9fd70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","hash":"a88c6c3bfbfabb9924b6b0c3475f45b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","hash":"1a7fe7a35dbd168a7f2e10065f4a3158"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","hash":"f28d182c1372142b6a29e43adcfa8339"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"2ad6e7a63593e3a472515b373c9aa8e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"8269f2342a47cc46669c8b5262876866"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"b4e737c00450df676724cdc880825116"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"7c4bc9f9bec60c0636f78923ee1d4e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"c23d3ef5560b43a8b8f04a3857bd6b1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","hash":"6f060a03e28c25d797360a2375efa878"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","hash":"3d2b72757d0604ae307bd71ceb16f6c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"a46436908bedbddc369b95d0eb67c738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","hash":"0e01c8fe91bc7e95b9b3244d2020e07c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"221f729a18a7fd7d280e87a08cf7ab79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","hash":"5f5c07df31f7d37780708976065ac8d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","hash":"25e4e5d3bc90a692c908c5eedaaaa97e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","hash":"1dd695066bccfccf510bb80b2b137ad0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","hash":"a10eafbc71350955a16e4e787402780b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","hash":"5c4a5af039aad32f5ac9bdbfc1536af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","hash":"754560d00f3c24825e656e9d7e03fd6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","hash":"0ab8c6ae2a539e1eee8cc8e4e7cac2d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","hash":"1a8913505e5275e2ead5a2e0752d1ac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","hash":"dfa5338b5b93f9705e9f756dc0327549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"309567ad87eda6c4d2933dbe4250d136"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"4bce21ce9b0374571d7d8a49d4a0707e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","hash":"21e56afda1f096f0425a34987708ed56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","hash":"9147a0ebdb209d3da9ae7cab703710fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"30ab21a111fb8d1e3b9c67e83fbd9efa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","hash":"58f14973ee61401b0bf79de491dd1e69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","hash":"f0cf3060fe907fd075c49261e69b477c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","hash":"474476ae5db616e0ecf5e488efa202f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","hash":"5d142a0e36f1ebc5b5f2a7d03a3c6e1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","hash":"f3747e025d835d0ff5cfd904d925dea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"73d837564acafc178f5bf73dc50994e0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","hash":"586f82935199530ba7ff15a9a7cbe00c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"b6eb01fa913a0828787c31a1a01939fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","hash":"1eefc5159733d48f56cef3c8af7b4c87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","hash":"72d27451431aeaf0b4f073a66bacf00f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","hash":"68634d4df864077f507d84d92953a99b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"af6f0ec90bde68bca524edf6a9270e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","hash":"c18ab890f45960c7227edee678cbdf70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","hash":"9cc3bc193f4ba15acf07b6b1d46d879e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","hash":"09e8efdb71459824758d4bcbe6bdafe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","hash":"e8c1fb168963c9e062a369d72d2dad6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","hash":"ec3a274c8e6537ec92c8d5f877a670ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"34db9d7c9ebc27ae8cf7b0284f83365e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","hash":"7711f4b6c3574cec77169f2d2c35ee3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","hash":"5d10ebcc18f13e0b7d4ba4f8b3d2eae6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","hash":"d75fe23c75429021b8f7fe4e57ac5d49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart","hash":"accb24637ddbe55d7a3f76e4618bdd22"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","hash":"16115596ace5bc18b10c61743655c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","hash":"84fdc97cdb402f94c301f5154682112f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","hash":"da654b6ae25dd581a1b5f1084d769c91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","hash":"873f842bb40bf6525129af58dab2e62d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"84bf57329e0844bff959588b675ee251"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","hash":"54b556c56a02a636de1790f953f298bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"949628e68d078ec5a0a3f998c026d556"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"905820743296f664dcdf79064ea08aa1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"9bdb8226a64b47b9b7ed09557fa63ee7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"b76c005aa044aed1637709e0570a0113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","hash":"c676aa7c12f7153ddea49c1316ea9dee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","hash":"4171ccc0ef5ccf7a3355589667cc0450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","hash":"fc5bd8041afab0229dff18f2011a51a5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"4bac4761db1aa945a1bbf1db8c88ef92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","hash":"bd81c6cc5eb829742ceb3a955cd852d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","hash":"228413c644cb471229965818da205c6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"97abce4f63be03d0be5b79cdae97fb9e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"af985de6a8ba714f7841d5c113505205"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","hash":"d96646e5f342c3ff58625f7edeb8808e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"67fc3252c5cce2788c332809678ad2d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","hash":"7c666bff17f2cfae821f93f0c5e66a64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","hash":"41540e398bd3cd471052b5b4ae735519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","hash":"d7fab9eeba6ce2b3fae0a93d5622ac93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","hash":"fe0f3503d326c72bc31945d24f76946f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","hash":"bd502c5f75cc8148d708eb3e01c02765"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"c42e90dc6ffc511ab7c13ef0cb2a26dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","hash":"9b97c69821fcffb65a844fb60bc2a4d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","hash":"7c90678e488e43e059394cb44fcf4b0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","hash":"c050fb9d5c851547735cf2c46d8b6288"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","hash":"523ed6788c525699c2e2d6e46531a727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","hash":"34a4d340931147322eaddc77fdc65c22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","hash":"075ab668569c4b788afdcff8d81027ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","hash":"95701ee376845a2050d29814b7acc7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","hash":"0748bf03bcf37edd1d571959e45a5cc0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","hash":"561daa1b637bf14aa167a49b8fc3ce6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","hash":"95adecf7ec0db3c154665406582e0513"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"62ad9c129e91d2abc0d91a21502b8549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"46be5e56014db4fa892e3a949b0904e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","hash":"ddce6034695da8c5dc36994409d26189"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","hash":"ef56d0c30c2ebbf770de5c7e9cd6f6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","hash":"1dfa85bd16bf08ae91f9cceb02ef1563"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"003151b5bb4558f1aa0f19f3df7a951e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","hash":"e8911b74c8d90dfc01657354e57d0fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","hash":"24859dec1c12b4c2fdc95d38eae72d1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"845d1a208239b202dfdd9191d3135724"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","hash":"d3b9d47acf4348262c7c16ba99cb7412"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","hash":"c8ff0e27e7c87256a90d8a3ef24be6ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","hash":"efcbc6fd4212ea81281561abddbf29f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"df46c653437bf00620cea97344801eb5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","hash":"d006dde8fd90189f533f571d02092a92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","hash":"ffd004f95154cc4fe026271fb8aed8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","hash":"6c78f0d015627004c642ba4e7926ea9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","hash":"d5b1d01f918c452585a990bba4c2b919"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","hash":"7a90c412256380506eecf47a27178c9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","hash":"79198336b26da3116eb3cf2258e9f72b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","hash":"ba0c8dd8a234a449050e76d22738480f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","hash":"be2d4c688f4ca84e68eefd04fe0ed129"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"ebb87ebc9069065977905a746c9b58e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","hash":"b92ed7d96a5284441953017edb47f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","hash":"7d8e8a43fd286d637f95a0510b0d3c84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"a2cbfadb5b6c248502caa312edfacd90"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"a481b9285f5d63f04e3b3e3fc2a6b44c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","hash":"e82a9b67ba33ae635b9b083ef147fb9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","hash":"7cfb88f7da0c2022734fb4c438317d95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","hash":"274291edc62b938ad94e61cec4a14bec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"1c33828dcd05767f74296ec81c434a41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"7185ead1c4c9a77b194615cefab7b748"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"13bceb5508fcefacc9ed46137d43844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","hash":"fa9ae6c732442615050e9a8b5f758a2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","hash":"1e4da3528271172cb17b59a72a37a57a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"9c47ee20b0bec5232194ccc58e9c10d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","hash":"08b1358e505b0414dc60489b750ba2b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","hash":"c3ab437aa0b03081adbfcdff7755b358"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","hash":"5a65f8839771af0fad5b2cf647703264"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","hash":"46c7ae5490a6be7f2a049c4d63947eb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","hash":"9979b67c6fdb803b55c4628af847ad4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","hash":"d6f045db9bd5b72180157d44fee9fbfc"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","hash":"fbdffd3446228c3ebe98da002c72cdae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","hash":"942a7879522bdf82258a3383893665a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","hash":"04f8b421d5eb5043e825cd90ce965dfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"35dad89aad6233323de7de29603c8779"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","hash":"9e5f67e1d8edbcd97531a8377e706d71"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"d85ee275d6d507b9d66f4c2b0be0cf55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","hash":"04f5ef7c69c00972df33379b395df1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","hash":"681b70272ec68e757f2394c9e7fa9398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","hash":"da57aefc2c06656b68f2bb2639e78d33"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","hash":"4f05e8a4424e66fedd1798178f3fbfe4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","hash":"94924f12fa7b796f938e6e2889ce73f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","hash":"f5c5c30697f88cc221f8628956b28719"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"07230264b6ad4306fed087103930fd35"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","hash":"e335de991d295627ccaabe152db13f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","hash":"ae4469331dace367e6fb978dd7b7737e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"1d2690772afa35d8cceb0ee976c0874c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"2662f3733381d6d79c43406d15366240"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","hash":"623a5dbc96b4107a93ef35eb90184bb9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","hash":"74801cb491652ec4ce96fe1f4646836a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","hash":"c2593e65f1a2367d83f0668470ab5f61"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","hash":"c3222af7cfe52a6fee04d1bcbbf52bc8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"136b08c4413778ae615af5f45d39ed93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"1c23614b3a58c2cc762d1a8d9b668f3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","hash":"f8e8ef6736cd88fed6f2b5ab9b5919ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","hash":"59f3befbfab8a823bd8254bacd7cfca5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"c26b7654abc187a236c2d353b8e9dc69"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"801fc719bf0a33dbbb7b4cd7ffea9071"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","hash":"e4ee21048ab83cc50d61ac3784afa9f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","hash":"017129b89f3045aa21d9a8032f5dfec0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","hash":"60fd6d17602ae0c1d18e791d6b1b79cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"831b750639e83372672565fe47d9dbed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","hash":"e2368d925d056674e11f6d6a98ca995d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","hash":"9955b767fdde0baa759d3431267e5ed5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","hash":"ecca8d7a94b7a01ee70af109474706b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"90f13e00da93a85fd91faa6d3690590f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","hash":"a064bc8b49ee4e47fd7b996364a8469e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"89db2a81afc124b1661794f9e43252d0"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","hash":"0e088fe1d0cc2ca8349ce2050e3a72c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"034c9a74f518b43df9ce8af9343c11cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"a804030c1e487e06d01f8d87c2ccf38d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","hash":"babbb3f671be31b0873312c521c475b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","hash":"30bad556275cf4f7a39d50f698375871"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"825b4e65b06dcc1b8822108f596b56b0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"a034129eebf55db99d756d8271a91c97"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","hash":"387ff7f9f31f23c3cf5b17f261a091bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","hash":"5c96fe82a9bf2dc00db9d93c2c0a41a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","hash":"715bccb8e9ba9889573a60bf0e457402"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","hash":"6638bd2385fd6ebb1a4f1cdbbb2f3969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"e0d43fd1f12dad7d0e992390f53c4b7d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","hash":"14ca92a49cc066f7dbf04357098fef9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"67d16e841606c4e5355211fe15a2dbfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"424a329d443a5c28fbddf8f9b7ccd6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","hash":"5b388500640099f7c700bff344f7bfa0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","hash":"9a406aa6da2060e742c7440f73659eec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","hash":"831f10cc3a34d37027e629ec7f71f563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","hash":"3a1d79b051bd693ad652b0f905ff1588"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","hash":"3d09396dae741c535c293314adc09565"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","hash":"4f1f767acd1c594d93de02e64baa085b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"d41266a023506a636336e4579948d98a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"cf568490e5d5611456b13680fc1879a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","hash":"e0469000d5e6f512d2fccfd97145c727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","hash":"a1f47bfa90f0153386bbcd0c4b16e09c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","hash":"41779ac2d34c473debfc06fa1fd8e35e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","hash":"53ef1e482a9021fe353d68c9f8a1affc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","hash":"c36f00a660d9aa87ebeab8672ccc6b32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","hash":"83dac2837d1d165e262ded0d509dad38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","hash":"d3de5e8090ec30687a667fdb5e01f923"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","hash":"a22d810ba989505f23b6be0562a04911"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","hash":"fb76e9ed5173ac1ae6a6f43288581808"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","hash":"a5bfe2d6591e761bf3c5dc0cd4ded99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","hash":"a37f990d04ff900045c5ccd3c941f5c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","hash":"7cb71fc5981509df77a8edc6f092f688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","hash":"adebe1537e162fcbe4404ab29e94fef9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","hash":"a47b8729b72b77cd6b5716ed37807a11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","hash":"9b43d6f9384a837bbd0d8474e2365c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","hash":"91921fef1791885b747a338372bfdede"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","hash":"61e938fe770ed7331e39f1dda1b64dd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","hash":"f05adccad12249a4f175efc9b8abfb37"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"3ea9e90b1b7ea7dc0acdb26f45a3d632"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","hash":"ec861ff382ac91de0423cdbad2bc79e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","hash":"5d4ad6ba64e70985334d2403cee52bc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","hash":"0e619c36f088b986b65eadb12698abb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"b62b9e4874beca4adb96d6ebfd8e8dfb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"6da099b31166c133a52bfa3ab7a1b826"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","hash":"0949b8197a6069783a78f4bb0a373fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","hash":"86c831032521c6aa061fb1b873692e93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","hash":"1e9ed9cdf00b9449d9b72dcd00add4d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"375378eb6cf9297d6bcfe260059193a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","hash":"157d1983388ff7abc75e862b5231aa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","hash":"02b96169889bac260344fa44343235e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","hash":"8608080cdfc143d462b0f9947dc0d7c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","hash":"e105e8d3303975f4db202ed32d9aa4c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","hash":"14ee798b10cb318d96667b32b245f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","hash":"4165baac3466972c71160f4aa15cd185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","hash":"740f17823564c3c7eca15bca5c110e17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","hash":"89d33d0234d19d3c731fd91e404d6a05"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"3dd13158e97d592fc8a1ca4a4109876f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","hash":"b7c07fdfc8aaa762f93fbaa316f728b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","hash":"6bb47d3d823202b76bef61c1ccce067c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","hash":"2e4ed6d32990cc6890679bc3106091de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","hash":"8e16702463aaa9f1da9da189aabae66c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","hash":"f431b0adea8b20849685931cc40e3915"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","hash":"0164a8b5c6e9dc7c80e1c3118804e959"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","hash":"332fc1055d849f61ff8cb6ab6a919d1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","hash":"003f7e979253f87844d0f222365ef6e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","hash":"a8d03ee07caa5c7bca8609694786bbf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","hash":"e72dfdd64a9644296cdccf5ed0014b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"7fad76f2efd7c1ca00d133371a858957"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","hash":"a5cc220cdabeb76d85c3b4dc5a031ccd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","hash":"49dba21de16234aaed28f8fd898543a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"c765c396bec265400198de95010b78d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","hash":"82e64569c28ce30a19726e5c108b98bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","hash":"10fc2d0e5d04abfdc83363ce6cb6fe91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","hash":"6c1b7903629a7ad4cb985f0898953db1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"064b2b355879e55d83ea0844d55cb10d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","hash":"6f731bf22ec9178d15aabbcf3191af26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"c9ce5d23dc55a2e416a66ad883081c57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","hash":"c7e489fa5d00c1717fe499f3845c2abb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","hash":"b2b96fda3b5d147408ecb71c2bbe73a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","hash":"29d2a4744cad0979d4cfdcdc2c1a6ed4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"b23d25ac5853c83cde0f5209e6b16ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","hash":"e5bcd7a024c4e2ae08c2090eb3188117"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","hash":"ef82a025843a9945bb252078a9754fa4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","hash":"e7ca145d8d308187bc0127bd941b1759"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"8a61c7c4e99012849616db63dee00a56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","hash":"cdb411d670a094822c46ead81fc1c4f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"e2f190622bcf6d345dc219a23d165479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","hash":"a7ac3293430577fa9c028b0df6607fa4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"866257a42b6b721549b351382b365c47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","hash":"75e9e8da5881b6c2ebedc871d7bbc064"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","hash":"fde2b1b7d744e3606529be50acb7fded"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","hash":"032c93433e86ca78b8bb93e654c620e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","hash":"63190b810e77cfebf3de760baaf59832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","hash":"bc01545a1cca050f2067c0b6163a4755"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"f43905031af706d47bbc7474be876e65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","hash":"17488cbfc8b9ee2e6e5ba0229d7c21a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","hash":"5af5a2fb59f9c015abbda254a35ea7a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","hash":"b072cbf89d933994e62e5dcd85904f89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","hash":"a68ab99598e72a476132676fc97db138"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"c50f12ff54e3d508dd127fa9527d2cd0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","hash":"ac01cea599146293f3f31bf7e74f20ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","hash":"e64d63aabc0975a7e9fdb384598c2f8f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"8ea7a3c5835c772b1ec522d7a9a2f3f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","hash":"bf63ca39ce8b824fac21a27027981699"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","hash":"63d514a9a3ce059cdad1e7555c6f78f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","hash":"9bc97679b42c8f9d40f4404ed4c09c7a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"3506be7f282b7ad6ccfc4545f60a102a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"e3a6ed5db61fa0508b100c7de6e6b3b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","hash":"9f58d6e1075d496f55361c6c4131d8cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","hash":"3ed75a2d11989988d6b1ccbd0e6e4192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","hash":"b48ba72a2d5d084d297c3d78e351036e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","hash":"feaa27101434fc1590c19d42ec8b407f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","hash":"8fd3dcb7f8cb8e00140c18d63a6f6563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","hash":"5b93f82cec5bee5a9d1fd45af7925f8e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","hash":"b4446a7a4d053aaa35a7bc6968b4794a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","hash":"2144f1538d27dd9b29dd135d74059120"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","hash":"ce0d3155596e44df8dd0b376d8728971"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","hash":"cf36475a46446a35cfe633a6bb7bef3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","hash":"f176d4d0e0b6d9e454dc1b0f0498507a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","hash":"48f954e66b945620e43ce8e9a8891919"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","hash":"c9b3f620c35ff8f48a223137f4bd0b2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","hash":"991661529c5ea50cf40031f5b74929e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","hash":"4b495ff6681b3a7dda3f098bf9ecc77d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","hash":"1ac1f41185397129f7ea925130f188f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","hash":"b7c2cc8260bb9ff9a961390b92e93294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","hash":"8b5cb3dc6abb215b0a48c2d3c8916ca7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","hash":"b2015570257a2a6579f231937e7dea0e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","hash":"a284638498c103fb78a89f30c62a910b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","hash":"f87e5679793d9c81072018b428dadb8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"8647b431edd330ccdd54d29cbf151428"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"a400dfa676904fa8a84c48146ff8e554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","hash":"ea8671768e203429e3f57e5ae151392d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","hash":"19ad3f559f8a8ac66bbf9a697588b5f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","hash":"9190f2442b5cf3eee32ab93156e97fb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"c9aacafab7d9435e52caca900d06fb30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","hash":"6f053637ded96c67b342e6a80e7372f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","hash":"187bca624cdda52a572fde54e8395124"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","hash":"95235ba0d55efc617c0d84893f46390b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","hash":"bd7255b381081690ef082c2edad8925a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","hash":"60838abe37c945cf06c1b5ccc5066fed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"e08b5b6808a44e8eb4aef327f03d7bd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","hash":"00883d18f109cb9b8f09707e277106c2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"7a5a4cfd5f4cdd5fa194eb6fb3e5f0d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","hash":"0d86d4ba2e01e5e62f80fcf3e872f561"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","hash":"9cb135b4df76771b089723184d1833f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","hash":"bfb39b98783e4013d9fe5006de40874d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"f36086fa85e4e44adb302e73a632289d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","hash":"32c8f2d4dc53cfe56f5fa637be2c52e7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","hash":"903af109d740b48230bd021be6a1f40a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"709419e524637931a205b8fbf863df23"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"e39c804b77ec1bf1f6e4d77e362192c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","hash":"dae10e630b8fdeceb998484cdd66b1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","hash":"3e93222dc359a938c1354ba486d44244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","hash":"93fd05191baf9bfae1ae604f67d953b5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","hash":"3aeb962762f803ce0a8cf4b41c1f7433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","hash":"a1e4de51bdb32e327bf559008433ab46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","hash":"5489bd1170add17f6d3bcc248b5ed048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","hash":"a62996936bad6c27697a35bed070547d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"d49f780a8376e0eb08900b1c228f99b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","hash":"6722e17c98e37b4ef1b96bf4b17d9008"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","hash":"f25bbc73708cc35ac55836cbea772849"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","hash":"3235bc280cf19dc53be8f10c56d89beb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"78a8f569542cd7fdefc8c08a7800052b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"13c18d19b29fbf6bf4c1d966f02612ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","hash":"79e0746936aade828e4ca8ebe242df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"cdcdb27f29255236e15a1bdeda1f5042"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","hash":"e9efc19a02ae3195574f6fa743603b00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","hash":"c3d1be29f7dafb22509e2bb8064d512b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","hash":"87ee25bbef5b7cb7dcb056c3ec20f243"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","hash":"2a68e6b288e18606a93b3adf27dbf048"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"82b0f024c778da9bc6ab552492e02283"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"3b17883e6fa707ce015aa0d82149c0b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"66dcd42bd6d7ebadec059ca047e8d7b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","hash":"c771f26d18f9897af0e13e3a2c83d5ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","hash":"d970423c6488cba52d3585e0221e57ba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","hash":"e072de1090ae76f1e07247ec1eb11180"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","hash":"58031f960b575eb0db526bf49b706f80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","hash":"0ca8410c364e97f0bd676f3c7c3c9e32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","hash":"08a0131d87ba3b2535a2de787086a3d6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","hash":"f72f7c9e3a3971fdfd58d38c94b4e005"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","hash":"1216b7dc6f446693a3fcb9a566b94d94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"9628979f9e240d20f992073c54489890"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"51069c14005cc63df73f7c8db5520f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","hash":"a45b41e12ba5853543f707ce7dbab9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","hash":"2fe2bbd579687d09b982afec08e8e688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","hash":"dd8517aec9099740b2b5828bde8d33aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","hash":"871c4029c43c6dcb8ac9ba8f7799d310"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","hash":"12b8cbac25c7ad95ce53c2f8869a1b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"d2be489820a1fa5902a27c621661ad7c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","hash":"c64b32c068f0d8679ed2b8d699659780"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","hash":"6fbb6ca5fe49e7940262f00aca378c21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","hash":"395f07418a28b12b0ed665f32270d702"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"d625d9716f694dcdfb87bd7e5fff5a5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","hash":"6c49f36c204d9c39ed8344462e4342f9"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"0a36258b539c8ead1f09b8c02cd25ca8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","hash":"312e69b666cc1e860274006e86688bf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"238464b246c0e0f60bc0fa9240909833"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","hash":"7e38424729d139f4ac1ff5183cd59303"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"09325621b84b25497a2d19b7f3636884"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","hash":"27861bf07d93c8ef6c716f3eefab80e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"29426d64d0c201a4d7e7492434b13463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"e7570a19e70ee3275cf865e4a94f7830"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","hash":"724dc321d912dc0a668feb06b1372944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","hash":"e9cc91e4ea4141722f1ae9e087afae63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","hash":"af7b5d8de0c9d9df88cdffcae9d7c959"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","hash":"5cd1085a16b9c9c707d90ef04d1d2eca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","hash":"6f195c37321b26f8f0f0f062f4840dbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","hash":"5ad121ce46b5c0473bbe34be6d5c0913"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"2ed82d0ee4672e99dcdec5652737899f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","hash":"a8f2c6aa382890a1bb34572bd2d264aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","hash":"f42009fc52ad811f1d34405961c63183"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","hash":"da6f500c03c005a207d38c1daf24b00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","hash":"666073cafbc9e0c03a3939b99ec35aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","hash":"b7729342f9613bd823c71f9c12c680b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","hash":"95bedb83cd5b163e43b554086b016380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","hash":"b11666131177a6ebe97ffd60e3dac32a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","hash":"dbf30b29dd78b529a26b350b5866a849"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"4a77eafe460177c2a7183ec127faabff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","hash":"3f3808e26505133190c5b4890cdd219b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","hash":"d623b1e2af43bcd9cde14c8c8b966a8b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","hash":"bb91546bef7cceeebfb3a8a941c2bdf3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","hash":"d53c45c14285d5ae1612c4146c90050b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"a76cb94d79d126e32495b08461c0fade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","hash":"39d3054e9c33d4275e9fa1112488b50b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"09d61fcdf9f46b71982cb8d96f83293a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","hash":"d0e1db4618e688ad41ba325f1a35667e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","hash":"9812b8e536c69068c0e5f3d3db20c140"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"5846366e8ee69a93afd904b47023c592"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","hash":"aef722a64f462b84d30dad6278040fb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","hash":"d2e52f81da2329303a3f9d4b369c3320"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"b1ba06c6246ba2995265e837f355877f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","hash":"587b84f3870ec03b89adf24294c481b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","hash":"18c04a8f8132af2c1b1de5af6909025c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","hash":"0298dac3221d4c6752b6207594e4f470"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","hash":"9b43e915daf4ff9e2b753b1a5b63f8ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","hash":"d9d40cd4fd7e692ca4246d952d48cca8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"9c7196e67b951143d548d72aaa0e75ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","hash":"ebd9dcbeebab7ad717e6f7efb6a47f0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"096a125e0b6d03283fda3959aa657e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","hash":"46f06f2d32f61a3ebc7393f1ae97df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"6929256b551547547eb9a99063ebf8c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","hash":"b6a30b7ed48f83f446db37577b30e62e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","hash":"70ba25c403724d1332ff4a9e426d7e90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","hash":"0b9138f9bd3068b518494cfee8627cec"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","hash":"df5feb64564460cb6fbf66040c56af21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","hash":"5c81dd07124ccc849c310595d9cfe5be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","hash":"f301af2d0392296f456363085becbf47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","hash":"c72923f8ad46feb8bcf25ecbd0379294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","hash":"907dee395c762afbdcd8a23c105e9cff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","hash":"4cc8128599d4dfdcbd699b3f01d68904"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"7f25b2bd2302862c55aabba7dd3c09fc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","hash":"6611268c60b179280f53b27a039a7534"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"779f0f9d19f3df6158d21a5a53b647d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","hash":"10bbfa83fe7c3c8f8a4964a3e96e5b58"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"fdf9dc616423b3c0ab7989c88009cc99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"4cf81f473e6af6b63729d72f41fe712e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","hash":"99eea31c698ade1eba0c70780f4c3c5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"23f943341763db27892796d556bda14e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","hash":"5f8bbfd23974ae2842d3d03760b98f99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","hash":"2cce8363d2a5751ae45bc5d4ec6685bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","hash":"671e5f26fbf94b9d5a70b14c8c494760"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","hash":"0c4386f8def5b3a82bf0b70090830314"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","hash":"17d0af2d98e9ab4734bc194d1e51250f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"cf7437085457da7c8ff7640c616aa417"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","hash":"4230059d9b32165301d8d2a329a9b40d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","hash":"0fe1cfc6c971ef6b8e64e31b7191038b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"dc66fac5835e7c41dbf08196ecec0fb5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"8ad25d6c38ddc8ce7abb828b97f4571a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","hash":"7398500b1824f6043f23e208cd993866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","hash":"5049b7e67d8857ca6cf426d6ae4dc463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","hash":"5872689884d3985685f0239a1f89f71f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","hash":"b80f25d51570eededff370f0c2b94c38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"33bc9ed6bd7be95c8dcba0df4493890c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"7abbdeed33d601184a5c3ac2241419a9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"9d9d9a9d3774ca415e26cb71c8e61bd9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","hash":"f272765748612511f27420ed9ea3713b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","hash":"37b4a8b2d509ad6dd3f486053edecb3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","hash":"2b5fbc54f77ca9c1e5ac90eb3c242554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"193df360dab90a6a68f2420ca582de9b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","hash":"53bc475948e97481418f115d2ddcfcb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"add063bad189e77e577fcc88330caaf4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","hash":"4c5be09400366d46c996eda73c757b0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","hash":"016791e9b80688ca3eddaf369dbed53c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","hash":"ca4cfb6538896636dc198e3b1c1c3ab4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"97f8d480ec6ac1778506d29f498a1e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","hash":"dc69aa43b73c7a61a7d20c82ac98cc36"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","hash":"8d02f5162c5a6fbae770f5c4f9ddf389"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","hash":"73cb6deeb88fdcc320cf8e089d51531d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","hash":"57adb1ac7ff40f2fd9512ebf09281433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","hash":"ca96fbf1a27d4f30ff02bfc5812562a6"},{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","hash":"b94716be37a0ef1e0dab86e6fafad548"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"6adf728d8072ae68769a63c0c6b063c8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"ebbf8ed4dbf18812821ccd98920dc6de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","hash":"9d0390331a2be3f7c018dab8bfa589de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","hash":"c60b204fb5e7d501c0addb330c88d2de"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","hash":"d97475e890855715d9a38549737da4c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","hash":"bb38ea979910b96581f1f8e407cb9e63"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","hash":"73b8d199cc00486354dda26a4d8de371"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","hash":"4bc403cec1c5846051bca88edb712a8c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","hash":"a82741847c5177c47adfd428a1583744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","hash":"9307caba73e148d13a0697568f0ad971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","hash":"25d3cb3999f7986e8bcdcda124ec5d72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","hash":"ad84ac2c0607f2ca46d74eb0facbca3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","hash":"ef2f4f5048c86bfd71a39175b6f103d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","hash":"eb9b4a5e46c860c5e9db81c69101e562"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","hash":"20e259f655329b9bc2ecb98ae2975e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","hash":"5892bd8a06723cd5ee869d90b2795156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","hash":"52deaf1c36d56ad77546bbc624e91b61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","hash":"f0667289ae22f9dc3c570f2e98fb2958"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","hash":"c102224d12dc8ea202cc97abde87ba51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","hash":"eaeef30b0e3cd638d4dad2b0f4db8417"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"019ad8db00824e24c87b38b254627b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"9051680cd2078f92c9c56831272643d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","hash":"2aef91d8cd008f57a605919dba2b095b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"3e1f8918dfc4c773b35f568c8907221f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"3b62a0ccec9a57fd8599a08429be51d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"bca575ff5911983777226c849ee75f39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","hash":"cb223d2445f2caf7a2617e25ca761ff4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"fbf98f47029acb307401fb5299babd1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","hash":"6e25bd87f1ef3a06c65b27f722fff88b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","hash":"2598d2716efa8557be39441a6b1490db"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"d8b218966d397dae64303cdd7d11b33b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","hash":"d04edc39b6d3477197606ec9c969e738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","hash":"f328cfe04255be8a4d740b54f2854bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","hash":"570573fffe43860513d5cc911da0668f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","hash":"abb5a1fdfd2511538e3e70557aad0ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","hash":"033b9ff4ea4c8fa3e9da4573a7d2edfb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","hash":"ced9775aafb393501c537dd334b029aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","hash":"783943aba9b03b1cc54745609a61947a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","hash":"d742d41268dec3da5e669142ae344928"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"f6879dbb0a0b22e90c61f21ebf5c440e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"a14aad8528cbc2fe6ca1ad92ea332e2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","hash":"d84ae47a3c688bd889f442426f39be3e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","hash":"a1e2d2d5b90a616649664605c34f70c4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","hash":"193b3d87d8e5e1c65855f2cda33b3386"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"993a8cd8ccf7a791b5baa5d1935fd8dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","hash":"0ace55de06ef5d40b277ac8dae4d760d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","hash":"fcb452549a7c86cdf118933be09ef427"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","hash":"2c294b86e9cf73bb732d8419ab47f434"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"55683be242867dd76676beee16ada035"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","hash":"4bd805daf5d0a52cb80a5ff67f37d1fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"97e064022c57ab2abb672f1def67898e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7435bf8833b839bc99c3b475a49219ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"6c2b6a2d17427507aff54ae4f457825a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","hash":"ea7c9cbd710872ba6d1b93050936bea7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","hash":"dc4e3bf96e9c6e94879d54eaa2f81c69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","hash":"1f445eb98cf4ace45da422b4cd9f047e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","hash":"702e19f4fbffe2ac72379fb1da6bd477"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"63701253bb9a85c00b68c2d51358bad6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"ec3a5f7a8288542858278a8702578709"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","hash":"5364518d72b7d6240c9d090f9bb7df83"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","hash":"a1552b07a3b92bad881c4ac6c55229e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"dafc76ada4dc3b9bc9a365a7da786797"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","hash":"7cff949e3b7ac960b63441117b2f6734"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","hash":"ffaf08c52f141dda6e8be50b3e46ea50"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","hash":"20cf180c73edf422decdbeabf90853ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","hash":"20e7221c12677486628b48b0c30569f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"9f9fef5d5732d2b083ce7c05aff2e265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","hash":"2128831f60d3870d6790e019887e77ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"59ea4237571112a72a3756771756c43e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","hash":"ee982dce2668636ee52414f16ec07b8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","hash":"12d3b22764f1a64ff214cabee2858a00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","hash":"b3853faac4d2f3f34b6da5ef327d5ac8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"925460ad93f34c429048e22ab72c7e78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","hash":"8cea8c68e157e3f07caee50088603d3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"badbc78ac68a9144476a747433fc0c9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","hash":"fb92f0b8decb7b59a08fe851e030948d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"1bb2bdc95c24ef25802d47fe5ccecb64"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"72745c98c83af29f8a0439eb29dd7560"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"0ae6882950d775118eb308ed401f4ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","hash":"f203522611d9d5ac9047af433e7f84f3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","hash":"7a76df624c94ad5469f9dc81e627a18a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","hash":"4a4b67b573e2338cf03cb704b2c18f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","hash":"374d5fc1231ad32b5eb97df5aba72617"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","hash":"751c8376ab9bb4a866f5db6d7e6b864b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","hash":"f23b1cec674b4863aec7961f4a2ae758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","hash":"5e054086533f32f7181757a17890ae56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","hash":"2ac6fe0e9a4d7b15855dabd7468cc320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","hash":"474c9e159ec8ec804957222054c877e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"b2f2415d38e74cf870ff465dce1a736e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","hash":"10e3a86163a4d8f8b910130341baf27d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","hash":"9d0a823179de6c550f7dc36f7aced31b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"67f98d5a671622af964535a693266ade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","hash":"d6b4c337633cf50449be67966688dc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","hash":"61a0deef2a4f0ebaed506bb2a22c5185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","hash":"c63a357184bab34ab1e8522808a9cdf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"4cb27d8de666408f8a08b7d0c9b044bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","hash":"a05d206abc2d9b0c60ccae83bf674daf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"2730e1e1e567fdc1cd0b826028acff25"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"70800b89dd1c66241e59910037d4f988"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","hash":"634d273f14a099a4f0bd577979779ee1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","hash":"3cf7786074ce9f1e148fe5f4a60479d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","hash":"e94cd8798b88905e32482b317167763b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","hash":"2aea038844961a04f31f81fbd8503cb2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"47474102c009e7099f3a9bf1d7ea8e06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","hash":"091e29d23c58b7a4b5529953044bd344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","hash":"610a95b3eab95b5d9ccb03edc03818b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","hash":"2108c716fd8198fa3a319a1ec6cadc9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"a795771facc05f84d882278f7f63f6d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","hash":"141745c6e29022622def8ba527cfd60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","hash":"703c5e391948c58228960d4941618099"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"5c32703ac32c4835d961b3c55f8f8498"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"a6b64bea23efeeb23ea862ad5d55aa30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","hash":"8608f71f077e370ee14d37c711e6580e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","hash":"a9a9ecd14dd90500d067ccb5c564cb22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","hash":"ee40327c687df7f226654886d6701ff4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","hash":"f292145a4e855215a8283d820f14526c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","hash":"33ce76d75b24f6c7ed6ad95a422b76b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"861a19ff01e3f58d95d668b9fd4054f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"4b95f290c43ca907e969d3d0e233295d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"be25b33bcf3736f59b4cd5191dd0a9a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"ce7c719e306ad9ab02b19aafbd70178c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"b4421b6c0a0d4bf349acaaf804d641a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","hash":"7d19aef72402dc345f03a5ce59e911a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","hash":"996d7bdb8134338c2357699662cee703"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","hash":"a6c66093a1bc730ec1593104a477649f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"c95897aa3a4d00e22975c9161e4e866b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","hash":"bc48ae34e58774e84a72567a86034fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","hash":"13c2765ada00f970312dd9680a866556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","hash":"3bc24109049f63bedd0393f75bc23503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"f3ee8d50363ec83453a6769e6e23001c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"232d846ca21d1549a336d98b5e737f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","hash":"28a96a9cad386cca4604fe9b6b0ac250"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","hash":"5b4710c9b26d2f5e2b94d3cc1fd320a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","hash":"fbb3e43ae57262b3fc190cb173a7b5bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","hash":"93a4f02d4f155940b6b501ce9233654c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"c692323b8d9e3ed3c4c134ba07ab94e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","hash":"99b4d15f76889687c07a41b43911cc39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","hash":"e07baf43a89b4a1225ab8dab1161d2be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","hash":"d2bab4c7d26ccfe4608fe8b47dd3b75c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","hash":"05778db9e882b22da2f13083c9f28e0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","hash":"a4b97395630dc415cc76f514d4a38869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","hash":"e990b24e6368a3aa33f21b4695cfcfab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","hash":"ee2f81dc37bb6d1adb9570b7634eed77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"008f9bd544a605eb69f5aec36ff9bd2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"f2bb5b9e6b4f0a7c7a7f9099b7dce9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"09fd32800069ef816aad6f9c6daf36d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","hash":"ac67ec38097e19b216d62e9b73491049"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","hash":"f186193f82036b24fc8379b1f332f817"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","hash":"9cf807e15d1e83af4f62cdeb36582a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","hash":"add6538f2b318e4a7cb7f3c17dc47ebd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","hash":"945227f3863339e388d92c2b3bfbf673"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","hash":"7cd1469d236cc14289fb876de86e6744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","hash":"d30eba29d046c1a8b7f029838de6e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","hash":"0907f33388d79d8891c360720626e13f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","hash":"d946dcdf5932343994cd861dc8e7be52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","hash":"edac48a72d161089af5eee3c0d7d0d5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","hash":"2747964c64fe300f15d15123727cbcf6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","hash":"48ec0166ccbd3f834b89d19fcf8bf2e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","hash":"9f8b50d98e75350b41d40fee06a9d7ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","hash":"523742c594766cc9e39179d93cb23259"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","hash":"859de35a02fbe705941f97e7700a3147"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","hash":"dc025ebc977f56a895f49dc6d82a6d45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","hash":"ce45b60ad9b0d7c8690b9b1fae2b7f6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","hash":"76763ba579657281f848e4c22e63903f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","hash":"513fae0e50853fca5bed4ec2ac746daa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"33c98e4e508d3ac10e634e62cdbbce4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","hash":"4454497beed7948ccb9d6987d52ff3fd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"9bf6034f9f93f9bfa96cf63a77f69e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","hash":"38dc31b8820f5fd36eedbf7d9c1bf8d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","hash":"8a032ca2b66b8be21ce8368f80406db7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","hash":"21da671eb92823f3b4c91c47b2e9bac7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"977b101929ac6f80c9dab61b4f232bda"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","hash":"de4092182e054aad1fa89c88e36c667a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","hash":"e26cb5bf5970055a9bd1828b524cb213"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"c32cecbd71acc984d84398dbcbefdc1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d856ca958740bf8a240738ad9e9e69c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","hash":"ba98c7395204110dd4ffdd7929174d56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","hash":"0e5b422d23b62b43ea48da9f0ad7fd47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"df0a9878a16d3cd73cff00f496307544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","hash":"916cd94d810ea5b86f0cdc685dc38001"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","hash":"070daf6f273e9bdca4afffaeebe2cc15"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","hash":"88d5feb6f0a1ddf0cafe75a071bbcab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","hash":"a18fc5ab21a0ffddbebd7407a1e4ce40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"ea046b60f0fd4f08dea95a777e6b9a1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","hash":"9a357eba21f383f648a36404ef950aea"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","hash":"7eee695ba96e5afa80abfaf59973617a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","hash":"ed8502a630b1e3004b3e0469816899d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","hash":"10969c23d56bc924ded3adedeb13ecff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","hash":"20a078b2eb6ecf6b4b16bd817e30ecdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"85ff3a455e5b12d282298f7870bc38b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"5ae7a1f76d7bc808f9945ed995da690c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","hash":"ba4b050fb9bed64eb6f6476016aeba2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","hash":"008d33cc2aea11e7921ee238469947b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","hash":"a9859297c8291c07e5e8f6c83a0c014f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"362ae7e02db45824034cd89ee2a52737"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"7b2a36307916a9721811788013e65289"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"f9aa2eb956d270d4df8b3a7cd5ac52d7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"c6f3d5ab867a5b665a50e0af11d048d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","hash":"fa37e7b5d86857fe6a6e7c008773fe79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","hash":"0321281951240b7522f9b85dc24cb938"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"838123cb36e73af6dc4717b1235393bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","hash":"bfd7a00b9fef90dbf3b6d14f6a2f2901"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","hash":"13b2049dce60861c73d20ad96c34da30"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","hash":"702ebe43a77fbc5d1e1ea457e0bce223"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"624431304ab3076b73b09e0b33e35e4f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","hash":"191c8a8451c1851fc49b83919c471939"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","hash":"87e0c94a0dd945f819a8bd24a9ac5e67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","hash":"1bc3a9b4f64729d01f8d74a883befce2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","hash":"e0dff416a9e6fd0bffe5c222b6e3831b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"e6c5d07cbc53020acc5c08062c8b57af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","hash":"f92bb9e85f7b089f96263b120561014f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","hash":"2480f17b8bc5d1954b56f512c6adcd9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"f1bb162d20997701babae2ac8facd345"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"3e536a3acaaadb822a23d4e1b88f21c7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"21fd5695156d005f6793304998a2022e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","hash":"ff5c40ddc1501e3be7aa7efd4a269f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","hash":"15439eaa12b927b0e9a42b9d168e3371"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"413144882e92d0a27858427f45f214b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","hash":"87ac4b62f17065d7456bfb6f6ec0a624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","hash":"fb2c02d4f540edce4651227e18a35d19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","hash":"6cb32004f228090f1200484076254c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","hash":"84ad21db5ba97deb809b65697546e39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","hash":"d241941a5420f01b81ee47fc755f8123"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"eeda981e4df3f90c0c0dbc696a3ca59f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","hash":"fc0d5385b1ef6f854be4e193437b39b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","hash":"77900a31d721da1722fe34c455a00d3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","hash":"e0cbefa359309715e5101bce98eb65e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","hash":"a67d1346ef152a92e983a9d7dc1a96fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","hash":"b93b5973b10335f092cad29c56ba9c6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","hash":"64b70549a67d82ee25c435f5fc06ea49"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"6b6636688a44d2bead7c8ec6941b03bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","hash":"7f4a5458515781cb38e39651bfdd2f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","hash":"5764fde6a5cfb0402dca339562afb9cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","hash":"815ca599c9df247a0c7f619bab123dad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","hash":"6367c3e098c4a3fdcad94aca0c0148c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","hash":"da07db909ae6174095f95d5ee019d46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","hash":"287a2fec0c9a35af0cc66e7c73845774"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"add848399fb431279348b7ea4a80568d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","hash":"05c0832362de468466c4e1f2ace14527"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","hash":"9d5375413b37f738384990ebdd6c6285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","hash":"d4252f423175e5c21fca23dc24154b84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","hash":"3e2ba5ba60ae123aa45ccc5f07eb3ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","hash":"735445bf95b7dd825aa15c783a4412f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","hash":"351ed98071b53d3c2e98d376f2a65a74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","hash":"2430a12d4750c3c76ef07d29bb6f6691"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"2a948780026092dae085b86422faf0b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"d125ffd56f0235873a9a032bc8dba83c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","hash":"eb54a5ead5cb8ea548f36e4b8780e4b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","hash":"97fe81a282e612211e9648061d6d5dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","hash":"6ea89c3bc6b0860bd7c16998d3950c3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","hash":"3cb04add978cf19afa2d0c281e4c80b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","hash":"8ef8f3bbaea09de024ac240b7e26d2a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","hash":"27780bbb98adce3f00386fc6223bf2c9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","hash":"c1210af8f1663dc5959f1ec44acaa5a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","hash":"1205ed5e14a59c237c712b8a495b1981"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"8d5d3ccddf53eafd7a3094278afe8b93"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","hash":"30aac47f705ad8c2248c11dd785f7a52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","hash":"821dcb1b139f1347a59141ff1fe42766"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","hash":"217b7c2fd7b1eccde5897e1f17fdccf9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","hash":"39d249bfedd0655b147701ff81de4fa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","hash":"ff51e95e52fd4d789e71223942d5ae23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"8d6452b9a0feab43e81cc131ef1a4aaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","hash":"90ed8a12c97e362a162da690203df055"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","hash":"bd343bbe0baca1494e15a8872fe23e6f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","hash":"43a5b6c2ad14cba218dbb9fd709313d4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","hash":"14e2e9da81c134c023849e94c4c24978"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"e4eb46d5e69baa3271c66c2c434061e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","hash":"f19239fe10cca0cd002c22edba90eb52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"aa079ee3baec3d56778ddae02b3d5150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","hash":"e6069a6342a49cdb410fbccfbe4e8557"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","hash":"d4efda9ec695d776e6e7e0c6e33b6a4b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"208e3ff349f358ae82604cb56088be52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"9f18d62a22df97520e20e775666ebee9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","hash":"eb60d218017b0432959e8445a36f4602"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","hash":"f5defa76a8d0e0a0a5d1670fbc270cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","hash":"edc6185b4e4994b45acda6675696d87b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","hash":"208d1ef7a6cc2445551b3138139613bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"6d6dea174f3fb3a637cb4d116a362dc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","hash":"4bed6699b5b3dd241289ca5b19ce9cdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"671f1b2c2c348ba4122747f1867f589b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","hash":"00408a31c78c5c887a19c2cd04973c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","hash":"6860d784322e97b761960551131a565d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","hash":"1eb2fe31f2f21cce619f672c25b1e43f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"9d3c97308962c33d86c03beaa20e28c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"99aef443e7d683c1906780f8d7b92c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","hash":"6911901b1e6f800a6d433577dd9b93a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","hash":"713156bb4c3a820c34bd6587a12b9074"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","hash":"12b975946bcb9ba1b5a6dc3309a19de9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","hash":"8597f18181783d905e40dc64f0c0555a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","hash":"278242320426f869a4121f48b98c2ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","hash":"d1242664c894dd9825221a49693814f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","hash":"c9d12a17c125e31a94ec65076a9c3ac5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"24aae40ce89e6e4c0dfafe0b49c5d13e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","hash":"4f187fc37cb2a7eedf4681e2321792f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","hash":"a6705b39e0c01e2fc0e40b8c8c674aac"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","hash":"156b43ac09731b1cc019f03af3c7a122"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","hash":"65e61fbb4fa10372b84edf9b3a226e3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","hash":"877295d0c356a690a3b16d271e34c543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","hash":"f7b5a54fb6f6b69cc4234a97ce7977e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","hash":"e7f41e9640a11f484fe97a34fd0c6fe4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","hash":"49286617067167600a8c7357dff1dcfd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","hash":"fb5bf096bb76594eaceda019de6559b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","hash":"f158ffadca730ab601c60307ba31a5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"d2118d421b39f9ba6b7de3c11d1c4c0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"4a84a6c0c8b39258edfc22b11cde7f32"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"bd653adddf5fd2896c067d9e3cc7585f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","hash":"21beb4ff2c06d1edc806270e0bfac51f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","hash":"c0d5d7856094b4be15b738392704b921"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","hash":"02139a0e85c6b42bceaf3377d2aee3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","hash":"43465f3d93317f24a42a4f1dd5dc012e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","hash":"df997c7f2300fcd6f80dffd0f455bea0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","hash":"fa0ee94bec6f3e251ecb6155d9b574ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","hash":"773da8c184ab316ec6998980a1448a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","hash":"362bf1b65ae84f1129622a8814a50aad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"35a844c5039cd195b88076ba0cc17e38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"c6dd0c20e5521905acdd0e209727ec65"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"0592ddd7d860434774d2eaa8eed82173"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","hash":"03fa43612a3510ac1b1671b945d1f91f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","hash":"89d45e2e5a70ac054f030113ad19f26f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","hash":"34b26677502aed5c7ba9e8b13d348e3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","hash":"f5d122cb287530be9914a859c7744f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","hash":"061e3925eb77146a83903821d09bbd58"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","hash":"19d245e2b88dd8a1ffbf6e9f955e3ec3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","hash":"9a62326dac5b22e9fea3192b612f4d9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","hash":"f7d24a92e50e72cd80aab0301eef14ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","hash":"033cc457821088f152cc31f4439f9f0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","hash":"ffb14682b9771918da24801f35264dbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","hash":"c2f30f0829e63ccf0449de5982e324b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"a0debba3c78c5b30d8645d377dc80bf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","hash":"8b5af408fdaeb769969e75d843cf424b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","hash":"b1bb0939f4b26522681cc6be8e11f7c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","hash":"7c1d0d22ae0d74958aaa5c099fadc33b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","hash":"183ea1ebbced2622b43740c6066e2da9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","hash":"bc1f35bad7b3fd785bd8734292b27ff7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"fb5f7eb90b6c4b891e8a1cda244c0a30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","hash":"43f4676f21ce5a48daf4878201eb46bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","hash":"90687597d058691ddabaa9819ebe2441"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","hash":"28b2af7f1216ccd38b109a03e06c2831"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"eb6cc591a28f7f6d0b20d0bfd2c59f4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"b5b9cdab5f995ccd674b15a723c23ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","hash":"c9efc107e2b16a48d4e132bfcc679af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","hash":"1112185143b6fe11ce84e1f3653b2b6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","hash":"2ee116ca87b7e1c461de1462c3442ec6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"4a376c58b71e764fccd722e77989989b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","hash":"9f2eb24284aeaa1bacc5629ddb55b287"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","hash":"94325c70d85d9b1d588018f56c56adc8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","hash":"7ec9fc4b8ff24efcfb105532f000156d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","hash":"62d88517fa4f29f5f3bcec07ba6e1b62"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","hash":"08c882255bb4c2001eaf299d9a98e0b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","hash":"d8b0931c64fbd4bdd435df207b303a04"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","hash":"dceb0993fc92eafad2b09cedfe9cf55c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"afc61ae2ba49edef0eeff9853078bc7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","hash":"7787380533fd85067e9c4303a9564dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","hash":"a3ab60b19b4725b3ea1d1b0cb1c64451"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","hash":"e99416806ef8e6f699df7c5d9d6d8bb9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"0fb5a81c723bbd506468f1ed5a811a48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","hash":"de7fb154b9b151b81a78d43ade695365"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","hash":"0a9121d736af630bee92bd8372e06916"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"e8b3aa75db997d8ec9a7d04fb76237a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"99fb2e65ec78997546349e740526b24c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","hash":"ac3c54b4fc84d74ca2726a43feb3c268"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","hash":"43268fa3ac45f3c527c72fc3822b9cb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","hash":"bb500500256905950683ee38c95fb238"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","hash":"d879c3156e19f2b290c4d6eed1de5e89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","hash":"dbd0ca4188244fe4b090a6f420ec10c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"fa7057ca8e04d818b054750517ebe184"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"f5b03a40257946e4017d51fa2b683168"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"dc64ebb08fcf29bdc05884be98af7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","hash":"044e7c8ac3258945fe17e90e1a4fff51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","hash":"26c4f0c369b83e53900ac87bf7e0dcff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","hash":"425673d4276b277214e7b7970b708eb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","hash":"1fa6d2ba714d40456392772c9ba4ff46"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"3e8341c70267acb12316f930954476fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","hash":"25dd0d36ba8109e3199faf508b41d633"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","hash":"5d461db74d04d7e270d13a5a8a340796"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","hash":"2c72add0b4beec6c29322827553e616d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","hash":"ccd0c138d8f151e1ccec18f4ceb98f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","hash":"64708122ad6cca0c23373706cdb72c03"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","hash":"42e37fab03a3ee2d526bb6f51ea4af23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","hash":"ce049601b2dcdf418b7d80839ed87b7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","hash":"16eac0a8fcc5fdae0d8f38b7ea301c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","hash":"206ef1a664f500f173416d5634d95c8b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"b50e5a72f3e4d17fcc0269c67ad08b34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","hash":"587693eda247b930d37fff01715ff5c5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"c15b0c06c9817813063ea4c1023d57fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","hash":"d0268b4d80612385359eadd2d6ddb257"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"88f32da113ffa41b4a3c2a47cb997f0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","hash":"2b93d5d6981f0c021cb892223416927d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","hash":"4fd8d39dff594e013e042c2896cb0bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","hash":"4cbacf46dc43afb0d059b0016010f45b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","hash":"f4b67c136a2189470329fd33ebe57cb3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"01fb2164f922ea7367049124bc005643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","hash":"15639b799e4dbb06ffd538d943964d19"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"4f02d9801a18196af32eeecac6952452"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","hash":"9b7f21f9e27ab344d03709e9b47cbb54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"c8bb5ac3ad9190c2cb878fdab2f4ea7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","hash":"007b05bbaaa5af831aed126b4db596e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","hash":"643ca26571c2ba94477233dbb914b1ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"7c9757d3cc07fc4355bb72187af0413e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","hash":"ef220252cc1911073575cfbf66f4c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"ccd4261eb08ab983ac11e6c187ebf60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","hash":"a9d570114e5a6e733fb029f6b3cffad7"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","hash":"c665492a6d982e7ad5d3161c81983203"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","hash":"62d7d2254a483314a65ad8360c4025bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","hash":"5bc24b31455e76bc74c05a2ee528dcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","hash":"09214b5a4ed4e104f212ef38f676fb1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"1ebd781205fb832acb480cbdc2fb5d93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"9e848cd74d7e54d21697683f385810d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","hash":"84dbd0aa38844da5b7a683c754582df9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","hash":"3c158ce6f79d219073cbe23a7fe48595"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","hash":"89dc3f84db2cd1ea37e349fdb1de09bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","hash":"04e0e4efa9726c234e992a024bca6209"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","hash":"8de389ed114ae56e2ca650fbbcd35f34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","hash":"aab7bf02fcfefca8bc2a8c24f574ceda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"c8d372496e4a2766ec6b273bb1820ea7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"2fb79cfb96bd901a58aa790b9af4a2dc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","hash":"fd1e888f48f9b2411ee9f3d8a5146397"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"01392922e544aab644f03401ff77d3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","hash":"c6f78ebc1239a030ffc141df9b33aed1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"24dd1f01d0ce298347e47fd60702007c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","hash":"696cb8f38fb01211afb7823d12080410"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","hash":"5abb58e10e8ea85ea5990a97ee20ae4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","hash":"64aba6b07ccfb43755f1c29955134b53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","hash":"88b38af8a6ab0efd56d1fb06883c44db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","hash":"75335c9306751e1de52734c1ae433ac0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","hash":"79a5f25a1a9d4aa4689bf37171e1b615"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"e5c3c92d54881cd31b4200eda4923c2a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","hash":"56d7144236503f311a7d9a966eaf2fbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","hash":"8ac28b43cbabd2954dafb72dc9a58f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","hash":"787074c3d370e068052721d16acefd9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","hash":"e71bfc49f52579c2e458315e9067527e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","hash":"62710fd39bf51f264c7fd8ad1dc7aac5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","hash":"25057894002e0442750b744411e90b9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","hash":"101ff6d49da9d3040faf0722153efee7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","hash":"9518a1e0696846221033c0434d777377"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","hash":"4a1d1bdbd4e9be4c8af1a6c656730a66"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"b006ffd7548608c10ddd32ab8df2a5f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","hash":"974d0c452808a1c68d61285d0bd16b28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","hash":"b9c13cdd078c3b28c3392f0d6d5d647b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","hash":"42efc7a615bdc348ad78098c1cdb79b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","hash":"cb454929d7810d3ee5aa5fc28283d3fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","hash":"05100b6f82b19ef0bab59f9f174ad39e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","hash":"8d6e1950b64962d48ef050d9517791be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","hash":"17ff083c12565d73bcbd73eb0517016a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"a4ee14a7e782832dcfbc9c8b1bba6f58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","hash":"6665bae4ddca65609834735a7f24c95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","hash":"2ede71f09a240decbc57417850f8feb7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","hash":"0b279dcbda1933bafe0bd7d322e2000f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","hash":"85574281bf7d7bee9722a21e092b4be0"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"b5a6037a3840b81b507f5d350ecbcfc2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"da2fb5c7eaae1fd58b34e80c4dad2cca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","hash":"f0ae0acd94eb48615e14f6c4d1f5b8e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","hash":"42df2f1a7ae133830d8c71decb094a5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"3ca8812a042f08605898cd939fc0974f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","hash":"27bd31140f6d692c98f0cc901a7d77a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","hash":"5875c344ee3ccdd069b4b7ff696432c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"f63442b56372cdf284974de30fba136c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","hash":"93ac00707f7d2e5d4b863c54b11f2a9a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"4e3fafe47b1073d4d546aa2a2d584710"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"c2080626c8197add9dd213ba2b2ea79a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","hash":"6a3849c802c2fd63cd4d3db06470f387"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"40a04e94b4e68da57cf200df6c661280"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","hash":"0b1037c34b64b5d7d84c6e578ab59974"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"5e6f73850b640e3db6c2839a8b3b0b8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","hash":"a5df5f31e15cfee3902ff60a60eed5eb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","hash":"34d65aad713399e0e95c6d52aea92d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","hash":"41f7bdb7d1eb3c86c21489902221b859"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","hash":"a5c23bf569325f140ab7b7d88d3b683a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","hash":"9de140992b1876855e65cdffbefe8a40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"e11d89b7d2933ba28814915b300af866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","hash":"e7da1eb4d5cb971f14a5cc5d487e80a4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"3f17589464130c527c54bab5ded19c8b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"7d4475d797ce6fece72d4fd77739f528"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","hash":"34cb3f67f2d538a80fb20ae30589d538"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"b36b5c0adbaf28834415cab7cf236586"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","hash":"4eded024c142173030b0fe3116f30c6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","hash":"b54d4d23f060b78a02290d93a10d3319"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","hash":"0dd5377006ddfc0b63c193276ef02d43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","hash":"9d273d5a3c1851b0313cd949e7f84355"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","hash":"3fc24d3b43ff4a6b63811978cfb697e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"d26176ecba3541ce4aeb0ef89486df31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","hash":"375711cedfc8dfb78018a282ba880296"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","hash":"e2d2090c2a39f7902893e64150fe82b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","hash":"27e6c510107a34001ef90f889281633e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","hash":"4a3dcf49e30c8511f9ee69ca6128b887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","hash":"5a770014b927807d1ef52e7b6e287897"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","hash":"6326660aedecbaed7a342070ba74de13"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","hash":"a40d7d4a17e700bbb41bf31de37c6bae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"6928c6dcf177e8d03637ee7e015ff8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","hash":"a1f73c43919636da8b8f9a657ca8cc14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"225d683fb2401c77aae17db2c95d0a02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"554306ec4df84e3dfc7ed4e63ceae74b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","hash":"7b4a3d153a0c2e22401073c511515325"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"6ce7bea8fc63ae3a19131db10547ff2b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"a9f9101a72ae3969f82c0083a045779f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","hash":"5265b4bdec5c90bfd2937f140f3ba8fc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"193d1801b76c52075287857a01d3fe83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"9c6dc856bf70678df688ea5a308290e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"b98145bd156a782be220cb3f652ba0a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","hash":"8ef246eaf180b7621f716282e295c950"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","hash":"e103c51878b3741ffe4d81896876f3ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","hash":"99d7e562270b8dd8f0522ff5019620cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","hash":"9cc2170ec43e47681be6cb2a313ba1b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"53c58676c99bdf3839784d792c1c3d17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"36a99fab55346241cec61df175183d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","hash":"556c5677ab197ac52aaee6e02d6ebd70"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"9621a4c337d24a926ff50126ce88d7fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"d99d22e8a62a3ce1fa8b04b21702e1f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","hash":"ebee8885b5afd397cfa8920eeccf88e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","hash":"d7d24730943cbf47d39aa11425ebf344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","hash":"54356788d5c11fa49cae271d737b0c78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","hash":"659cff14f1665a31dec63407d7839624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","hash":"47258dc751a1217744986101e934f62c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","hash":"ef4618b5bf737a7625f62d841127c69d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","hash":"c31f7af379f7e5f653364d4a14a78750"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"2c38ead87a22902f0b6c73bac285c3ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","hash":"4817a73df1c313cf6a6eb86774e7fc99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","hash":"8e49d86f5f9c801960f1d579ca210eab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"ff836be2c45a3cd9f301d601cccf7ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","hash":"a4eb00bf15ad2af7e8ef8480d7f26a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","hash":"09b3f3b1ef14ce885c016f2eba98f3da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","hash":"a0d4a9c1b68cc6dbd6b64e41b7e92ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","hash":"672695b311530b8c64badc8eb93e6fd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","hash":"8bd96caadcaefb063cca0c83d7707a57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","hash":"c3b42ddc5c69d20f4bbfb3ccb3f30ffc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","hash":"8a251fb90302207f7e9e3f95aca01a72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","hash":"e358dbd512fac73db64b0628ad53bc82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","hash":"6217a25f93e8cd70a46d36976630529f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"c909abaa7c0b6b52aa22512668ededb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","hash":"5f5f3a1074f40b8fc37c2b3ba5ec0432"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","hash":"dfa3a8605c6665c94b8ca2bd43827718"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"6e5b0197a79b966f3058972183b815a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"2ec9f1a7465a01091d0fb1e48ae09fab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"03bba79b743a1422805600d8d348c106"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"dd13dc6e713f88184d61169de451389b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","hash":"c19a7119c5f0f19f3d0f4531c5345616"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"f8ded7a3f53ded600055288202a36535"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","hash":"96c9d801d1879091246f0b107ee4147e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","hash":"00e2ecab2f5dd0c4f813bf6570d007c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","hash":"da1802b773732f65c4e80bbdb5ff020c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","hash":"a6e5a05879e4b68ed3039be8d700bd6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"5ebf390d29c2df54424ad03f3b3ee803"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"b987d3cd7e9fb6c315cc761256ce124f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","hash":"7f7fc8274f08decca0738d6873b9b8fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","hash":"9ee869577a0315e9f028e88f6cc33c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","hash":"45f61fb164130d22fda19cf94978853d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"e924e0f63c6bf206211fb6a6f319af53"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"e7fb9fd369c9f97c921afb96147198d2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"900672c4f3a8c395331517ee4a59ea2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","hash":"9d1c0eb5292b2112e1b43affe9a2cadc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","hash":"dbd8209d53e47e61541fe1c14e59c19e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","hash":"d46b2577d6fe6a7c8f89b1de8fe9b880"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","hash":"0b4a237293e913152ca376cdcfbe752a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","hash":"254c9535d3cb04c28db0c51ada73e6fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","hash":"2e59aadb17c005953c2accd529aced98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"a93bdf24774a4f17d91eadb26603a2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","hash":"22acb270c1bb267ee16b3d64a3faa825"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","hash":"d2232e4bd0457a4a3eb6bd897846eb44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","hash":"f64837679a1abb526e942b166db5c244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","hash":"197929b9f3eecdb738b1d3e31c7481b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","hash":"88acdeb4b5b5a9e5b057f7696935fc2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"2fac118c3201a4bac960d7430ddda0c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","hash":"63fa9307c55c93f4fde0e682e7da6503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"5588e04d2462fa3c03dc939826b0c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"86827e5362f176a7e68d65c22420e837"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","hash":"222071fadae509fb3c28ca2e5fff8f06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","hash":"a02789da8b51e7b039db4810ec3a7d03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"bb208871e05247f3c1702ef1d4cb172d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","hash":"9915c7d7ab3c9994e77dc4abfba9418d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"6576b0da0c8edb1eaea39c7088dcc913"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","hash":"21dfa823454d051c097b62eb7499f71c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","hash":"7ec176456b796d360121e28a6af41a2a"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","hash":"80b24d7e9d22ac22d59d17e1b83ee719"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","hash":"9632b7c4c43e2e92f45bedc627663937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","hash":"c96999a0782dffe9bf8eeaf394caf3bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","hash":"49d17d6f2c4de81e5dc0cf98d720333a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"48eacfdcc762ece187c27660f7010c77"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","hash":"e7570654c0a436f6e9dd0d62c8df912d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"d291168e624df0fd07cf1a11ce6489a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"fff2613591e3febf4c067fce116c105d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","hash":"2972206c70139c2948530bbb5c9cfa27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"284066476b8ec1cc92ff0011561ceffd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","hash":"615c17d4e884a65d24a596112c37098b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","hash":"eba989b17aa7902153acc7df1658ba49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","hash":"603b7b0647b2f77517d6e5cf1d073e5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","hash":"508284c37de18e099acd673f1965ccc3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","hash":"dac02dc6cb13c753a5f3ae19976b1540"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","hash":"affb97b6cbd84919fa30ea3bcd5f12df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"9d21d08750f63eeb16370b13ff7829de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","hash":"12ada90523ca5fc00e317c0a59889a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","hash":"f0dd0e0193ab6bc6a1dc2a6cf6e1cd6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","hash":"5f02ac3087f8d081f489730eecb97f70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","hash":"49703a6e2b7dff13d801b6eb6e02062c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","hash":"6b9e945de99fb44b45f72925b6e862b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","hash":"b3593abe51c68018faf79703c522773f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"20a16b4f174e6bce075dcbfe68581c28"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"03a019b76be5082eaff707596fc9f6ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","hash":"46483f14160b780c8d1ae008588c50bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","hash":"4f24c51c2701c07958c451114cd782d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","hash":"34ac34257c6ee30da8c0b6de4d0a5444"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","hash":"c98cadb2fac8ead45ecaa10366da3ec9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","hash":"5668ae4c673aeee9b233b0b024fcddf7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"6f36125b419a1cc70316b6994433918a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","hash":"10ca1bc893fd799f18a91afb7640ec26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"eb2829db78e88b9a88e0013dd7d436e2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"a38cc0128b89f1c9d566c6363cdb63ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"179be66a83c076f437989e25cdc30a49"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","hash":"cc1f0acc7941fdcd1bc2ed72c04c9a81"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","hash":"5a4ec7ed205221c230844b97f4d0a27a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","hash":"959421bf7780ce3cb78244e6707be380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"645e414df4ad6780c5bbe193972591ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","hash":"68e28643e39694f628939978acdc52f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","hash":"cb4cf0d998a65879bb40daf8db093eed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","hash":"7cd08032583ab0a8eca895b2365a4583"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","hash":"46e577ec532e21029e9cee153d7ca434"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","hash":"06d63878dac3459c0e43db2695de6807"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","hash":"1f4f05a739274cdeb88c110bc6561ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","hash":"f1a57183b9d9b863c00fcad39308d4c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","hash":"8b2f2f630b059eae09aa7e46fc3137b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","hash":"361f3bd2e6ba6710885e241d7574326b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","hash":"314ca45445509ac0635a48d2dacca294"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"670717573525d5e0518a4063c6fd9231"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","hash":"f05c33bd910f900d035412bb6303e550"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","hash":"5261078afe15bcdc637478bb6d7f7e21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","hash":"011e1e9f46dfe9400619c8e5103c30ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","hash":"b95223379fd765fdba36bd57d890f63d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","hash":"1fec236f729d3217c13d42295fe3faf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","hash":"24332e073ea65324af6702f2baa79438"}]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill new file mode 100644 index 0000000..88612eb Binary files /dev/null and b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/app.dill differ diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d new file mode 100644 index 0000000..ad9239c --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json: C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp new file mode 100644 index 0000000..c4d9cc5 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build.stamp @@ -0,0 +1 @@ +{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\dart_build_result.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json new file mode 100644 index 0000000..a7bc96b --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/dart_build_result.json @@ -0,0 +1 @@ +{"build_start":"2026-05-15T12:29:51.171303","build_end":"2026-05-15T12:30:01.542917","dependencies":["file:///C:/Users/angel/flutter/bin/cache/dart-sdk/version","file:///D:/YandexDisk/voidea/flutter/.dart_tool/package_config.json","file:///D:/YandexDisk/voidea/flutter/pubspec.yaml","file:///d:/yandexdisk/voidea/flutter/.dart_tool/package_config.json"],"code_assets":[],"data_assets":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp new file mode 100644 index 0000000..df33305 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/debug_android_application.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD456102081"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d new file mode 100644 index 0000000..f989ab9 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/flutter_assets.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json: D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD456102081 \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..8752078 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d new file mode 100644 index 0000000..7b1bfe2 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json: \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp new file mode 100644 index 0000000..c975b87 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/install_code_assets.stamp @@ -0,0 +1 @@ +{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\native_assets.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d new file mode 100644 index 0000000..676ab75 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.d @@ -0,0 +1 @@ +D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill: D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp new file mode 100644 index 0000000..1520a1b --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/kernel_snapshot_program.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\25778e38fa3d526585b83317535421ec\\app.dill"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json new file mode 100644 index 0000000..523bfc7 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/native_assets.json @@ -0,0 +1 @@ +{"format-version":[1,0,0],"native-assets":{}} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json new file mode 100644 index 0000000..a10800b --- /dev/null +++ b/flutter/.dart_tool/flutter_build/25778e38fa3d526585b83317535421ec/outputs.json @@ -0,0 +1 @@ +["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"] \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache new file mode 100644 index 0000000..2abfa73 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/.filecache @@ -0,0 +1 @@ +{"version":2,"files":[{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","hash":"d19b802a88e4155dc2e45f5e1101d15f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","hash":"aa439be89f7997c3c5949ce32d2486bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"aa32657bdc6e98d914493e3dcd1297e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","hash":"0dd6b7d8d28ad1d7a979582b5dbc60cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","hash":"81d01d8cecc6783526e350800988db74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","hash":"cffffef4bf8830e201a0e74eeb8eefbc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","hash":"65d7d9aae72d673e52ab256ebc374bf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","hash":"ddbfb4de9e9dc40a09a6bfae74a41dd8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"db020a5dc1db2d32c48dfbd9b97e1fe8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","hash":"da767bceadf4951a2fd2ecc70270f6cb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"1be9384bd83205518a048ecc1a64d5a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","hash":"3032f1c2edfd44ab46f3b4673c5c8deb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","hash":"8dae2f643acc27538d30020543dd54a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","hash":"ea36381f235270cd68b88f2aafe5d620"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","hash":"34b9072869b35b15ccbe1d843fa778d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"d8a7b96e6465831f5cf6de56ccddf6b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"259698248be1045ed65ca4c44c0d9419"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"6f808ad3e21a896e5df3cf97ea2cb66e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","hash":"33186ffed4f0249b40a7d6161b7c2351"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","hash":"50ef33e165498030b82cc4c8d8408597"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","hash":"05fbdfb1bb8ed12098aa521c31a145ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","hash":"3467899798f7f8ca82797ccde4772534"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","hash":"9b478f27df3e7bd44722deb3c1c69ca3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"3a20b4d301e83ddf2a700e43c3d13f19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","hash":"a2187618f84ad697f470a748b2a27f56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"6e77594b72aaf1972bfbada10258aea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"cc73b974cea8f36b579e019233f5f39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","hash":"f0db904cb4051a93b08f326f9f4ded00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","hash":"59ba4a85ea18ab7b3030f370a0e93450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","hash":"bfd57391197129cbe3c47c75b2c21672"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"34e49d23faf2e4895f37b30900d32c5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","hash":"2d069a48b5e0ffa386474977d2c91c90"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","hash":"31690b0bd17e5becd1d7a80216ad01d0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"5d8fbf1c97a97bd37a57bc907bb90823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","hash":"3b481084198e4581293dd9ddddb9afb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"3ec7c08049495627813e9b3b937f53e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","hash":"2426dbde1829bfb9d5707ea69f21b4fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","hash":"dde1235f5cf091fe6d4a2938399afb4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","hash":"8fd257a17e57f8c7a9e9c3c5d77df78b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"f203420ad76d15df34cdeba7156e19b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","hash":"f91bd03132e9e671e87f0b9066647164"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","hash":"9633ac2bb6bd16fe5066b9905b6f0d1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","hash":"509de531546dd357cb81de8c9e42312d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","hash":"fcd23009cc22a74fe1f61f301a62b61e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","hash":"9a2704474807a196e3a72883d73b5be2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","hash":"9595cf0e7becb4bf5de5d3a3865d631d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","hash":"55422a6a3ed3f0829854a5bbb97d4e6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","hash":"a94a67f325606644fee6ad6aa922752e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","hash":"4f061ba7ed2e408e218e0eb4375dddee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","hash":"d75954340a0c7770eb9a149f7994598e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"59b6b4f97638dac0c707c069f5ec5468"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","hash":"ff5d66c50ec833a263625d39f0c195b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","hash":"2ef397117616f6ff779ed0ab2dd0d61d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","hash":"56e7707f76c417845a2d4ace8af3b305"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"19685ac5879c84f53885d8fc9890f9ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"b16bfc71ddbb89c942f3fb24dcc4de5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"3a8582a42202dd9c13976accdb4e8b18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","hash":"62e6826075b4df67271133a79fc4d046"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"3075297d267950b2cc949065c5c982bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","hash":"f38a99a51f4062e7861bb366f85265d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","hash":"e00e5a90ff913bc9c53a6572e53ec576"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","hash":"c23f3b290b75c80a3b2be36e880f5f2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","hash":"fa2fa16f78792d714ca06eb1bbea9db8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","hash":"c23f15393091087663c2613f18f0e9a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","hash":"bdc22e9e77382045196b5aafd42b5e55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","hash":"4fb96b9e2073cadc554a25b36f55e6dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","hash":"bb00c98e50d3c71d4ab7ac7c46122f3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","hash":"ed9a041fe7435b9b67080b2e9b56f1a0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","hash":"31ff0d4d17e824e16798aed227f48e88"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","hash":"6528389eb764f0529d5c3ce0f7403452"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","hash":"025e33f289842e685909a1adadc790ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","hash":"d3c588dd2fe7ad6be9c74bc406cd0199"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","hash":"6d35cfc0d00b450495558fbdc7ce2087"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","hash":"953396d57b69e0e889d9dfcc4f7fdabe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","hash":"de786aad9aba3c37b121a1f0238119a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","hash":"76052188e777d0ca03128d3b299d836c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","hash":"bf2ed9d304c7f4d1e982b118bbe93bf2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"61d6754850dbffcf4687388b630652ad"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","hash":"fd32497d512fda6fc0671f20387ea649"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","hash":"21a6eaa35ec3367210a47a559f54c4a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","hash":"737107f1a98a5ff745dd4e3236c5bb7b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","hash":"a9a606dc5028f1c8d7cc31f5cb21964e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","hash":"b21a009902949ddc4ba80d607867fcb7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","hash":"caf148b76c44a3f0f1bd6055ddbb8f5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","hash":"6f1cce384d53a00c3d6e036e78554066"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","hash":"d5a669dc5155cedc975db1022a570128"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","hash":"f78c405bcece3968277b212042da9ed6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","hash":"86d3f3a95c324c9479bd8986968f4327"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","hash":"83bb9dfd0d336db35e2f8d73c2bdda85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","hash":"3ba2e2e6e16b3e46d2e9882ff66479f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","hash":"51d92d191bdfceacf4cc7381782d4e5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","hash":"56b284328228e6d3eabf49bed958999e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"f26b3e572d8caad81a02521232f34ac2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","hash":"90879288f848e0c8bd3e17539633770a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","hash":"cc0ab0117e8a0a54ec3efe6d9251860e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"2141c0a9a7f60478204da36bd64edf0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","hash":"8dea906a9b8773920b6d1ccea59807bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","hash":"7be00974229804e8ec49ca8c4fca3b5f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"eb3b6369f8af356037fedee8b6733b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"f2138801d3af6774b0cdb3ff8f966b8c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"e83026f2a0c3e22691eee7ce337b037b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","hash":"a2cdec29e909752629150b24b9b18407"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","hash":"c2d76b78fb107e358b1ad967f15f1746"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"42b701fea2336aa3a74e390579863153"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","hash":"296e60aee7732b001a79f3216058a381"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"19171c1dc65154469120c6dc1ffbd025"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","hash":"dfce6b9ee4ae9b9df7401fab182baa6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","hash":"21ee375f5cb7acd3bec0129fba2839ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","hash":"a42121307a3d24f06691ab35f935206a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"ee635fd679923a1967d7f97840c03f25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","hash":"3d7fed590b9d1ab99d591b04487b9287"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"d2791172df9d71b9d978e566377b236c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","hash":"89f7a33014c1771ad6ba7af660714ba9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","hash":"437b5795f5b9bf507b02ed5d44f9f572"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","hash":"e9c0088ee89cdab9346358a1ab7d4f18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","hash":"5843b4750179f6099d443212b76f04a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","hash":"41696c18e708950dccaf7cb4f5b7b195"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","hash":"1f9d71a3b838669de863ab244804bdc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","hash":"e1c286fd5841539119a1c390cc1fe13a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","hash":"ba02460ed2591611ff8506bdd88f569e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","hash":"3059dceae50124dbd966f136c80016fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","hash":"7dff3a0a1b5652f08f2267907c79844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","hash":"3a70808300050e138089768c2a40dd78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","hash":"47bd44d1a936d22067083db9e592d00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","hash":"3667c2cba3e0537e66b40353a1482487"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","hash":"b79970824daea8c217511d19c774c1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","hash":"03b20b9fede21601f0b3d0f7ef4ce25f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","hash":"0ce51f30ec304572b490e8f3160925cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"a05b35e402965727a6b38bfc20b6ea15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","hash":"67788ce85b40005f02d41f07f8c72c1c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"c6361b93d4a266527cc473cc2570f714"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","hash":"359d022c7d5a59692d34bb2d5eed6736"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","hash":"5bde4f62a64276d44e1ef4ee3bf194f6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"ecb57271d69343712d88a50442f2e8ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","hash":"0c30a117b0d1fd5c94980510832b81d0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","hash":"c4222ace4a2fadb2e9db196b058e9d86"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","hash":"fba8114f858c7bb3b433350fa69476da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","hash":"17b166b7da51804be122c3799285a293"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"e54dfa9602e092489eff9b246249b58c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","hash":"186b8c23ed0d68e6f81d56d62272c87c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"7543511b01e80fd6c1424d1716696d43"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"ea3e7b1b5cb494d1fe64a8ea3c635f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","hash":"052660a52f5ab94091182bccabab6f84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"e2ff5f7cd2d3585383be2f277af0e761"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","hash":"1825b39f94e569a3c0c86c8ec20b723e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","hash":"0986862ec60c0703a2f25d4c50fe9a2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","hash":"f6b2a03b8f3554a6b37f151f6a561fe9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","hash":"fb71dd46672c822515f03f8f0dddbcb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","hash":"e0b6567371b3d5f4cc62f768424e28c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"2477a3574e222e0361cc9a114e007c94"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","hash":"d28de61067df9bc3d509be84deec1140"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","hash":"b248aab8f1807ae07bc22c26210f2def"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"b710038198396f242f41de12c8488a5f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","hash":"fcf0dfcafac17dc3ed539b4587340320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","hash":"59b94bd26c48f22af40881f8128c41c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"7294188b7840ddcb215d597adfd35d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","hash":"cfeea6435b5871fb518238f65eff45c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","hash":"6315f598861cc34295ad7b2e926a143f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","hash":"e02cc4bfbf4ebc867c80dd14a71289eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"f3a43f7f1e3cdd35326341d9fe51fdee"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","hash":"d71b6121d7069ff8303334b41e9a92d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","hash":"0fe168f7fefcc6e38cea5a1daaa08fe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","hash":"7132bdf47eb7567294754da6caddbe14"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","hash":"7594a28b48f672ffb4829ada9ea4018e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"38aaf9a4c4e85e3635751865dd337321"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","hash":"9fce75490356488473f3f0d5259d2f29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","hash":"195aceb9dfe0dacbf39711b8622ce2b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","hash":"fbbf07cdc6454526db079daddea912cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","hash":"3f842dc9d82d8b21557bf598ff4ec83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","hash":"5df97b77642ac6f786c40d585400f7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","hash":"92985c94a9a966b97c156c06ab2d5195"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","hash":"8924d681363bacc7cd51c183b529f260"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","hash":"c32553850c6990014c017cc3b3024df3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","hash":"9ec244272cb6c8da46a6dd5f104f0dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","hash":"18e255eb54fef40d17b6f6abac4455aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","hash":"8596b58c127792783625b4b22a4d023c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","hash":"acfc0a55deec22276e085dae6197833a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","hash":"d45b4bb922c2941476a8b797e0e275ad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"59ba7bdfc57111a2c59ae46a61e0daa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","hash":"c687544dd89d844861b88fe7d0fd095e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","hash":"7c5b14805d686129e90293ef086d4d68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","hash":"b192f8c8e04e47ae69d662e5feff7306"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","hash":"0502dbd75b5b023cd08bf81003a77889"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"ba0276c39a78df8b9ae1f68746ed0e73"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","hash":"3ae05205e5843fd41cae41c823dd7679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","hash":"89cdb68e09dda63e2a16d00b994387c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","hash":"168bedc5b96bb6fea46c5b5aa43addd1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","hash":"4f835012742ef22df8c85292594f9823"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","hash":"6a18f9347e6e639ebbbfb0a0ce98bb71"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","hash":"5f59fa1ce6d10c011e76cb4d99e90d6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","hash":"f0687363561a3dd3af32cc1870c61c97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fade310b4dcd8b5183b8caf0b7460a61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"8410804f64d7620e89249b54b17d9d9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","hash":"5893c7d3910e8924bd2dccc8837775c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","hash":"4f4a2d291e23c96c7ae0d4dbc9598c54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"11ae4db3a0abc6e46de31a943bcdca60"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","hash":"d7259aeee1602df30d051e8fc0523d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"1aebe82cc4e81c2b5fd46f924c92d5af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","hash":"b1d3d657c21d4c2229511410eb2240c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","hash":"670388961b23da0ffd68cf26f5104e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","hash":"13e53604d98eb0a2fbd871588ec8b357"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","hash":"9a453418cc0baa3cf4c4a41655f4a113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"18939fc6e74f9b391a45ae341fe30128"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","hash":"8390e4d70de6b673e657c51fdb76c8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","hash":"b1cb91ea7a56d612d5792dbfe439f2d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","hash":"98e80e3c681156f330d79925f2675eb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","hash":"273e2f5010e85e296a0893f397d71645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","hash":"3a9a69af68cc0a35c422d0bf03873265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","hash":"7d51f23cb597ecf99a0b6007767461f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","hash":"1d43aa18b7cd09879287a4e8ba5ea5ef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"4a3a541b9e5b5781690d1b413c84757f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","hash":"fac5ee1098b41fef8637aca152781c92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","hash":"562889498a1b0cda759a1186693143e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","hash":"8fdbe6c284b56683447368dde52806c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","hash":"7d9a75e0bd8e5c9b49ad6c0816666b4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","hash":"452cd5bd89dd73f555cc1ef42032e1f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","hash":"404ec528c031ebc7486f12477b06de28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","hash":"038a6fc8c86b9aab7ef668688a077234"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","hash":"2441a967786bd149053b72e22172ce60"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"a31803db08fc99ed2b1648bd10de25df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"d40025a616ebc535304bb45ed491794d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","hash":"9d62f4f58e8d63a8e106a1158eb13a02"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","hash":"91794c215a8aa39b862cfa4c96b9a398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","hash":"77971712e28393ec72c9033a92f3ceab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","hash":"45a4d78a037bdf56e5eb45d75298ff84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","hash":"5fc1a25f60cfa0a0280878377348c63c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","hash":"201005c585ce255343e625b1a5e49601"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","hash":"3a2d505268f5446e5f7694776b69b407"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"4228c34247981f0faaf8e067e3a82e19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","hash":"ff12dd93989e4929d1f2e1bf36c45978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","hash":"391b7eda9bffdd4386292eae157d449c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","hash":"c5cf5bfcab3a48fc5ec40113640a6e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"5ec6314e10455f6b4b0809f222cb82ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","hash":"8faa98eb1bc31bbb64876e837eec420b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","hash":"1ca6e7022b3a950a205e316f7e3a2b1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","hash":"e1c112a7342a7ee3110a1c2df175b89d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","hash":"c88223c7cd248b2bb8587f78e9530f64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","hash":"f5e7b04452b0066dff82aec6597afdc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","hash":"7f47dda6ed10e33236d465680dc8c12b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","hash":"63d2768cdd6ab5a282fbb6a86c237b78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","hash":"ad6fa6bf1dadc6e07c4c080c69abde6a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"5efd79b206d541def2ced4a547014219"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","hash":"84de591d644b29f5e21052bd9c84263c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","hash":"81c2aad8ddfe7e91e913fa4c319764f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","hash":"2ca4b9e92c39403717d2dcc32bed57e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","hash":"9741c346eef56131163e13b9db1241b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"559ecbc92097e4c9b9142335dec3f3ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","hash":"7b2a0787f26dba547607fdca4028a1cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","hash":"b76ebf453c4f7a78139f5c52af57fda3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","hash":"52e0406df2babb2958beb4b471ccbcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","hash":"d9eedadb461aac1eebde731afb42a2d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"bdd3a31817dfc052c506f3a7e2556fcb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","hash":"aaf31c7a7690aa5b5980d454e534d168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","hash":"dd15fe8e4901c3c57a40bed6b0079e80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","hash":"5701f1a2ae54ccdf11a84a2a6239861e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"f60d1c032575a7726e7526bbd5d26e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","hash":"1aaa0309ba77b0f57733e99543c455ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","hash":"d9fa00a9beeccf6023d9f9950d016c1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"f7e6d723f47368300487f5121688d827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","hash":"f61c50d40c00ac96c595ea0b2682937c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","hash":"e2f7d6fbeb362176a24cb422a6dd8193"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","hash":"57e5dc91c30bff1774eaaa45a798d0df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"4a9437bcc5b4bc801a155dc8b18ca80b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","hash":"34336c7c021e6749ef0bd6a11e48f887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","hash":"79503c7448238b77502c169788e26dbf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","hash":"8797b9bb0c8239ab47601d92826a8cc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","hash":"ae36c7cc9b21f98bedf401f2d67a0fd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","hash":"00bfa437eaf641f6fdf0db2367135a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","hash":"ceac2a8f7197831de70d242e885a1527"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","hash":"bf4a95c97439fb24c526534818440cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","hash":"002be4c072c0cc5c5e72b5ff6d0c490b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","hash":"184d3b79d275d28cd02745b455041ee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","hash":"abcb2d6facc18b2af070cb86cbb1c764"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","hash":"6b6d268476b0c6b3d28f6339b57b61b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","hash":"bf3aeab9379cee97ddcc69d885a477f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","hash":"710a4fd96b6281c1ab359ea6df4ceee8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","hash":"0db1803fcad172b512558bd1b03e4ff0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","hash":"17db713e9a12494613ca23ad84def9c3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"34cd6d5950080d2479052b3f332b702e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"09a96c82ece190d734f06404eb1e5b1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","hash":"f8c5df6155feb71c22fdca5ea2d10a53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"c32fe94e565a6199137fe363f3a40636"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","hash":"31f8129bfae39c459df7bd2d3cc37bae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","hash":"0fa4a82df6fea98c85dcfc6cedf4206d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","hash":"b9f0d5a8855611341e4cc707fd98aa3b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","hash":"bfc483b9f818def1209e4faf830541ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"7904ef0e6ab501cf89c04669c0b5d600"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"9f00531fd2765e9d53bb4803eedee111"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","hash":"fb2be6f27b32bb1ab12dd6aea8c5ecda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","hash":"7c89e8d3e17b2ff04570b741ce311e44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","hash":"32f5f78e5648f98d8b602c6233aa4fc5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","hash":"4c92351d347c52a00797317aa487600f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","hash":"0073f703be7f7ddbd7f04d1b740f35c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"e750d451a309d0cba00603d8bbc3e98f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","hash":"2083695b7b9150b87307af446032ba45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","hash":"a54725bc16ee2ca993762c441542c1cc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","hash":"10ee0ac3bc045cf4344c623f4396d941"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","hash":"20290eb1c157dcb3947d9e5b420ea50e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","hash":"6b92e06b2a6b070f593630943622f8e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","hash":"5a7bd956aa537e95be882d4809232c39"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"ef78266d8f88424f55e3135455ee90cf"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","hash":"d7f7c36978e85a7423fd87bcfd9a7a03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"d94743ec9e31da98eb079db06f418126"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","hash":"cf2b42c94ab97ce116e195500f147944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","hash":"30a4963c49e7dd57d8cec29b8f4821db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","hash":"8171c3b0d66f560aad82b73d43393092"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","hash":"5a944801c9b2bd3447f982168b31e46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","hash":"a878c551495aae9f415d298f162fd19e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"dd83cc86855f180335c59246dae38264"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","hash":"97fe7ee22c2d610b9259874f37014c82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","hash":"74fb000405fb96842a3ce15a519d8ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","hash":"9068f4d63af1ec44245b76b7ab4dfa48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","hash":"a97282161191c89d98231dfd655252c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","hash":"1059ea9e8a0e858f944bf05dcb7b8edd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","hash":"cdc3ed60fc9f8d6e2fd72afef2012bda"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","hash":"30207bb624460e743b557f58e7b39479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f54f6b61b175b0a37d51ff3ac8b8c800"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","hash":"bad6783543dd4de76cbac4872a2e1969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","hash":"3439e88de4cdc23b3bb0bc629e7f48b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","hash":"1632b8b538a5115973c424adb5380d7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","hash":"f3c87bba5ae0baea2e0768ad663e7e7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","hash":"809f1f0bbe7ee77e69f003952a5525d5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"a25be9534683056e76a7ff2a00de199c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","hash":"9f9383a378fdae3c3237fa40d6c8e070"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"e33cf45ff0309bc7b7e295ecd8e64c02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"97b528fc5160b67efb862edaee719648"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","hash":"a0c11bb2957ee28a1de2145cc233367d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"c7414d3ccb3bf26e8437eac2f4086abf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","hash":"34f75dd4788c48a2a7b2ce2efe4c51fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"84ab7cd659f8b1df06e1e90d50694d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","hash":"89a8b9c7063d78cb595e85cc56441cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","hash":"c135a8cfe6154841111bd7d4f7c7e69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","hash":"ef41b02d4257a466a4a68f493052b543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","hash":"1198e07cfca6cdefe5e54638d507f31d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","hash":"f908879081c20ea0f414c694b9e88fde"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","hash":"fd25090c21947bb10aa8adbffe5fd89c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","hash":"31e9eaae0175cc8b4184df6c89b454ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","hash":"e2bcdfd80ddc73e02b457e8544242028"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","hash":"c8ba4eb7463f2816b6b5c054b0876f2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","hash":"2924a2b4f15d6d9a055f71d47d94521e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","hash":"0744178a930db21a55b4afb9b80fa463"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","hash":"ed6e10b66c408845188f75959c15a23b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","hash":"f235e4dd0ff304f8ff7a0cb1e620f83d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","hash":"befbfd864024e35cb6b7752f9b4ac4d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","hash":"c6d3a43399dd0c6b8c5497bf5241a008"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","hash":"333ab18cdd4f86c6929556ed06e4d567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","hash":"3598a401936c6a9e0a645251fba246f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","hash":"5c4dc37f36fc78823f785b92b944560d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"249b2817c1c912b9942e8acc7987adb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"0afbdd6f1125195ec28ff55922e51d50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","hash":"f1e1ff4a88eabaa04e9774ee96497141"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","hash":"d8078d775520fa565079c39a3f62e075"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","hash":"eca10930a22c21b03e7217321ca2caba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","hash":"8445a7502a6450e9deefaff9d677c524"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","hash":"f0ffece0b01158318dbca4d043da78b3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","hash":"cbf041463d4a85115a79934eafe8e461"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"979bc974a11a3572cb5b730b00d0810a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"3a7a1f65ad7bc4d7130c9bd74c7edfa6"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","hash":"6959098d6067b573f510d80fa58d8ddb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"d571b3d9c3e078d8fd3b0bf9caf86244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","hash":"6cee72f673d593b0b84628bf243727a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","hash":"2b2385e013688dc5ccafac580f8f6999"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"75ea819a46fc37b000660901648c12f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","hash":"beea47c079349d8e03b64a5a9dcbc7df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","hash":"5327416ac833c200249d92ddeea11293"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","hash":"3b954371d922e30c595d3f72f54bb6e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","hash":"6a792eed43130ef8c5b35bb12106f303"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","hash":"1b20a6e406ca8e79675b2ebd9b362d10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","hash":"65fe1b7c956a57db85d24838ab970d2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"91d79fc63a36bcb3b575a511cd243ee1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","hash":"c3e8a2b9954b1a5d81e4dc3b74d162fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","hash":"cb23738bdb6f2e8319ba8e9dac0072ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","hash":"1f08f83d7a9240cb3accf35283c75bdb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"14b9c8680b6de7a995b4bfa53651eac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","hash":"63b92eb56c14d5474db11677f1800c83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","hash":"28eabbe1a08475df35ee00124b823e50"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","hash":"8944748ddfae167a4c9f3dc75a702e46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","hash":"3b0b3a91aa8c0be99a4bb314280a8f9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","hash":"b969cd0066fa07b8082edb76d2af77e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"ee8b3995a1eea74277e0b58b0e8fc04b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","hash":"84516bb884e27c54321d286d9ae9e9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","hash":"9d122acee9d1f43dcdb2ea88fd1fc95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","hash":"5026f3bc8f63a10ffb208a35e304f40c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","hash":"7d1806cb19bc0d23a18c2760d106d95e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","hash":"bb012047379b362d408e5d0c8bc6ff55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","hash":"b753c0207187489225c25d5554272839"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","hash":"3cafeafccdf2688fe36789f31e671cfa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","hash":"d881c458d06573eb887bdf0f3ce9f586"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"f01c011063a155edfb8217353e1a2d29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","hash":"1adcc56e3affffb23739c7c9d8a5fca0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","hash":"813218451c1d8dd310e1233bd4ca7a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","hash":"f975cf0e4e06eabe6c8e6134cd33b269"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"59400db677c60e1ddb3d79ecdc89e580"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","hash":"00a661dfeb90c5dba43ec7e638141966"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","hash":"c8b1bc30159a132cab814de0d71e0462"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"3ac176a9235973980af3b75bd0c237ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"c6014cf91769b13fcbd60242ce7ca6c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","hash":"c99d4d9f1de256e9caa04dc2149e2663"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"186f62d10a2a42d945d94b5ba32daa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","hash":"d414c1f995780a939e1d357efa0400a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","hash":"983f9738507c43e2eee65120e25d0785"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","hash":"04eedb8a1150a97ee060a82f95f2b91c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","hash":"30325626c486da5b0b5e6ca9d6a6d337"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","hash":"c54cfb081c273f7d29980b31987bf614"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","hash":"241ccb24efad22e002bdfe778f96b46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","hash":"b296f400a068b70100fa570a6134860d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","hash":"8a7e3b181572ed50e923e5dc05a7533d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","hash":"7494ac5a5e8b9d56894cd383fa6e9d91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"3b88bbef523e78633182df3f70dbe5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"a23c150b50d79965efc47c5ed47dd641"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"2b5f770e124b8f0d41d18ceccba29bb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","hash":"704d7f872888ec6e9697123a180fd95d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","hash":"d2e52e362068fba5e3f86800ddf3cc91"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","hash":"1d7b10a04a356e2e37151eb235c2db90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","hash":"fac91a50f448265e9a9f97994e8b529e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","hash":"9787d9b12ea9461874ea0faa9cccf9db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","hash":"86e0f9e302f9ac959626122751b65361"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","hash":"1c4127d99af22e5232df8132ae79beeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"0caf572d3e573a263a9ffee71ff67208"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","hash":"e97932f0cef53e2c018203ac3cf1c7e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","hash":"4fe97d87eee37e8a1dddc5230ebbf9ce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","hash":"75ba7e8a7322214ca6e449d0be23e2ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","hash":"88956349d04ce0c5fc6ae1e89fd65b2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","hash":"eb3c8293bce0e3d04f8f6ca79994937e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","hash":"984f27f723ba52ab371439e37b31ca91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","hash":"b5e211d1bb1c533a77b5638eede5479f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","hash":"fb64eb7ccd3a66090cd698eaebe1d080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","hash":"018e93669d12c52b66204d139de58ef8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","hash":"af7270fd3861278053b1c45a7b66ece3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","hash":"023daeebc8de153ee091d1e3cc9508f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","hash":"5f22b5b8aa08733c616d6f636a05f5f5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"294b01503572e239c505c014297fc4b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"d35a017ca116a68758fe9e289a8a96bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","hash":"b062a8e2dade00779072d1c37846d161"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"da23e9a23f3c0bd8f03adb30165f3f2d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"deb256229ac9a60b1f5dee744af2411c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","hash":"442a233329c158bcfbb129ccea0fe8ca"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"83f2fe11c7f72d3ea5eb743f8978170f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","hash":"15308b82e6b7d5df3058f8e769084a67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","hash":"e65733ef6887a9505fca66a22d9e2887"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","hash":"13eb2b4e1e2abfcd739ea5addab1ff77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","hash":"82acaf4c715888e486eb9d714c23b266"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"53f5ec04f6df9a78c3651e5cdb84c460"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"dbdee8b92f93123706efc22ba09f9ce9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","hash":"e50d0f9c52ca60c2b00a076e994ce7fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","hash":"153e569a429470f19962e80723cbf73f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","hash":"e2874f670fc80ccca43123509b557150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","hash":"a7c2e189af8ef0e494c5f50550ce8500"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"5057eb331db10cf132ee46e1f68fe99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","hash":"9a0bdbeb6a1452722cc91b80ee779998"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","hash":"bd3131f212db4084582e634bc232b43b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"f20b8958b0c35e9bbea75a43c9cf0e59"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"5f1b9eaff8ce12e7ce1eb00ec6656158"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","hash":"50b1b7bf5e4cfd21e9fa7a0ec26f0aae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","hash":"5e97dbe19781055ba2585ce570bc4643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","hash":"fd517e61edeaf09f9e4cf9e9ba8af13c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"6790958a6027b5951c84e721543745a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","hash":"a929730b53383c1207e3d75c57a45ea0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","hash":"afa8ae229bc41c02a6cd9dcbe10a81e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","hash":"908da18a3fee181ac432b85d7097e5f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","hash":"bc6418e88ab34ee846e3d4e32408b23f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","hash":"d5e0952742a6404c71b939292023e2cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"7f7a40cb54e941d10dfb719fac727845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","hash":"69c08243f2f74c58d6ad38b17bb5cb9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","hash":"121fcbdc1af81a0fd804490f85357fa0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"d0b6b68aeba6ea0b5b3d483ee7f4cb6b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"1e97a873901018a85c8812ec1d0b9731"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"e13d87775c63a62ee77c103021ea3f4f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"4213cdf8a94244f8d19a59844563dd53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","hash":"2241f880365723564463d0bec35a4ba2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","hash":"f7951193fafe9047a1634686ec649135"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","hash":"b9abba31a48a9c2caee10ef52c5c1d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","hash":"dddc2f13e029b11ddffa36413341f1b1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"6de8733c5e01bc816fbb237842e21b72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","hash":"99760254cc7c1941d4d7d7bb0fad045d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"b62f50ac1dc3bb09452f43e936636040"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"a57f176872c4264164cfd424a851cc6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"202a4e574b65775d1c57cdd8bcaab1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","hash":"6b943be06664ea45e0cac8c8178920b7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"a20476b0c2af5cee4bf0640aab028ee2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","hash":"fa2a57b3b873fb7db4b8b961735e4ca3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","hash":"01b051da3c61c872efd639af5fa0f4f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","hash":"4e3b785e94de8470e198d0bda80e23bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","hash":"b9283cabc57ae94b3c75f147903751fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","hash":"f4b8510296da48652b91a91857d7c71b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","hash":"097e09840cc00325fdbebaacd05f4827"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","hash":"bbfc82fc5cadc3b055adeaa481dfee0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","hash":"1a1718d3591a292ec85b4c24e55ce2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","hash":"a57c7d0bb0b0f3ff52fd48c953453bd4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","hash":"35618929218f5482cb77a53849ace21b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","hash":"3b32647556f88ddd6d625ddc58c7691e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","hash":"3575776abdbb8b6b6ff78edda77516b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"59bce148eeb78b17151a78113324748b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","hash":"0ec94439be7a3b65b67cf02ae0824af5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","hash":"0564ee9e759fe52b58de8af3d5d0f9b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","hash":"051cde8121025c728b15c2e7588d8d6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"bb1616431e7e339d1d3ff7056d346b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","hash":"176c6b2c4f4e2d64cd55df2a0dabe5e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","hash":"d1a447c33fb026db3ec5e4b6ac445551"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"eb862424fb59150cb9eb3ad863a6ab19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","hash":"aa27dfc54687394062db977707839be5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","hash":"e0af2f414117c942cbe5e23f4f60ba3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","hash":"3b7079a373d8c63eff5dce592af6647c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","hash":"2a02594ad813d39d23460e2abfd2551d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","hash":"0615f9d831d9b19a15b6926d9babee1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","hash":"18d9d372c2f7421114cc2a2df21d8206"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","hash":"cfa13a81d06c256567bcf9c8474aec6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"28606b06edae379ec11d2d93ebf93508"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","hash":"25e2aff82faa45ee7c3cb05fc8aa387d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","hash":"fe2df60ed5b05e922df2ee9fef5cf5d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","hash":"0cb51131f14d4d8df95aee83e4931780"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","hash":"e36d334fce00f81c8efb9b4fa288f0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","hash":"0976264b99a1702a5d74e9acb841b775"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"dc7c1a8573288b247063c6759a011b7b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","hash":"3796ca959ef2c6e4bfd668640a318ad1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","hash":"5275d424aba5c931a30e6bd3e467027d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"31fac5b5882f19d242724b858b97d228"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"28f7439b1d946ef75b90f18af1a350a5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","hash":"0d464f8889947907e0d2ce2fcafb9dfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","hash":"1f65c98a00f4c2151338f0d803b2d1c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","hash":"17d3a0211da3d73d405d8730d46caacb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","hash":"feb9d01ea95c554272c3263d1b5f840e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","hash":"e127807dbf170db96c668c840d9821db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","hash":"6ce4cf18b9c25729d5868ca9f5dfd1ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"9f7270100e64dae8750b9ae54cde56e4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","hash":"e146b44d78acd9bbb61d2d9f9fcb922a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","hash":"fbd82bcbc9e665b8d098f0716297aa14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"c29dd136dd5ed20e4a1cdf451b1f52f9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","hash":"30191f66ed437888e9e12cdc67d37c95"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","hash":"c5f413565439b173df98b83f1af3898a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"1e83c6270f0be9dd2e6457fcf059c9a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","hash":"9f2e86f55227535568e0459c4d51e139"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"83556c46b56c94715c7e42dbda413bb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","hash":"300a55743890abdcee4f6f0ac897a3d9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"10e637b148cf0219283c32cd82247317"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","hash":"8986177ba204a808c603c35260601cce"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","hash":"485043a68e11755920abd67f229ffe9d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","hash":"6ed688f382406e9c782f92df9e965fac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","hash":"860a0e6b23bd728899d9bbad3e966f2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","hash":"ebf62f8040320f913d52494eab3f3dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","hash":"c39101179f8bdf0b2116c1f40a3acc25"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","hash":"d98495bcbc301290a10e6d1dfc255d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"eca9a7a317e1f0d515f9912740c592df"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"29eb69935c586ca665d0f6f7aa84a06d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","hash":"ec2c8a676c3ca12891e9a65ea03458e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","hash":"ae166113e6ff5a842f58d22d959a82f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","hash":"4990e198f887619ece65c59a3de67869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","hash":"304fc982848b57cf13da0ec511f05ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","hash":"531d1d96bce7aa59a6109c02ac538cb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","hash":"17cf81dd718b76ea3b1453b5f74e1cd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","hash":"3aa843b290b927ec2ae60e30f12b4ab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","hash":"9eb3cf0f33c573aa9e8424441db78539"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","hash":"add5f0afe8e318e91950e5725be6f333"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","hash":"83bf0c16af93652e46e4bdf93d5f12fe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","hash":"2faf9ca0d113c0ed79c6651a9c1f76db"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"97806b975917767c55aa3332c68f2404"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","hash":"d1ee0303997b5b50b6e7cfd972f6ccf6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"ea0307aa388ef4ea77725e722047e72d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"16cc4a3c97bbfb29764163f9783954cf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","hash":"fe4f36f2c139e1900dbda797a7e07fc9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","hash":"6683b2c06b0ec964286b1a54f7e2803f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"cd7c911bd9a71d38d369eac020542e94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","hash":"694c3cc6e2d326daebadef63f0b05666"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","hash":"ddefd207562d7e33dc44d433e0848e1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","hash":"dcb1bf21d8afb364e20a47f106496780"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"07953249885c3b6a0f9b209da024e6c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","hash":"b5519514c9b9570c951c0da186030e29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","hash":"55675ef4bbddffa94d962bd52b3088ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","hash":"e0e6a22d50cab6e16266023c58517b54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","hash":"a8499171c0b67ca96b9f8b0462e1079b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","hash":"8b403a286f7eadba8a7c7e6ce1a8016c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","hash":"4b47948751192afd79eae2fa8917d954"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","hash":"49971663c818be6f5c1da5fe3bdf034b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","hash":"59762d927d3847803fdbe28919a08ebb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13c9680b76d03cbd8c23463259d8deb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","hash":"0e65f16e8f270ae65baf85523fb72141"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"5b28a1ac6249f272147929f5c2682912"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","hash":"cfab296797450689ec04e7984e7d80e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","hash":"fe7e235a7623f4d325eb05394e6306f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","hash":"87546066dfc566126ed9357805535e97"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","hash":"39f3f867b205cc97161c2209bb84964f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","hash":"5164e5af0ccfe7dbe777bb588e91c937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","hash":"de49c234a47c24f91be2f223476fcd44"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"5dece601afa9176d17a2f17f462f976f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","hash":"7f30d05e05b047b274b1c4b45391d698"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","hash":"a1bc06d1d53e9b47b32fbdb4d323f44d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","hash":"9dfee6539c8500c134b4ff72eeccd87d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"363dc40bd108240cb513878e107a260d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","hash":"57e787ad7ab7e659258e3a0171634d3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","hash":"532a272d043c3dccd91b63d1b428dac9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","hash":"a0ff9321b483226cdbe4773e33779715"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","hash":"db647290a1e99c1beb871fcf7ec44e82"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","hash":"99948786c0d9f0b9de45c1b75e5f44a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"24afb8a8ec6e6d1ab62702c8cc554fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"8144b7908238f72cdf9bf921ec61b200"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","hash":"24b206328a01c6923f0c599c64088645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"09a30da1952f8931df150554b700fc98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"01372fe939573ea2c3066bec70222cbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"9b741ffc78219355087b8876a5f2f6a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"b6ddece86289abf66c16e08325be5e4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","hash":"145a18283aef042bba506a2190347763"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","hash":"cf38ac99d6e6daaedb2791d07af7f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","hash":"15ee18405ccd7752c3035b2f3b86e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","hash":"e999eca1c1c76717a74f50814d129d17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","hash":"749e18efee29d6925d7c55e573d3eb2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","hash":"8016baf49ccbce205455e3fc0bddbb17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"5802c95af0b70a643e4566d6a4f887af"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","hash":"8e15fb39d712d35c4021c339ed1822c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","hash":"7ec268e37049e5c22e226c94df1776b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","hash":"230a3518091834c1ebaba0eda6ad491e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","hash":"e1c4eba9ccd9a12c58e4e531e73fcc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","hash":"4c94c1ae460dd53255786f0ce3b53463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"19061eb5c67d5853bf7a8f53406a083b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","hash":"33a37c05fcec728f44c5280e18129e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","hash":"b8a405a7e5ea8001bb0ab36de015ac6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"01edf2016995f3fcdadc212de7430b99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","hash":"f52860ffbd4c6858f092292d1589d556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","hash":"08b6eae008bb8359796643eb1a639234"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"97fc1400dd55cb4fceecb33260f0f978"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"5b894ae18be3e2442a34288833184ca9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"36b808e976f035411a6b13a09cca7717"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","hash":"2e130b0e6cc669eb69235f142071943e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","hash":"49f5232a2ded0fd41199247ef043772b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","hash":"809e8ac7250eb66ab4d713bd65f5aaae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","hash":"f594087d1804ddc538f758c0059eb6da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","hash":"8580846ee9612281791cc377a99d0581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","hash":"ef5d77a8181065ceb0e93986c1a6f6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","hash":"53b1a2074650b8f2808e620e2b9ddc41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"c7cabd6637c9917d66f7c814682f8cef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","hash":"c60f0503c7dc9addd109be4c44197758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","hash":"7ff35a1db7f2b80a156d464b075a09f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","hash":"81cd0b075cd4d742a83ed1a6f4f801f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","hash":"05f74ab5ea1d7103ef8e4f9cf05caa5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","hash":"f29d1458f73f015dabefc27f98181f05"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"3058d37db340224b0e712b4714a779f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"e3825f51c0135897809a89cf7af42c4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","hash":"b92ed901e8df2fde6d4739ed5e59051d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","hash":"092362603d55c20cda672457571f6483"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"a9d4e4b3f6357c540f77101737a25e4e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","hash":"16be701d0e77cd0f89f37cbfb1bf10ad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","hash":"c81713fc58f35111f30b5ef09b79cef5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"bcadd68b799bedc548c0243c211ec652"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","hash":"35abc3f166f0485c87a21f0fcecae69a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","hash":"37837bd1379e66f38e4a7775b6084d0e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","hash":"b60a2076a519fde0c9162319239b25eb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"cb9617d35408474cec5c44f6d57c0faa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"2a5ea48301e3de49528660d81bbad42c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"0b594cddd30fe9d0d34a42f5328a2b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"1a0f6fb989f60a34770d3667e697603c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","hash":"9c6f87a0150adc24004a99cb321345ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","hash":"6745a4321f65340dc91faae80415984b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","hash":"7e3f918d0bfe4e1806f1187481eda29c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","hash":"4aedad37fdbba8c7bace80a249a67ff3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","hash":"a3250d5fb60cc8b17997c886a67be737"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","hash":"a9f0e05b8fdef7080a8053dd02ba8ef2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","hash":"597ee0cf67b512406e619cc05fddadbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","hash":"bb7e4bee2f9cca7b7e771e5ff413108d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"d34d9b212543fc7b9be0aa2629f644be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","hash":"3ce0f30d7026f6462449617764734437"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","hash":"20dc50b53035a8e953b5d4ffe6948ede"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","hash":"f06285441f011c415850a378771be4b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","hash":"034536c8c0bdfd72d8f8060ea1f36f3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","hash":"796d0d545778c85ce27a9304092b5ed0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"ef404628eaa9f15a2b25a2cf99a6df9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","hash":"61f38162c831759dd3768aa4cf2d22f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","hash":"c4d6b1cc1407761dfb2b51713416d679"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","hash":"5bca961ad685ab10214ea12d5a120b89"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"15bd155c4ace05abe4d39c725cce4f51"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"28bfa6a255f9e9d16e0ae25511179fd2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"a2701656bb3160ea810ab576c50cbd65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","hash":"0400c53ca2e9230b51a6f361146dee28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","hash":"77ed8d7112753d0eeaa860ecd9fc5ba0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"2ef90aee578d834f91ba85c1f44cf71c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","hash":"f45299fdabda0bd3b2ed77068c7d1de6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","hash":"22029a1632b4f7ca4e7271bff29d89c9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"079edbcc1283bc93f993199865e3fffa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"64e440b4de7121a100d0f99a8126b6cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","hash":"82c3a291bffe63fdad7d6e4bd5b0a0e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"c669ffa0ef13b4a5c5d951c7c677a057"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"d48d52bc573d346cad979541a2f68329"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","hash":"72e3f09580a88c2aa3ce838611e0a25d"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":"d2e911f4f90d6beb874adeab92bff19c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","hash":"2d04b343ac3e272959ffa40b7b9d782c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","hash":"0f1d84a9023a931b4b3cda6b907d76e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","hash":"2e46417042b18a7fd19a9d6c90fce1b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","hash":"7f4803fefd76d9acc343598ff82f512a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"c3133dd829b0ede654f9ac03ccdc9b4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","hash":"b4355b7f9f9e50017ce52a8bda654dd1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","hash":"4d7ff70b73cfe04b14f559266b5a991e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","hash":"a60dd773b7d69b347521fb64257f9397"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"31cdb66ccc93a7a6b179af6b4db7790b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","hash":"daeb052f1089d4e84d8a22acf56c1da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","hash":"92197f660f809dbb94c7d3d67b9f24e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"29bcbfc3fc36aa9f730e8760f765c536"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","hash":"481d21ef07dee6f82302a015f989b597"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"d3fc00fd023c392cb5a19d630ec45482"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","hash":"8898ba9f5064edff3e9fbc9889ba9dd0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","hash":"a4bd9e0add3bd13842fedfbd33ba0192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","hash":"da1662b9c25c25360cd487c1b4ade3ab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","hash":"2f6d6663f131dd0e24f37f58530342c6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","hash":"eb1f8c19bb309d54e9efc12e5162e3f4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"57699e53ee54d843153d1ef4dd086d64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","hash":"dbf4f1e95289bc83e42f6b35d9f19ebe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","hash":"2c91507ecca892cf65c6eaf3fbe0a7e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"a73bf48fadeaf5b28dfadc67ce067e0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"38a87ff489a47bc024400dc863be326d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","hash":"6e3924fcfcaa29ba9146915e7603139c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","hash":"6782f277d348804f26f7a748f647695a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"f9cf43c94d23a1e1093f4f1cfd789d18"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"43003295879b7dd8a2a4c221698815e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"945e46eaa95fb690603786f3b0386e1f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","hash":"c226787e49d4779d8fd575f9bf26e298"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","hash":"ec42ef810171a5795d12e7ae93eadbf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","hash":"d75f62f03297d8fada84de77f3e92373"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","hash":"0663e41383137de0068cc7a8bd70f814"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","hash":"5f0138a157edf46a36bd960b7eaa9885"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","hash":"f360aeb424700ec81ab3779a8e05a386"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","hash":"faa18ee55924a5c65995875c94338d98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"a0836fe16e69a1daeee421a5dd73f761"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","hash":"5be59a094b276fbbeb0a2255d1c45e2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"6b14a70bdd2f31926c1572aa2cba523b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","hash":"1325fce32c39a3792e3eeab612f942f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","hash":"dc1a141705a29df814f129c65b47b5d3"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","hash":"b7ad782f730522a58cf2946da0419352"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","hash":"04f2a3236f9f0080d5571041a0cf3567"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","hash":"9e2940d007af19bd5cf177e3be339363"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","hash":"e08429988b4639fb29cd66bfdc497d90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","hash":"a79e2b9a182eb762fadaab05e9269edc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","hash":"d5c54cb86a7c6b930659e867a4b2fdc6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","hash":"9554d9749364a5e33fc853c08b09f076"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"e45e5a556df7d57dc9a7a3ff9b0370ef"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","hash":"3d1f01e5d64f01d4b5efd76cf609830f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","hash":"f23eb0d7ef7ed55d6331d493f0b7c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","hash":"e5349492be89ad5eea4187db08b2ad0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"b37ded4b59c2d4efd0802499d6944937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","hash":"a29ba6c14a2b2f3099b30d0ebc285446"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","hash":"d69cd05d9de1731242d357de56893a6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","hash":"037df9e7342fc8b812d985c8b6e8a0c3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","hash":"fcf700e37a2ca8372a19ea695ac704c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","hash":"1a04b09efdee92cd9f3e6c8f821820c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","hash":"9ab6d0a38467598c8e1f332648cff545"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","hash":"03e34b6476f2a5b43080c9fefcefe9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","hash":"a1c59f1e780c22ec4f0e14f6a1eab0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","hash":"5776e262e9291819ba2122854943ea6d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"ac8dd5bc57b10e3480c7e09e9a209f69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","hash":"6bffa45d429f7b71ea59f5019bb83a15"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","hash":"62cdba000bd3a2c52f31f32a38306c18"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","hash":"54c7f23362a7e78be04b113d00022090"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"9d9d9fdb1fd92d1375e2e00271605fef"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"f07906ec64450887d6ca17f705f436f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","hash":"87061e866d20d4a66d6990c36638681f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","hash":"69c4980a512a91477aa1a6289583342b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","hash":"9ab11d900c41a880b39e97693f383b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","hash":"831170e2856529b531c8648a754259e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"e76c07fd6945a4eadb2aeebf87b643bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","hash":"2676ae1a6e48da385bd3ddf0fa233a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","hash":"3f719070987790d062d9ec084da306a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","hash":"242d63b96e4a26d3b557a32d0a008a4a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","hash":"d16cbe643e1b9f1d249d52de66e9e399"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","hash":"9a7022bcfa03c67d126e948062508201"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","hash":"93d835e43f33ca5ed96e6e85a392c1e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","hash":"3d63c4213a898f6e0eb52cb39fa282ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"a5df6e3153b654738dfd5a67c799e6d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","hash":"737fc999d5d26218c34c7423fe061f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","hash":"4af79c5c69ccf0cae6ab710dfb84b125"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"cea2237f09873a1d9b1f818b1eac15c0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","hash":"a617a91b12a3156406da1d95552aa4a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","hash":"494881558ae50a1d5273ceb66b43ed85"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"1567f48c008c53e32ab90ac581eb17a5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","hash":"23a2722ec06cf91e874fcb8c534b470a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","hash":"70b1e13ee34c56eeaa448a1432a0b519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","hash":"9dcc50108fd667c7744d5bba6b51e1b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","hash":"4bc463f9c4b5496d8918b58070c10515"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"55bc3d14cee7b79419f78a7f2678d6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","hash":"4ba0a4163d73b3df00db62013fb0604e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","hash":"b51cea8017e3cbb294fe3b8066265c7e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","hash":"133db2e371d34eba2a099b23dac8123f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"39ae8ca0fa3f0caadde0497b84eccbfe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","hash":"1ab2b4b439160093cb35c9b0c739bc0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","hash":"8d9c84de01d7084606586631ac759a34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","hash":"0cd5a938f3a3bf96aa0d7353906eace6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"ddd6579941605dbfd6a3a213cec979b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","hash":"57d7f8362700a89d0d0c97e7d517cad3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","hash":"405ff2b0c110ef10a33e496bf7db38a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","hash":"59137da0b55aefe8a4074891792a55b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","hash":"6b3c8cd4c0677edeb4fb8c22d923657c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"8d23c7f8747db9d1a851ef07e5107378"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","hash":"61f9ae17975d4d233db25ee3f27633bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","hash":"57a5a9f535e7c37d09bab9aca685dfd2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","hash":"dd4b0b0cda09094ced3081f462b2d422"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d63ca0c723f6a99572c806b4ec989036"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","hash":"4ecc0e7678d4ed3bf62a04b3e383e424"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","hash":"c517fb54b3d66b22988ad7c8d07c6f53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","hash":"59c4492b4ff3d2e5424c1903bcb8a271"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"832d4f6b469c388759ffcaf981e16f12"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","hash":"0ac907e2256dbb32ac0aff050f4045d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","hash":"55bb53dd4f9ed89c9ff88c204b59293c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","hash":"965792db4b01d58da64391842c6a9a1d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","hash":"66f280c66f95d03902082cdd2b4255e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","hash":"5b4c5872973fd946c49c0ed7df0cb07e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","hash":"7d49b944ccc5ee228590126488731a95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","hash":"7cf8d9762d1f2226ea94a1c8ce1f7265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"4326580ee93b3a584477cc185146eb2f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"622fb6ce7394816d6eaceb396769c76e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","hash":"f1f175eff474684786b1b6980f386aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","hash":"c668a1bfe65f14c115a3294ac6502dca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","hash":"94124aa8c115b3bc8553ba80c419ceeb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","hash":"d1dadfa45cfe290ba6a9aca2c239e289"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","hash":"8355566a31f02cb53e7f9b94d8c873ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"7cbd45f5de23f600dd963c6eb31d6851"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"ea75ea73bf570ceefb21bed44d38a168"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","hash":"07fa95aca6c82e2f15c0007388cef3a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","hash":"9a478fed4f2f15993c892e33f6fd766b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","hash":"6eb17212266d6f143295fbec385617aa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"597dc25df66b35f8b1f2ceb6a5df4328"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","hash":"bd08457ce7d378f126bea891f669b69b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","hash":"ef40ba86423f614b2b841a3a11478937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","hash":"d945f1b87d2191f38f4d677627c5e442"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"3b5a9eff22ec4a007c4983c5d145fd88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","hash":"b020749262d0d602700cd21e6f41acdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","hash":"af29a3ea1a69b956f7915a4cc29d4b89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","hash":"5d0fb3d359f4af000209c65b873ae97f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","hash":"19ad609d2f555c552877714f4b07f150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","hash":"49f3213e86d2bafdd814ac4df3d114ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","hash":"81e7d988ce6f8a20230e61cdac83f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","hash":"3d18e1306d78e114f98c9dc311fbf158"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"161c0b2bf8b65501a373115d3cb525f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","hash":"35c142ea243059f941a4a896a8e053ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"00f26750b380e279fd67c68c79734999"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","hash":"aca2926dd73b3e20037d949c2c374da2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","hash":"a9e1c7b28293ccedf0594edcf59ec4b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","hash":"4181db4115c5cbbf774171b3cde1542e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","hash":"fcc4d991b068e4103c4ef152baf65fb3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","hash":"bd15738d49bec303fe3d234de40503d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","hash":"9a1e38007af02b923a4076ab4e989f48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","hash":"2d06e55a087b389063f0d5777e1d8563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","hash":"17399c5876a7f1c340f8814cbc903b10"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","hash":"831a91029162697310005b2ad492c0ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","hash":"5f173a5c0de15909e95d3275051138c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"6267a1d85ca89f88f1b31c1753857593"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","hash":"4c00fd95f493a02179f1013a29629e43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","hash":"4b6bfd3301413140ecdae9fd2f3db0ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","hash":"c17706815151969aa7de6328178cc8bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"2ea5fc004c06135bbb80e7610df0a2b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","hash":"f7329cc0811af555900320e49bd9686f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"2228217b45cebc797d335ca823de5628"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","hash":"c3e3bdde1f486b799e08a1ed1b99c76a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"3cd10797ca791a0821b3926e6a5f35e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","hash":"e85b4f3cf370581b3ef11497a9a5bce3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","hash":"0b0a3415aad49b6e9bf965ff578614f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"6902970c798c00c3d9be3d38d84476f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","hash":"49b829330c9d1fa06c2856f5f2266921"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","hash":"e439e835e5295ba822d8db4be0508c24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","hash":"adbacdd68acdd5e35ce91a3475a1be38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","hash":"46b6c3bc78aaea7e746e7525f097c370"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","hash":"c20dc5b81ea6dddfc61f66c603afd971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","hash":"5239ca253366a3b71796f8e9d2baf065"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","hash":"1a8e27f4b3fbcd0df1fd0be10f303523"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","hash":"b1fae9295ede41ffa9f747205458d1e6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"93219dc70f767a24408583015695d38d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","hash":"8ac537f4af05ad812e8cd29f077aee24"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","hash":"8cbd679f40c3f8e0bd00dbbd6bfb8f79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","hash":"35c9371cbb421753e99a2ca329107309"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","hash":"bfe2918ca374e53fa6d7f36b62298bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","hash":"5e99407d87eef382375ad62495706f32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","hash":"dad9796d04d76633de091aec36be71c2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","hash":"38d7929920e46438585ed549abb3690a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"11700160ac26458c7b8f858dc756667c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","hash":"e20355dd45521a6de91669be6cbfb3a3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"60404027f0989ff65bec1d1afe1b3866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","hash":"21bea147ac9531ac715cd99a07f55866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","hash":"7050c8c94b55eb51260ca54708b460fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","hash":"d39becdaf9cc42e3efd0c9cdf0034ac4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","hash":"4b59175aa026b6fca1ec88860132b3e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","hash":"579bb0bd41c172690d80937bc1ce3b4c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"a65b42d17e5fb18d7a4677b1cf7a580a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","hash":"0469c2fefb6084f264cd0df8bce7263a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","hash":"39348131fc86fb08a42dd6b2d1b16bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","hash":"c9b70f4004e9ec7f0856ecc0e45430bc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"b041b21cf2748b89bf2d86fb125b1f11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","hash":"f2698cdf4b07ce88e4996e23f26cd0da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","hash":"8adb5d78a35b1e7a4653c7ad239bfdcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","hash":"f28a95b717859fa14ea8344e766e7fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"3f01af140bb202c673d2e8ac00cd9c58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","hash":"5cae30214f9509b4b47641f1d38b7fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","hash":"4a9817f509bb8eb7192a89fa9aa015dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","hash":"96ed4c0b2ac486bba3db2c5d2a96afc4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","hash":"8a2e692d7adcf4c9e0bd0f85979ab7c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","hash":"25ff828118233f5852e97c3e15c2a5da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","hash":"88dfc3805839516a8f89ec1a963e0f08"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","hash":"ff402ced5472590045b91c0f30e4b089"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"60109ddf7e2c458b410cbb55fb79fb2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","hash":"6a38c376b8edbead42348c54f9f12420"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","hash":"b842bb3a72f625b3767794ccc25e6e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","hash":"7eae5454728dc152e90d36cc6b715544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","hash":"8db9443001d816c1f89abdf5bc0e7c7e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"53e9b61b7396a9fd3a94e7b7e33dadcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"9297b44982d52dd6e4fa751a8032abdb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","hash":"77fe24649991a149ec3886147da46e40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"2285a845b6ab95def71dcf8f121b806b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","hash":"210257ed62edd783098ed34d7cfb0204"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"0920bb7ad132c49aed7f943decb1558d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","hash":"32621d3d5949612fe2c614d37bfaf7e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","hash":"d8bc65f055ea77fb51c719f8239bb878"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"6a7f49ff645804c67a62656a0046ca5d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","hash":"c932575d5afb22daa2456a44889b3cdb"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","hash":"0d0fe87e78a361739f89e10ad6e472ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","hash":"46d014f5f4ff404b81098da9b003b770"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","hash":"ef93f78a8a380eeade385040b1d075c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","hash":"5a11d4662fc61ed2bd835a4e6bb0f47f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"6c0b758a4a7b8966ccbd64932d1ceefc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","hash":"087f211902225140a323fc8295c9ff6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","hash":"30b3454341d40c187ec21020db3a495b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","hash":"5bc3c944f62b4cf5d382a0c0e9b7e09e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","hash":"b9d74f9b99fed32e71f391bc43251c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","hash":"47eb0e2b093b486abe563cf677b04f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","hash":"8388d5e13155ebde873438c26dc4ca33"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","hash":"82509444e485e0132bb19037ec94eb07"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","hash":"dce5e400c1f0958583196f9db05de7b9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"5bce9844f08a797bc490d255999c44d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","hash":"01c25b2dabe912c532a94956c2e40c8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","hash":"87bcefcfff19652ad296ec7005799840"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","hash":"88f7d904c8290ecf9806bfaa4eed2ba6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"b4285b9bbc77e4cc655cd8af92485b80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","hash":"c679024d7048e142ec507a2278764161"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","hash":"d36205839f51ee14bc2d832726c52853"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","hash":"4000f838484ff00d0994bdc1d215d359"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"c8fbfde647968a9750131e39e57d58b0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","hash":"89ca6560d39efc4e7a136aafd44f8e49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","hash":"286726a4ae635c3cb149cd640c3c096f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","hash":"0672d853d5097a03eddc7dbe558eeabd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","hash":"9be7f7af9a9eee6a84b8b3892e567a28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","hash":"13c8dcc201f970674db72fbbd0505581"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","hash":"8dac3815609f98dfefa968bc2ea4a408"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","hash":"6438480f29034a2c6acd5817c656d94d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","hash":"d7be13ee7803d293bd92452e5ef3da27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"8c1da8fe85a78738e78bce8ebe3ccee6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","hash":"6905ddd5343384c6898473c3d0a553a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","hash":"4be027cea386e739ab623a805182646a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"431a6eb92e625c69732232c905c8b91d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","hash":"25feac2cd9c96cc475403e601757cdaa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","hash":"b31d8b7fb97262fc5eb62171864c5c80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","hash":"71eaaef10eca13dd60c5459f65db0e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","hash":"e2855a4f7db421253212d56a277c54a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","hash":"443fe4357544b85c13ef051cf37a602f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","hash":"49d6d829ae481b2570a290401389d149"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"c87e92035314a4d3e52faf886355d0a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","hash":"cd103a8b0a9727840f3bd8bd985ad677"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","hash":"81926da83d9ea41cd5ad389174aa96dc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","hash":"d8b980603638367071e1f1c256ebd56f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","hash":"fab8d6d1b0e81315a3d78131394d31e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","hash":"4a83689a30f6283c87f680b4c54bdd91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","hash":"022ddffcb01934fc1b0912fcb38de832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","hash":"1b3ff4e1a515487aa9ce23ae7fec0100"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","hash":"8f29b74ba6fa81721ca1cd98cd39ae4d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","hash":"18e902c0d484a6a2e0d68837fc5f003d"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","hash":"496db2c69d4976328873333551077fb6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","hash":"bea1f59f6923a9f56c6d7b785887caab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","hash":"c55ebccc440e68cd5b9553b5cadb9781"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","hash":"5ba6e004392bbc498c40ccb026b0a845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","hash":"a8a7af5aadf8748e4bb6a28b08be67b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"c83781cf0c38883486f707cddbb96773"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","hash":"21ceca6b2a9506768e08af4b33e9879f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","hash":"40156e00b5f6a885cbecbeb24e74f299"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"1c6f4bde2f41b6d50498e3026f24dd1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"6cb8f5330e475639e0972e210094eaaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","hash":"3b16ecdd5d54828bc025cb734031d11a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","hash":"150f91352c1070fd5f15a65ba10e9cda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"d0529dc5607a93f7ae3794cf396953a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","hash":"7c57a9163e2c905ac90a6616e117766f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","hash":"ec94194f35d48443f468a3b06ef69845"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","hash":"e7ee3c364551618835ecb4e3afe065ff"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"ff0c28954cbb930913ed52a41f11189a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"aff356351126de3409e033a766831f87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","hash":"9bbe69dd9a1b6e7cd87210c8fc19314e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","hash":"868fd1ae52dcd191d04c90dc4a26dfac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","hash":"cbde849a0d8b182c6b30098c330308bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"379e8b5009f9922662800bce4a40fb6f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","hash":"45a20da2b86984fa0b29030dd190c75d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"5d09262a3e0ca19a25f44e0335d37637"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","hash":"a0f12d72bbc64d6edba6d1174d5603e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","hash":"a2af4cd8f82efdc948caa14f45b9fd70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","hash":"a88c6c3bfbfabb9924b6b0c3475f45b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","hash":"1a7fe7a35dbd168a7f2e10065f4a3158"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","hash":"f28d182c1372142b6a29e43adcfa8339"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"2ad6e7a63593e3a472515b373c9aa8e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"8269f2342a47cc46669c8b5262876866"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"b4e737c00450df676724cdc880825116"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"7c4bc9f9bec60c0636f78923ee1d4e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"c23d3ef5560b43a8b8f04a3857bd6b1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","hash":"6f060a03e28c25d797360a2375efa878"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","hash":"3d2b72757d0604ae307bd71ceb16f6c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"a46436908bedbddc369b95d0eb67c738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","hash":"0e01c8fe91bc7e95b9b3244d2020e07c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"221f729a18a7fd7d280e87a08cf7ab79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","hash":"5f5c07df31f7d37780708976065ac8d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","hash":"25e4e5d3bc90a692c908c5eedaaaa97e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","hash":"1dd695066bccfccf510bb80b2b137ad0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","hash":"a10eafbc71350955a16e4e787402780b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","hash":"5c4a5af039aad32f5ac9bdbfc1536af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","hash":"754560d00f3c24825e656e9d7e03fd6a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","hash":"0ab8c6ae2a539e1eee8cc8e4e7cac2d1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","hash":"1a8913505e5275e2ead5a2e0752d1ac6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","hash":"dfa5338b5b93f9705e9f756dc0327549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"309567ad87eda6c4d2933dbe4250d136"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"4bce21ce9b0374571d7d8a49d4a0707e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","hash":"21e56afda1f096f0425a34987708ed56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","hash":"9147a0ebdb209d3da9ae7cab703710fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"30ab21a111fb8d1e3b9c67e83fbd9efa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","hash":"58f14973ee61401b0bf79de491dd1e69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","hash":"f0cf3060fe907fd075c49261e69b477c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","hash":"474476ae5db616e0ecf5e488efa202f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","hash":"5d142a0e36f1ebc5b5f2a7d03a3c6e1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","hash":"f3747e025d835d0ff5cfd904d925dea2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"73d837564acafc178f5bf73dc50994e0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","hash":"586f82935199530ba7ff15a9a7cbe00c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"b6eb01fa913a0828787c31a1a01939fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","hash":"1eefc5159733d48f56cef3c8af7b4c87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","hash":"72d27451431aeaf0b4f073a66bacf00f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","hash":"68634d4df864077f507d84d92953a99b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"af6f0ec90bde68bca524edf6a9270e54"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","hash":"c18ab890f45960c7227edee678cbdf70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","hash":"9cc3bc193f4ba15acf07b6b1d46d879e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","hash":"09e8efdb71459824758d4bcbe6bdafe7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","hash":"e8c1fb168963c9e062a369d72d2dad6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","hash":"ec3a274c8e6537ec92c8d5f877a670ae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"34db9d7c9ebc27ae8cf7b0284f83365e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","hash":"7711f4b6c3574cec77169f2d2c35ee3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","hash":"5d10ebcc18f13e0b7d4ba4f8b3d2eae6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","hash":"d75fe23c75429021b8f7fe4e57ac5d49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart","hash":"accb24637ddbe55d7a3f76e4618bdd22"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","hash":"16115596ace5bc18b10c61743655c625"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","hash":"84fdc97cdb402f94c301f5154682112f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","hash":"da654b6ae25dd581a1b5f1084d769c91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","hash":"873f842bb40bf6525129af58dab2e62d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"84bf57329e0844bff959588b675ee251"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","hash":"54b556c56a02a636de1790f953f298bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"949628e68d078ec5a0a3f998c026d556"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"905820743296f664dcdf79064ea08aa1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"9bdb8226a64b47b9b7ed09557fa63ee7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"b76c005aa044aed1637709e0570a0113"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","hash":"c676aa7c12f7153ddea49c1316ea9dee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","hash":"4171ccc0ef5ccf7a3355589667cc0450"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","hash":"fc5bd8041afab0229dff18f2011a51a5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"4bac4761db1aa945a1bbf1db8c88ef92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","hash":"bd81c6cc5eb829742ceb3a955cd852d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","hash":"228413c644cb471229965818da205c6f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"97abce4f63be03d0be5b79cdae97fb9e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"af985de6a8ba714f7841d5c113505205"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","hash":"d96646e5f342c3ff58625f7edeb8808e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"67fc3252c5cce2788c332809678ad2d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","hash":"7c666bff17f2cfae821f93f0c5e66a64"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","hash":"41540e398bd3cd471052b5b4ae735519"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","hash":"d7fab9eeba6ce2b3fae0a93d5622ac93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","hash":"fe0f3503d326c72bc31945d24f76946f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","hash":"bd502c5f75cc8148d708eb3e01c02765"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"c42e90dc6ffc511ab7c13ef0cb2a26dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","hash":"9b97c69821fcffb65a844fb60bc2a4d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","hash":"7c90678e488e43e059394cb44fcf4b0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","hash":"c050fb9d5c851547735cf2c46d8b6288"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","hash":"523ed6788c525699c2e2d6e46531a727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","hash":"34a4d340931147322eaddc77fdc65c22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","hash":"075ab668569c4b788afdcff8d81027ae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","hash":"95701ee376845a2050d29814b7acc7a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","hash":"0748bf03bcf37edd1d571959e45a5cc0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","hash":"561daa1b637bf14aa167a49b8fc3ce6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","hash":"95adecf7ec0db3c154665406582e0513"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"62ad9c129e91d2abc0d91a21502b8549"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"46be5e56014db4fa892e3a949b0904e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","hash":"ddce6034695da8c5dc36994409d26189"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","hash":"ef56d0c30c2ebbf770de5c7e9cd6f6a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","hash":"1dfa85bd16bf08ae91f9cceb02ef1563"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"003151b5bb4558f1aa0f19f3df7a951e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","hash":"e8911b74c8d90dfc01657354e57d0fb1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","hash":"24859dec1c12b4c2fdc95d38eae72d1a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"845d1a208239b202dfdd9191d3135724"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","hash":"d3b9d47acf4348262c7c16ba99cb7412"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","hash":"c8ff0e27e7c87256a90d8a3ef24be6ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","hash":"efcbc6fd4212ea81281561abddbf29f9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"df46c653437bf00620cea97344801eb5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","hash":"d006dde8fd90189f533f571d02092a92"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","hash":"ffd004f95154cc4fe026271fb8aed8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","hash":"6c78f0d015627004c642ba4e7926ea9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","hash":"d5b1d01f918c452585a990bba4c2b919"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","hash":"7a90c412256380506eecf47a27178c9a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","hash":"79198336b26da3116eb3cf2258e9f72b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","hash":"ba0c8dd8a234a449050e76d22738480f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","hash":"be2d4c688f4ca84e68eefd04fe0ed129"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"ebb87ebc9069065977905a746c9b58e1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","hash":"b92ed7d96a5284441953017edb47f285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","hash":"7d8e8a43fd286d637f95a0510b0d3c84"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"a2cbfadb5b6c248502caa312edfacd90"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"a481b9285f5d63f04e3b3e3fc2a6b44c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","hash":"e82a9b67ba33ae635b9b083ef147fb9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","hash":"7cfb88f7da0c2022734fb4c438317d95"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","hash":"274291edc62b938ad94e61cec4a14bec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"1c33828dcd05767f74296ec81c434a41"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"7185ead1c4c9a77b194615cefab7b748"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"13bceb5508fcefacc9ed46137d43844e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","hash":"fa9ae6c732442615050e9a8b5f758a2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","hash":"1e4da3528271172cb17b59a72a37a57a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"9c47ee20b0bec5232194ccc58e9c10d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","hash":"08b1358e505b0414dc60489b750ba2b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","hash":"c3ab437aa0b03081adbfcdff7755b358"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","hash":"5a65f8839771af0fad5b2cf647703264"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","hash":"46c7ae5490a6be7f2a049c4d63947eb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","hash":"9979b67c6fdb803b55c4628af847ad4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","hash":"d6f045db9bd5b72180157d44fee9fbfc"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","hash":"fbdffd3446228c3ebe98da002c72cdae"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","hash":"942a7879522bdf82258a3383893665a6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","hash":"04f8b421d5eb5043e825cd90ce965dfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"35dad89aad6233323de7de29603c8779"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","hash":"9e5f67e1d8edbcd97531a8377e706d71"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"d85ee275d6d507b9d66f4c2b0be0cf55"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","hash":"04f5ef7c69c00972df33379b395df1b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","hash":"0c3ca74a99412972e36f02b5d149416a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","hash":"681b70272ec68e757f2394c9e7fa9398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","hash":"da57aefc2c06656b68f2bb2639e78d33"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","hash":"4f05e8a4424e66fedd1798178f3fbfe4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","hash":"94924f12fa7b796f938e6e2889ce73f7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","hash":"f5c5c30697f88cc221f8628956b28719"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"07230264b6ad4306fed087103930fd35"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","hash":"e335de991d295627ccaabe152db13f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","hash":"ae4469331dace367e6fb978dd7b7737e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"1d2690772afa35d8cceb0ee976c0874c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"2662f3733381d6d79c43406d15366240"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","hash":"623a5dbc96b4107a93ef35eb90184bb9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","hash":"74801cb491652ec4ce96fe1f4646836a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","hash":"c2593e65f1a2367d83f0668470ab5f61"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","hash":"c3222af7cfe52a6fee04d1bcbbf52bc8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"136b08c4413778ae615af5f45d39ed93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"1c23614b3a58c2cc762d1a8d9b668f3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","hash":"f8e8ef6736cd88fed6f2b5ab9b5919ec"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","hash":"59f3befbfab8a823bd8254bacd7cfca5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"c26b7654abc187a236c2d353b8e9dc69"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"801fc719bf0a33dbbb7b4cd7ffea9071"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","hash":"e4ee21048ab83cc50d61ac3784afa9f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","hash":"017129b89f3045aa21d9a8032f5dfec0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","hash":"60fd6d17602ae0c1d18e791d6b1b79cf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"831b750639e83372672565fe47d9dbed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","hash":"e2368d925d056674e11f6d6a98ca995d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","hash":"9955b767fdde0baa759d3431267e5ed5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","hash":"ecca8d7a94b7a01ee70af109474706b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"90f13e00da93a85fd91faa6d3690590f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","hash":"a064bc8b49ee4e47fd7b996364a8469e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"89db2a81afc124b1661794f9e43252d0"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","hash":"0e088fe1d0cc2ca8349ce2050e3a72c0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"034c9a74f518b43df9ce8af9343c11cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"a804030c1e487e06d01f8d87c2ccf38d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","hash":"babbb3f671be31b0873312c521c475b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","hash":"30bad556275cf4f7a39d50f698375871"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"825b4e65b06dcc1b8822108f596b56b0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"a034129eebf55db99d756d8271a91c97"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","hash":"387ff7f9f31f23c3cf5b17f261a091bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","hash":"5c96fe82a9bf2dc00db9d93c2c0a41a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","hash":"715bccb8e9ba9889573a60bf0e457402"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","hash":"6638bd2385fd6ebb1a4f1cdbbb2f3969"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"e0d43fd1f12dad7d0e992390f53c4b7d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","hash":"14ca92a49cc066f7dbf04357098fef9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"67d16e841606c4e5355211fe15a2dbfd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"424a329d443a5c28fbddf8f9b7ccd6ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","hash":"5b388500640099f7c700bff344f7bfa0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","hash":"9a406aa6da2060e742c7440f73659eec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","hash":"831f10cc3a34d37027e629ec7f71f563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","hash":"3a1d79b051bd693ad652b0f905ff1588"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","hash":"3d09396dae741c535c293314adc09565"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","hash":"4f1f767acd1c594d93de02e64baa085b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"d41266a023506a636336e4579948d98a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"cf568490e5d5611456b13680fc1879a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","hash":"e0469000d5e6f512d2fccfd97145c727"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","hash":"a1f47bfa90f0153386bbcd0c4b16e09c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","hash":"41779ac2d34c473debfc06fa1fd8e35e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","hash":"53ef1e482a9021fe353d68c9f8a1affc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","hash":"c36f00a660d9aa87ebeab8672ccc6b32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","hash":"83dac2837d1d165e262ded0d509dad38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","hash":"d3de5e8090ec30687a667fdb5e01f923"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","hash":"a22d810ba989505f23b6be0562a04911"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","hash":"fb76e9ed5173ac1ae6a6f43288581808"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","hash":"a5bfe2d6591e761bf3c5dc0cd4ded99a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","hash":"a37f990d04ff900045c5ccd3c941f5c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","hash":"7cb71fc5981509df77a8edc6f092f688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","hash":"adebe1537e162fcbe4404ab29e94fef9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","hash":"a47b8729b72b77cd6b5716ed37807a11"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","hash":"9b43d6f9384a837bbd0d8474e2365c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","hash":"e539018b40753112ede3ab43f1ee9052"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","hash":"91921fef1791885b747a338372bfdede"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","hash":"61e938fe770ed7331e39f1dda1b64dd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","hash":"f05adccad12249a4f175efc9b8abfb37"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"3ea9e90b1b7ea7dc0acdb26f45a3d632"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","hash":"ec861ff382ac91de0423cdbad2bc79e9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","hash":"5d4ad6ba64e70985334d2403cee52bc1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","hash":"0e619c36f088b986b65eadb12698abb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"b62b9e4874beca4adb96d6ebfd8e8dfb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"6da099b31166c133a52bfa3ab7a1b826"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","hash":"0949b8197a6069783a78f4bb0a373fb0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","hash":"86c831032521c6aa061fb1b873692e93"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","hash":"1e9ed9cdf00b9449d9b72dcd00add4d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"375378eb6cf9297d6bcfe260059193a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","hash":"157d1983388ff7abc75e862b5231aa28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","hash":"02b96169889bac260344fa44343235e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","hash":"8608080cdfc143d462b0f9947dc0d7c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","hash":"e105e8d3303975f4db202ed32d9aa4c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","hash":"14ee798b10cb318d96667b32b245f21f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","hash":"4165baac3466972c71160f4aa15cd185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","hash":"740f17823564c3c7eca15bca5c110e17"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","hash":"89d33d0234d19d3c731fd91e404d6a05"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"3dd13158e97d592fc8a1ca4a4109876f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","hash":"b7c07fdfc8aaa762f93fbaa316f728b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","hash":"6bb47d3d823202b76bef61c1ccce067c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","hash":"2e4ed6d32990cc6890679bc3106091de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","hash":"8e16702463aaa9f1da9da189aabae66c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","hash":"f431b0adea8b20849685931cc40e3915"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","hash":"0164a8b5c6e9dc7c80e1c3118804e959"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","hash":"332fc1055d849f61ff8cb6ab6a919d1a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","hash":"003f7e979253f87844d0f222365ef6e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","hash":"a8d03ee07caa5c7bca8609694786bbf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","hash":"e72dfdd64a9644296cdccf5ed0014b38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"7fad76f2efd7c1ca00d133371a858957"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","hash":"a5cc220cdabeb76d85c3b4dc5a031ccd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","hash":"49dba21de16234aaed28f8fd898543a7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"c765c396bec265400198de95010b78d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","hash":"82e64569c28ce30a19726e5c108b98bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","hash":"10fc2d0e5d04abfdc83363ce6cb6fe91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","hash":"6c1b7903629a7ad4cb985f0898953db1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"064b2b355879e55d83ea0844d55cb10d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","hash":"6f731bf22ec9178d15aabbcf3191af26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"c9ce5d23dc55a2e416a66ad883081c57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","hash":"c7e489fa5d00c1717fe499f3845c2abb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","hash":"b2b96fda3b5d147408ecb71c2bbe73a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","hash":"29d2a4744cad0979d4cfdcdc2c1a6ed4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"b23d25ac5853c83cde0f5209e6b16ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","hash":"e5bcd7a024c4e2ae08c2090eb3188117"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","hash":"ef82a025843a9945bb252078a9754fa4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","hash":"e7ca145d8d308187bc0127bd941b1759"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"8a61c7c4e99012849616db63dee00a56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","hash":"cdb411d670a094822c46ead81fc1c4f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"e2f190622bcf6d345dc219a23d165479"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","hash":"a7ac3293430577fa9c028b0df6607fa4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"866257a42b6b721549b351382b365c47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","hash":"75e9e8da5881b6c2ebedc871d7bbc064"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","hash":"fde2b1b7d744e3606529be50acb7fded"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","hash":"032c93433e86ca78b8bb93e654c620e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","hash":"63190b810e77cfebf3de760baaf59832"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","hash":"bc01545a1cca050f2067c0b6163a4755"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"f43905031af706d47bbc7474be876e65"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","hash":"17488cbfc8b9ee2e6e5ba0229d7c21a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","hash":"5af5a2fb59f9c015abbda254a35ea7a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","hash":"b072cbf89d933994e62e5dcd85904f89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","hash":"a68ab99598e72a476132676fc97db138"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"c50f12ff54e3d508dd127fa9527d2cd0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","hash":"ac01cea599146293f3f31bf7e74f20ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","hash":"e64d63aabc0975a7e9fdb384598c2f8f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"8ea7a3c5835c772b1ec522d7a9a2f3f8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","hash":"bf63ca39ce8b824fac21a27027981699"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","hash":"63d514a9a3ce059cdad1e7555c6f78f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","hash":"9bc97679b42c8f9d40f4404ed4c09c7a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"3506be7f282b7ad6ccfc4545f60a102a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"e3a6ed5db61fa0508b100c7de6e6b3b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","hash":"9f58d6e1075d496f55361c6c4131d8cd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","hash":"3ed75a2d11989988d6b1ccbd0e6e4192"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","hash":"b48ba72a2d5d084d297c3d78e351036e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","hash":"feaa27101434fc1590c19d42ec8b407f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","hash":"8fd3dcb7f8cb8e00140c18d63a6f6563"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","hash":"5b93f82cec5bee5a9d1fd45af7925f8e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","hash":"b4446a7a4d053aaa35a7bc6968b4794a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","hash":"2144f1538d27dd9b29dd135d74059120"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","hash":"ce0d3155596e44df8dd0b376d8728971"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","hash":"cf36475a46446a35cfe633a6bb7bef3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","hash":"b2bed301ea1d2c4b9c1eb2cc25a9b3cd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","hash":"f176d4d0e0b6d9e454dc1b0f0498507a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","hash":"48f954e66b945620e43ce8e9a8891919"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","hash":"c9b3f620c35ff8f48a223137f4bd0b2f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","hash":"991661529c5ea50cf40031f5b74929e3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","hash":"4b495ff6681b3a7dda3f098bf9ecc77d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","hash":"1ac1f41185397129f7ea925130f188f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","hash":"038c3f869f408e1194eda71cafcca6f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","hash":"b7c2cc8260bb9ff9a961390b92e93294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","hash":"8b5cb3dc6abb215b0a48c2d3c8916ca7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","hash":"b2015570257a2a6579f231937e7dea0e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","hash":"a284638498c103fb78a89f30c62a910b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","hash":"f87e5679793d9c81072018b428dadb8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"8647b431edd330ccdd54d29cbf151428"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"a400dfa676904fa8a84c48146ff8e554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","hash":"ea8671768e203429e3f57e5ae151392d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","hash":"19ad3f559f8a8ac66bbf9a697588b5f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","hash":"9190f2442b5cf3eee32ab93156e97fb1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"c9aacafab7d9435e52caca900d06fb30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","hash":"6f053637ded96c67b342e6a80e7372f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","hash":"187bca624cdda52a572fde54e8395124"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","hash":"95235ba0d55efc617c0d84893f46390b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","hash":"bd7255b381081690ef082c2edad8925a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","hash":"60838abe37c945cf06c1b5ccc5066fed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"e08b5b6808a44e8eb4aef327f03d7bd4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","hash":"00883d18f109cb9b8f09707e277106c2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"7a5a4cfd5f4cdd5fa194eb6fb3e5f0d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","hash":"0d86d4ba2e01e5e62f80fcf3e872f561"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","hash":"9cb135b4df76771b089723184d1833f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","hash":"bfb39b98783e4013d9fe5006de40874d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"f36086fa85e4e44adb302e73a632289d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","hash":"32c8f2d4dc53cfe56f5fa637be2c52e7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","hash":"903af109d740b48230bd021be6a1f40a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"709419e524637931a205b8fbf863df23"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"e39c804b77ec1bf1f6e4d77e362192c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","hash":"dae10e630b8fdeceb998484cdd66b1ac"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","hash":"3e93222dc359a938c1354ba486d44244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","hash":"3cc5c8282a1f382c0ea02231eacd2962"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","hash":"93fd05191baf9bfae1ae604f67d953b5"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","hash":"3aeb962762f803ce0a8cf4b41c1f7433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","hash":"a1e4de51bdb32e327bf559008433ab46"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","hash":"5489bd1170add17f6d3bcc248b5ed048"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","hash":"a62996936bad6c27697a35bed070547d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"d49f780a8376e0eb08900b1c228f99b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","hash":"6722e17c98e37b4ef1b96bf4b17d9008"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","hash":"f25bbc73708cc35ac55836cbea772849"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","hash":"3235bc280cf19dc53be8f10c56d89beb"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"78a8f569542cd7fdefc8c08a7800052b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"13c18d19b29fbf6bf4c1d966f02612ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","hash":"79e0746936aade828e4ca8ebe242df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"cdcdb27f29255236e15a1bdeda1f5042"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","hash":"e9efc19a02ae3195574f6fa743603b00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","hash":"c3d1be29f7dafb22509e2bb8064d512b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","hash":"87ee25bbef5b7cb7dcb056c3ec20f243"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","hash":"2a68e6b288e18606a93b3adf27dbf048"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"82b0f024c778da9bc6ab552492e02283"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"3b17883e6fa707ce015aa0d82149c0b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"66dcd42bd6d7ebadec059ca047e8d7b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","hash":"c771f26d18f9897af0e13e3a2c83d5ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","hash":"d970423c6488cba52d3585e0221e57ba"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","hash":"e072de1090ae76f1e07247ec1eb11180"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","hash":"58031f960b575eb0db526bf49b706f80"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","hash":"0ca8410c364e97f0bd676f3c7c3c9e32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","hash":"08a0131d87ba3b2535a2de787086a3d6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","hash":"f72f7c9e3a3971fdfd58d38c94b4e005"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","hash":"1216b7dc6f446693a3fcb9a566b94d94"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"9628979f9e240d20f992073c54489890"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"51069c14005cc63df73f7c8db5520f31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","hash":"a45b41e12ba5853543f707ce7dbab9d4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","hash":"2fe2bbd579687d09b982afec08e8e688"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","hash":"dd8517aec9099740b2b5828bde8d33aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","hash":"871c4029c43c6dcb8ac9ba8f7799d310"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","hash":"12b8cbac25c7ad95ce53c2f8869a1b5d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"d2be489820a1fa5902a27c621661ad7c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","hash":"c64b32c068f0d8679ed2b8d699659780"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","hash":"6fbb6ca5fe49e7940262f00aca378c21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","hash":"395f07418a28b12b0ed665f32270d702"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"d625d9716f694dcdfb87bd7e5fff5a5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","hash":"6c49f36c204d9c39ed8344462e4342f9"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"0a36258b539c8ead1f09b8c02cd25ca8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","hash":"312e69b666cc1e860274006e86688bf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"238464b246c0e0f60bc0fa9240909833"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","hash":"7e38424729d139f4ac1ff5183cd59303"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"09325621b84b25497a2d19b7f3636884"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","hash":"27861bf07d93c8ef6c716f3eefab80e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"29426d64d0c201a4d7e7492434b13463"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"e7570a19e70ee3275cf865e4a94f7830"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","hash":"724dc321d912dc0a668feb06b1372944"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","hash":"e9cc91e4ea4141722f1ae9e087afae63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","hash":"af7b5d8de0c9d9df88cdffcae9d7c959"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","hash":"5cd1085a16b9c9c707d90ef04d1d2eca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","hash":"6f195c37321b26f8f0f0f062f4840dbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","hash":"5ad121ce46b5c0473bbe34be6d5c0913"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"2ed82d0ee4672e99dcdec5652737899f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","hash":"a8f2c6aa382890a1bb34572bd2d264aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","hash":"f42009fc52ad811f1d34405961c63183"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","hash":"da6f500c03c005a207d38c1daf24b00a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","hash":"666073cafbc9e0c03a3939b99ec35aca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","hash":"b7729342f9613bd823c71f9c12c680b1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","hash":"95bedb83cd5b163e43b554086b016380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","hash":"b11666131177a6ebe97ffd60e3dac32a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","hash":"dbf30b29dd78b529a26b350b5866a849"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"4a77eafe460177c2a7183ec127faabff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","hash":"3f3808e26505133190c5b4890cdd219b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","hash":"d623b1e2af43bcd9cde14c8c8b966a8b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","hash":"bb91546bef7cceeebfb3a8a941c2bdf3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","hash":"d53c45c14285d5ae1612c4146c90050b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"a76cb94d79d126e32495b08461c0fade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","hash":"39d3054e9c33d4275e9fa1112488b50b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"09d61fcdf9f46b71982cb8d96f83293a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","hash":"d0e1db4618e688ad41ba325f1a35667e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","hash":"9812b8e536c69068c0e5f3d3db20c140"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"5846366e8ee69a93afd904b47023c592"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","hash":"aef722a64f462b84d30dad6278040fb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","hash":"d2e52f81da2329303a3f9d4b369c3320"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"b1ba06c6246ba2995265e837f355877f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","hash":"94016e710124ccd8afa685f270d396c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","hash":"587b84f3870ec03b89adf24294c481b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","hash":"18c04a8f8132af2c1b1de5af6909025c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","hash":"0298dac3221d4c6752b6207594e4f470"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","hash":"9b43e915daf4ff9e2b753b1a5b63f8ba"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","hash":"d9d40cd4fd7e692ca4246d952d48cca8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"9c7196e67b951143d548d72aaa0e75ec"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","hash":"ebd9dcbeebab7ad717e6f7efb6a47f0f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"096a125e0b6d03283fda3959aa657e23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","hash":"46f06f2d32f61a3ebc7393f1ae97df27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"6929256b551547547eb9a99063ebf8c8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","hash":"b6a30b7ed48f83f446db37577b30e62e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","hash":"70ba25c403724d1332ff4a9e426d7e90"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","hash":"0b9138f9bd3068b518494cfee8627cec"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","hash":"df5feb64564460cb6fbf66040c56af21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","hash":"5c81dd07124ccc849c310595d9cfe5be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","hash":"f301af2d0392296f456363085becbf47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","hash":"c72923f8ad46feb8bcf25ecbd0379294"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","hash":"907dee395c762afbdcd8a23c105e9cff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","hash":"4cc8128599d4dfdcbd699b3f01d68904"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"7f25b2bd2302862c55aabba7dd3c09fc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","hash":"6611268c60b179280f53b27a039a7534"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"779f0f9d19f3df6158d21a5a53b647d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","hash":"10bbfa83fe7c3c8f8a4964a3e96e5b58"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"fdf9dc616423b3c0ab7989c88009cc99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"4cf81f473e6af6b63729d72f41fe712e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","hash":"99eea31c698ade1eba0c70780f4c3c5b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"23f943341763db27892796d556bda14e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","hash":"5f8bbfd23974ae2842d3d03760b98f99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","hash":"2cce8363d2a5751ae45bc5d4ec6685bf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","hash":"671e5f26fbf94b9d5a70b14c8c494760"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","hash":"0c4386f8def5b3a82bf0b70090830314"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","hash":"17d0af2d98e9ab4734bc194d1e51250f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"cf7437085457da7c8ff7640c616aa417"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","hash":"4230059d9b32165301d8d2a329a9b40d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"dc66fac5835e7c41dbf08196ecec0fb5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"8ad25d6c38ddc8ce7abb828b97f4571a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","hash":"7398500b1824f6043f23e208cd993866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","hash":"5049b7e67d8857ca6cf426d6ae4dc463"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","hash":"5872689884d3985685f0239a1f89f71f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","hash":"b80f25d51570eededff370f0c2b94c38"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"33bc9ed6bd7be95c8dcba0df4493890c"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","hash":"59b6b4f97638dac0c707c069f5ec5468"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"7abbdeed33d601184a5c3ac2241419a9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"9d9d9a9d3774ca415e26cb71c8e61bd9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","hash":"f272765748612511f27420ed9ea3713b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","hash":"37b4a8b2d509ad6dd3f486053edecb3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","hash":"2b5fbc54f77ca9c1e5ac90eb3c242554"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"193df360dab90a6a68f2420ca582de9b"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","hash":"53bc475948e97481418f115d2ddcfcb4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"add063bad189e77e577fcc88330caaf4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","hash":"4c5be09400366d46c996eda73c757b0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","hash":"016791e9b80688ca3eddaf369dbed53c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","hash":"ca4cfb6538896636dc198e3b1c1c3ab4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"97f8d480ec6ac1778506d29f498a1e6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","hash":"dc69aa43b73c7a61a7d20c82ac98cc36"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","hash":"8d02f5162c5a6fbae770f5c4f9ddf389"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","hash":"73cb6deeb88fdcc320cf8e089d51531d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","hash":"57adb1ac7ff40f2fd9512ebf09281433"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","hash":"ca96fbf1a27d4f30ff02bfc5812562a6"},{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":"b1c06b2368a5c7449e9f6be568623fbd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","hash":"b94716be37a0ef1e0dab86e6fafad548"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"6adf728d8072ae68769a63c0c6b063c8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"ebbf8ed4dbf18812821ccd98920dc6de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","hash":"9d0390331a2be3f7c018dab8bfa589de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","hash":"c60b204fb5e7d501c0addb330c88d2de"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","hash":"d97475e890855715d9a38549737da4c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","hash":"bb38ea979910b96581f1f8e407cb9e63"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","hash":"73b8d199cc00486354dda26a4d8de371"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","hash":"4bc403cec1c5846051bca88edb712a8c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","hash":"a82741847c5177c47adfd428a1583744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","hash":"9307caba73e148d13a0697568f0ad971"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","hash":"25d3cb3999f7986e8bcdcda124ec5d72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","hash":"ad84ac2c0607f2ca46d74eb0facbca3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","hash":"ef2f4f5048c86bfd71a39175b6f103d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","hash":"eb9b4a5e46c860c5e9db81c69101e562"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","hash":"20e259f655329b9bc2ecb98ae2975e72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","hash":"5892bd8a06723cd5ee869d90b2795156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","hash":"52deaf1c36d56ad77546bbc624e91b61"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","hash":"f0667289ae22f9dc3c570f2e98fb2958"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","hash":"c102224d12dc8ea202cc97abde87ba51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","hash":"eaeef30b0e3cd638d4dad2b0f4db8417"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"019ad8db00824e24c87b38b254627b3a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"9051680cd2078f92c9c56831272643d5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","hash":"6e15c47981e2e43ee17849a222e33b76"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","hash":"2aef91d8cd008f57a605919dba2b095b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"3e1f8918dfc4c773b35f568c8907221f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"3b62a0ccec9a57fd8599a08429be51d3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"bca575ff5911983777226c849ee75f39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","hash":"cb223d2445f2caf7a2617e25ca761ff4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"fbf98f47029acb307401fb5299babd1b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","hash":"6e25bd87f1ef3a06c65b27f722fff88b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","hash":"2598d2716efa8557be39441a6b1490db"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"d8b218966d397dae64303cdd7d11b33b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","hash":"d04edc39b6d3477197606ec9c969e738"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","hash":"f328cfe04255be8a4d740b54f2854bbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","hash":"570573fffe43860513d5cc911da0668f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","hash":"abb5a1fdfd2511538e3e70557aad0ba1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","hash":"033b9ff4ea4c8fa3e9da4573a7d2edfb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","hash":"ced9775aafb393501c537dd334b029aa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","hash":"783943aba9b03b1cc54745609a61947a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","hash":"d742d41268dec3da5e669142ae344928"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"f6879dbb0a0b22e90c61f21ebf5c440e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"a14aad8528cbc2fe6ca1ad92ea332e2d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","hash":"d84ae47a3c688bd889f442426f39be3e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","hash":"a1e2d2d5b90a616649664605c34f70c4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","hash":"193b3d87d8e5e1c65855f2cda33b3386"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"993a8cd8ccf7a791b5baa5d1935fd8dd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","hash":"0ace55de06ef5d40b277ac8dae4d760d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","hash":"fcb452549a7c86cdf118933be09ef427"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","hash":"2c294b86e9cf73bb732d8419ab47f434"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"55683be242867dd76676beee16ada035"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","hash":"4bd805daf5d0a52cb80a5ff67f37d1fd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"97e064022c57ab2abb672f1def67898e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7435bf8833b839bc99c3b475a49219ab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"6c2b6a2d17427507aff54ae4f457825a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json","hash":"d7384ee9069be99aa38b552ae9f96156"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","hash":"ea7c9cbd710872ba6d1b93050936bea7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","hash":"dc4e3bf96e9c6e94879d54eaa2f81c69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","hash":"1f445eb98cf4ace45da422b4cd9f047e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","hash":"702e19f4fbffe2ac72379fb1da6bd477"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"63701253bb9a85c00b68c2d51358bad6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"ec3a5f7a8288542858278a8702578709"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","hash":"5364518d72b7d6240c9d090f9bb7df83"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","hash":"a1552b07a3b92bad881c4ac6c55229e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"dafc76ada4dc3b9bc9a365a7da786797"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","hash":"7cff949e3b7ac960b63441117b2f6734"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","hash":"ffaf08c52f141dda6e8be50b3e46ea50"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","hash":"20cf180c73edf422decdbeabf90853ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","hash":"20e7221c12677486628b48b0c30569f8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"9f9fef5d5732d2b083ce7c05aff2e265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","hash":"2128831f60d3870d6790e019887e77ac"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"59ea4237571112a72a3756771756c43e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","hash":"ee982dce2668636ee52414f16ec07b8e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","hash":"12d3b22764f1a64ff214cabee2858a00"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","hash":"f721b495d225cd93026aaeb2f6e41bcc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","hash":"b3853faac4d2f3f34b6da5ef327d5ac8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"925460ad93f34c429048e22ab72c7e78"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","hash":"8cea8c68e157e3f07caee50088603d3d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"badbc78ac68a9144476a747433fc0c9b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","hash":"fb92f0b8decb7b59a08fe851e030948d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"1bb2bdc95c24ef25802d47fe5ccecb64"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"72745c98c83af29f8a0439eb29dd7560"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"0ae6882950d775118eb308ed401f4ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","hash":"f203522611d9d5ac9047af433e7f84f3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","hash":"7a76df624c94ad5469f9dc81e627a18a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","hash":"4a4b67b573e2338cf03cb704b2c18f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","hash":"374d5fc1231ad32b5eb97df5aba72617"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","hash":"751c8376ab9bb4a866f5db6d7e6b864b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","hash":"f23b1cec674b4863aec7961f4a2ae758"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","hash":"5e054086533f32f7181757a17890ae56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","hash":"2ac6fe0e9a4d7b15855dabd7468cc320"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","hash":"474c9e159ec8ec804957222054c877e9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"b2f2415d38e74cf870ff465dce1a736e"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","hash":"10e3a86163a4d8f8b910130341baf27d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","hash":"9d0a823179de6c550f7dc36f7aced31b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"67f98d5a671622af964535a693266ade"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","hash":"d6b4c337633cf50449be67966688dc32"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","hash":"61a0deef2a4f0ebaed506bb2a22c5185"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","hash":"c63a357184bab34ab1e8522808a9cdf9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"4cb27d8de666408f8a08b7d0c9b044bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","hash":"a05d206abc2d9b0c60ccae83bf674daf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"2730e1e1e567fdc1cd0b826028acff25"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"70800b89dd1c66241e59910037d4f988"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","hash":"634d273f14a099a4f0bd577979779ee1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","hash":"3cf7786074ce9f1e148fe5f4a60479d2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","hash":"e94cd8798b88905e32482b317167763b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","hash":"2aea038844961a04f31f81fbd8503cb2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"47474102c009e7099f3a9bf1d7ea8e06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","hash":"091e29d23c58b7a4b5529953044bd344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","hash":"610a95b3eab95b5d9ccb03edc03818b5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","hash":"2108c716fd8198fa3a319a1ec6cadc9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"a795771facc05f84d882278f7f63f6d8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","hash":"141745c6e29022622def8ba527cfd60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","hash":"703c5e391948c58228960d4941618099"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"5c32703ac32c4835d961b3c55f8f8498"},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"a6b64bea23efeeb23ea862ad5d55aa30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","hash":"8608f71f077e370ee14d37c711e6580e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","hash":"a9a9ecd14dd90500d067ccb5c564cb22"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","hash":"ee40327c687df7f226654886d6701ff4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","hash":"f292145a4e855215a8283d820f14526c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","hash":"33ce76d75b24f6c7ed6ad95a422b76b3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"861a19ff01e3f58d95d668b9fd4054f7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"4b95f290c43ca907e969d3d0e233295d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"be25b33bcf3736f59b4cd5191dd0a9a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"ce7c719e306ad9ab02b19aafbd70178c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"b4421b6c0a0d4bf349acaaf804d641a2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","hash":"7d19aef72402dc345f03a5ce59e911a8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","hash":"996d7bdb8134338c2357699662cee703"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","hash":"a6c66093a1bc730ec1593104a477649f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"c95897aa3a4d00e22975c9161e4e866b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","hash":"bc48ae34e58774e84a72567a86034fef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","hash":"13c2765ada00f970312dd9680a866556"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","hash":"3bc24109049f63bedd0393f75bc23503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"f3ee8d50363ec83453a6769e6e23001c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"232d846ca21d1549a336d98b5e737f1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","hash":"28a96a9cad386cca4604fe9b6b0ac250"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","hash":"23a7e2fab311012bc8f9fc2de0d1593a"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","hash":"5b4710c9b26d2f5e2b94d3cc1fd320a3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","hash":"fbb3e43ae57262b3fc190cb173a7b5bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","hash":"93a4f02d4f155940b6b501ce9233654c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"c692323b8d9e3ed3c4c134ba07ab94e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","hash":"99b4d15f76889687c07a41b43911cc39"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","hash":"e07baf43a89b4a1225ab8dab1161d2be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","hash":"d2bab4c7d26ccfe4608fe8b47dd3b75c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","hash":"05778db9e882b22da2f13083c9f28e0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","hash":"a4b97395630dc415cc76f514d4a38869"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","hash":"e990b24e6368a3aa33f21b4695cfcfab"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","hash":"ee2f81dc37bb6d1adb9570b7634eed77"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"008f9bd544a605eb69f5aec36ff9bd2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"f2bb5b9e6b4f0a7c7a7f9099b7dce9ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"09fd32800069ef816aad6f9c6daf36d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","hash":"ac67ec38097e19b216d62e9b73491049"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","hash":"f186193f82036b24fc8379b1f332f817"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","hash":"9cf807e15d1e83af4f62cdeb36582a91"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","hash":"add6538f2b318e4a7cb7f3c17dc47ebd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","hash":"945227f3863339e388d92c2b3bfbf673"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","hash":"7cd1469d236cc14289fb876de86e6744"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","hash":"d30eba29d046c1a8b7f029838de6e49f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","hash":"0907f33388d79d8891c360720626e13f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","hash":"d946dcdf5932343994cd861dc8e7be52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","hash":"edac48a72d161089af5eee3c0d7d0d5e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","hash":"2747964c64fe300f15d15123727cbcf6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","hash":"48ec0166ccbd3f834b89d19fcf8bf2e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","hash":"9f8b50d98e75350b41d40fee06a9d7ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","hash":"523742c594766cc9e39179d93cb23259"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","hash":"859de35a02fbe705941f97e7700a3147"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","hash":"dc025ebc977f56a895f49dc6d82a6d45"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","hash":"ce45b60ad9b0d7c8690b9b1fae2b7f6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","hash":"76763ba579657281f848e4c22e63903f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","hash":"513fae0e50853fca5bed4ec2ac746daa"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"33c98e4e508d3ac10e634e62cdbbce4c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","hash":"4454497beed7948ccb9d6987d52ff3fd"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"9bf6034f9f93f9bfa96cf63a77f69e6e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","hash":"38dc31b8820f5fd36eedbf7d9c1bf8d9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","hash":"93a5f7c47732566fb2849f7dcddabeaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","hash":"8a032ca2b66b8be21ce8368f80406db7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","hash":"21da671eb92823f3b4c91c47b2e9bac7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"977b101929ac6f80c9dab61b4f232bda"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","hash":"de4092182e054aad1fa89c88e36c667a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","hash":"e26cb5bf5970055a9bd1828b524cb213"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"c32cecbd71acc984d84398dbcbefdc1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","hash":"d856ca958740bf8a240738ad9e9e69c2"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","hash":"ba98c7395204110dd4ffdd7929174d56"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","hash":"0e5b422d23b62b43ea48da9f0ad7fd47"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"df0a9878a16d3cd73cff00f496307544"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","hash":"916cd94d810ea5b86f0cdc685dc38001"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","hash":"070daf6f273e9bdca4afffaeebe2cc15"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","hash":"88d5feb6f0a1ddf0cafe75a071bbcab2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","hash":"a18fc5ab21a0ffddbebd7407a1e4ce40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"ea046b60f0fd4f08dea95a777e6b9a1e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","hash":"9a357eba21f383f648a36404ef950aea"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","hash":"7eee695ba96e5afa80abfaf59973617a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","hash":"ed8502a630b1e3004b3e0469816899d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","hash":"10969c23d56bc924ded3adedeb13ecff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","hash":"20a078b2eb6ecf6b4b16bd817e30ecdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"85ff3a455e5b12d282298f7870bc38b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"5ae7a1f76d7bc808f9945ed995da690c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","hash":"ba4b050fb9bed64eb6f6476016aeba2b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","hash":"008d33cc2aea11e7921ee238469947b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","hash":"a9859297c8291c07e5e8f6c83a0c014f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"362ae7e02db45824034cd89ee2a52737"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"7b2a36307916a9721811788013e65289"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"f9aa2eb956d270d4df8b3a7cd5ac52d7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"c6f3d5ab867a5b665a50e0af11d048d7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","hash":"3b83ef96387f14655fc854ddc3c6bd57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","hash":"fa37e7b5d86857fe6a6e7c008773fe79"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","hash":"0321281951240b7522f9b85dc24cb938"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"838123cb36e73af6dc4717b1235393bf"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","hash":"bfd7a00b9fef90dbf3b6d14f6a2f2901"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","hash":"13b2049dce60861c73d20ad96c34da30"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","hash":"702ebe43a77fbc5d1e1ea457e0bce223"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"624431304ab3076b73b09e0b33e35e4f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","hash":"191c8a8451c1851fc49b83919c471939"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","hash":"87e0c94a0dd945f819a8bd24a9ac5e67"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","hash":"1bc3a9b4f64729d01f8d74a883befce2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","hash":"e0dff416a9e6fd0bffe5c222b6e3831b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"e6c5d07cbc53020acc5c08062c8b57af"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","hash":"f92bb9e85f7b089f96263b120561014f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","hash":"2480f17b8bc5d1954b56f512c6adcd9d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"f1bb162d20997701babae2ac8facd345"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"3e536a3acaaadb822a23d4e1b88f21c7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"21fd5695156d005f6793304998a2022e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","hash":"ff5c40ddc1501e3be7aa7efd4a269f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","hash":"15439eaa12b927b0e9a42b9d168e3371"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"413144882e92d0a27858427f45f214b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","hash":"80ea244b42d587d5f7f1f0333873ad34"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","hash":"87ac4b62f17065d7456bfb6f6ec0a624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","hash":"fb2c02d4f540edce4651227e18a35d19"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","hash":"6cb32004f228090f1200484076254c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","hash":"84ad21db5ba97deb809b65697546e39c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","hash":"d241941a5420f01b81ee47fc755f8123"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"eeda981e4df3f90c0c0dbc696a3ca59f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","hash":"fc0d5385b1ef6f854be4e193437b39b6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","hash":"77900a31d721da1722fe34c455a00d3f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","hash":"e0cbefa359309715e5101bce98eb65e2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","hash":"a67d1346ef152a92e983a9d7dc1a96fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","hash":"b93b5973b10335f092cad29c56ba9c6c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","hash":"64b70549a67d82ee25c435f5fc06ea49"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"6b6636688a44d2bead7c8ec6941b03bc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","hash":"7f4a5458515781cb38e39651bfdd2f04"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","hash":"5764fde6a5cfb0402dca339562afb9cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","hash":"815ca599c9df247a0c7f619bab123dad"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","hash":"6367c3e098c4a3fdcad94aca0c0148c5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","hash":"da07db909ae6174095f95d5ee019d46c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","hash":"287a2fec0c9a35af0cc66e7c73845774"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","hash":"1a3dbe8e080bf7ea1081e3c716ee17f1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"add848399fb431279348b7ea4a80568d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","hash":"05c0832362de468466c4e1f2ace14527"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","hash":"9d5375413b37f738384990ebdd6c6285"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","hash":"d4252f423175e5c21fca23dc24154b84"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","hash":"3e2ba5ba60ae123aa45ccc5f07eb3ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","hash":"735445bf95b7dd825aa15c783a4412f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","hash":"351ed98071b53d3c2e98d376f2a65a74"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","hash":"2430a12d4750c3c76ef07d29bb6f6691"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"2a948780026092dae085b86422faf0b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"d125ffd56f0235873a9a032bc8dba83c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","hash":"eb54a5ead5cb8ea548f36e4b8780e4b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","hash":"97fe81a282e612211e9648061d6d5dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","hash":"6ea89c3bc6b0860bd7c16998d3950c3d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","hash":"3cb04add978cf19afa2d0c281e4c80b2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","hash":"8ef8f3bbaea09de024ac240b7e26d2a7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","hash":"27780bbb98adce3f00386fc6223bf2c9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","hash":"c1210af8f1663dc5959f1ec44acaa5a9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","hash":"1205ed5e14a59c237c712b8a495b1981"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"8d5d3ccddf53eafd7a3094278afe8b93"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","hash":"30aac47f705ad8c2248c11dd785f7a52"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","hash":"821dcb1b139f1347a59141ff1fe42766"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","hash":"217b7c2fd7b1eccde5897e1f17fdccf9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","hash":"39d249bfedd0655b147701ff81de4fa1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","hash":"ff51e95e52fd4d789e71223942d5ae23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"8d6452b9a0feab43e81cc131ef1a4aaf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","hash":"90ed8a12c97e362a162da690203df055"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","hash":"bd343bbe0baca1494e15a8872fe23e6f"},{"path":"D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","hash":"43a5b6c2ad14cba218dbb9fd709313d4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","hash":"14e2e9da81c134c023849e94c4c24978"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"e4eb46d5e69baa3271c66c2c434061e7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","hash":"f19239fe10cca0cd002c22edba90eb52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"aa079ee3baec3d56778ddae02b3d5150"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","hash":"e6069a6342a49cdb410fbccfbe4e8557"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","hash":"d4efda9ec695d776e6e7e0c6e33b6a4b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"208e3ff349f358ae82604cb56088be52"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"9f18d62a22df97520e20e775666ebee9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","hash":"eb60d218017b0432959e8445a36f4602"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","hash":"f5defa76a8d0e0a0a5d1670fbc270cb4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","hash":"edc6185b4e4994b45acda6675696d87b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","hash":"208d1ef7a6cc2445551b3138139613bd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"6d6dea174f3fb3a637cb4d116a362dc2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","hash":"4bed6699b5b3dd241289ca5b19ce9cdc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"671f1b2c2c348ba4122747f1867f589b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","hash":"00408a31c78c5c887a19c2cd04973c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","hash":"6860d784322e97b761960551131a565d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","hash":"1eb2fe31f2f21cce619f672c25b1e43f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"9d3c97308962c33d86c03beaa20e28c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"99aef443e7d683c1906780f8d7b92c63"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","hash":"6911901b1e6f800a6d433577dd9b93a6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","hash":"713156bb4c3a820c34bd6587a12b9074"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","hash":"12b975946bcb9ba1b5a6dc3309a19de9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","hash":"8597f18181783d905e40dc64f0c0555a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","hash":"278242320426f869a4121f48b98c2ed9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","hash":"d1242664c894dd9825221a49693814f2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","hash":"c9d12a17c125e31a94ec65076a9c3ac5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"24aae40ce89e6e4c0dfafe0b49c5d13e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","hash":"4f187fc37cb2a7eedf4681e2321792f0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","hash":"a6705b39e0c01e2fc0e40b8c8c674aac"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","hash":"156b43ac09731b1cc019f03af3c7a122"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","hash":"65e61fbb4fa10372b84edf9b3a226e3e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","hash":"877295d0c356a690a3b16d271e34c543"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","hash":"80ae6870ab712d32cc9dff7f6174b603"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","hash":"f7b5a54fb6f6b69cc4234a97ce7977e8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","hash":"e7f41e9640a11f484fe97a34fd0c6fe4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","hash":"49286617067167600a8c7357dff1dcfd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","hash":"fb5bf096bb76594eaceda019de6559b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","hash":"f158ffadca730ab601c60307ba31a5e4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"d2118d421b39f9ba6b7de3c11d1c4c0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"4a84a6c0c8b39258edfc22b11cde7f32"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"bd653adddf5fd2896c067d9e3cc7585f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","hash":"21beb4ff2c06d1edc806270e0bfac51f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","hash":"c0d5d7856094b4be15b738392704b921"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","hash":"02139a0e85c6b42bceaf3377d2aee3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","hash":"43465f3d93317f24a42a4f1dd5dc012e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","hash":"df997c7f2300fcd6f80dffd0f455bea0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","hash":"fa0ee94bec6f3e251ecb6155d9b574ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","hash":"773da8c184ab316ec6998980a1448a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","hash":"362bf1b65ae84f1129622a8814a50aad"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"35a844c5039cd195b88076ba0cc17e38"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"c6dd0c20e5521905acdd0e209727ec65"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"0592ddd7d860434774d2eaa8eed82173"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","hash":"03fa43612a3510ac1b1671b945d1f91f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","hash":"89d45e2e5a70ac054f030113ad19f26f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","hash":"34b26677502aed5c7ba9e8b13d348e3c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","hash":"f5d122cb287530be9914a859c7744f68"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","hash":"061e3925eb77146a83903821d09bbd58"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","hash":"19d245e2b88dd8a1ffbf6e9f955e3ec3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","hash":"9a62326dac5b22e9fea3192b612f4d9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","hash":"f7d24a92e50e72cd80aab0301eef14ca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","hash":"033cc457821088f152cc31f4439f9f0d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","hash":"ffb14682b9771918da24801f35264dbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","hash":"c2f30f0829e63ccf0449de5982e324b4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"a0debba3c78c5b30d8645d377dc80bf2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","hash":"8b5af408fdaeb769969e75d843cf424b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","hash":"b1bb0939f4b26522681cc6be8e11f7c1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","hash":"7c1d0d22ae0d74958aaa5c099fadc33b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","hash":"183ea1ebbced2622b43740c6066e2da9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","hash":"bc1f35bad7b3fd785bd8734292b27ff7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"fb5f7eb90b6c4b891e8a1cda244c0a30"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","hash":"43f4676f21ce5a48daf4878201eb46bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","hash":"90687597d058691ddabaa9819ebe2441"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","hash":"28b2af7f1216ccd38b109a03e06c2831"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"eb6cc591a28f7f6d0b20d0bfd2c59f4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"b5b9cdab5f995ccd674b15a723c23ac8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","hash":"c9efc107e2b16a48d4e132bfcc679af4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","hash":"1112185143b6fe11ce84e1f3653b2b6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","hash":"2ee116ca87b7e1c461de1462c3442ec6"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"4a376c58b71e764fccd722e77989989b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","hash":"9f2eb24284aeaa1bacc5629ddb55b287"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","hash":"94325c70d85d9b1d588018f56c56adc8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","hash":"7ec9fc4b8ff24efcfb105532f000156d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","hash":"62d88517fa4f29f5f3bcec07ba6e1b62"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","hash":"08c882255bb4c2001eaf299d9a98e0b4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","hash":"d8b0931c64fbd4bdd435df207b303a04"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","hash":"dceb0993fc92eafad2b09cedfe9cf55c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"afc61ae2ba49edef0eeff9853078bc7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","hash":"7787380533fd85067e9c4303a9564dbb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","hash":"a3ab60b19b4725b3ea1d1b0cb1c64451"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","hash":"e99416806ef8e6f699df7c5d9d6d8bb9"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"0fb5a81c723bbd506468f1ed5a811a48"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","hash":"de7fb154b9b151b81a78d43ade695365"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","hash":"0a9121d736af630bee92bd8372e06916"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","hash":"ad4a5a1c16c771bac65521dacef3900e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"e8b3aa75db997d8ec9a7d04fb76237a8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"99fb2e65ec78997546349e740526b24c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","hash":"ac3c54b4fc84d74ca2726a43feb3c268"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","hash":"43268fa3ac45f3c527c72fc3822b9cb2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","hash":"bb500500256905950683ee38c95fb238"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","hash":"d879c3156e19f2b290c4d6eed1de5e89"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","hash":"dbd0ca4188244fe4b090a6f420ec10c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"fa7057ca8e04d818b054750517ebe184"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"f5b03a40257946e4017d51fa2b683168"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"dc64ebb08fcf29bdc05884be98af7daf"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","hash":"044e7c8ac3258945fe17e90e1a4fff51"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","hash":"26c4f0c369b83e53900ac87bf7e0dcff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","hash":"425673d4276b277214e7b7970b708eb8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","hash":"1fa6d2ba714d40456392772c9ba4ff46"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"3e8341c70267acb12316f930954476fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","hash":"25dd0d36ba8109e3199faf508b41d633"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","hash":"5d461db74d04d7e270d13a5a8a340796"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","hash":"2c72add0b4beec6c29322827553e616d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","hash":"ccd0c138d8f151e1ccec18f4ceb98f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","hash":"64708122ad6cca0c23373706cdb72c03"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","hash":"42e37fab03a3ee2d526bb6f51ea4af23"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","hash":"ce049601b2dcdf418b7d80839ed87b7f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","hash":"16eac0a8fcc5fdae0d8f38b7ea301c37"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","hash":"206ef1a664f500f173416d5634d95c8b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"b50e5a72f3e4d17fcc0269c67ad08b34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","hash":"587693eda247b930d37fff01715ff5c5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"c15b0c06c9817813063ea4c1023d57fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","hash":"d0268b4d80612385359eadd2d6ddb257"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"88f32da113ffa41b4a3c2a47cb997f0c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","hash":"2b93d5d6981f0c021cb892223416927d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","hash":"4fd8d39dff594e013e042c2896cb0bf0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","hash":"4cbacf46dc43afb0d059b0016010f45b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","hash":"f4b67c136a2189470329fd33ebe57cb3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"01fb2164f922ea7367049124bc005643"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","hash":"15639b799e4dbb06ffd538d943964d19"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"4f02d9801a18196af32eeecac6952452"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","hash":"9b7f21f9e27ab344d03709e9b47cbb54"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"c8bb5ac3ad9190c2cb878fdab2f4ea7c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","hash":"007b05bbaaa5af831aed126b4db596e5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","hash":"643ca26571c2ba94477233dbb914b1ed"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"7c9757d3cc07fc4355bb72187af0413e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","hash":"ef220252cc1911073575cfbf66f4c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"ccd4261eb08ab983ac11e6c187ebf60c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","hash":"a9d570114e5a6e733fb029f6b3cffad7"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","hash":"c665492a6d982e7ad5d3161c81983203"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","hash":"62d7d2254a483314a65ad8360c4025bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","hash":"5bc24b31455e76bc74c05a2ee528dcbe"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","hash":"09214b5a4ed4e104f212ef38f676fb1f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"1ebd781205fb832acb480cbdc2fb5d93"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"9e848cd74d7e54d21697683f385810d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","hash":"84dbd0aa38844da5b7a683c754582df9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","hash":"3c158ce6f79d219073cbe23a7fe48595"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","hash":"89dc3f84db2cd1ea37e349fdb1de09bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","hash":"04e0e4efa9726c234e992a024bca6209"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","hash":"8de389ed114ae56e2ca650fbbcd35f34"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","hash":"aab7bf02fcfefca8bc2a8c24f574ceda"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"c8d372496e4a2766ec6b273bb1820ea7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"2fb79cfb96bd901a58aa790b9af4a2dc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","hash":"fd1e888f48f9b2411ee9f3d8a5146397"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"01392922e544aab644f03401ff77d3de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","hash":"c6f78ebc1239a030ffc141df9b33aed1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"24dd1f01d0ce298347e47fd60702007c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","hash":"696cb8f38fb01211afb7823d12080410"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","hash":"5abb58e10e8ea85ea5990a97ee20ae4e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","hash":"64aba6b07ccfb43755f1c29955134b53"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","hash":"88b38af8a6ab0efd56d1fb06883c44db"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","hash":"75335c9306751e1de52734c1ae433ac0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","hash":"79a5f25a1a9d4aa4689bf37171e1b615"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"e5c3c92d54881cd31b4200eda4923c2a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","hash":"56d7144236503f311a7d9a966eaf2fbd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","hash":"8ac28b43cbabd2954dafb72dc9a58f01"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","hash":"787074c3d370e068052721d16acefd9e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","hash":"2b36ca50262dc615e560c27654badb26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","hash":"e71bfc49f52579c2e458315e9067527e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","hash":"62710fd39bf51f264c7fd8ad1dc7aac5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","hash":"25057894002e0442750b744411e90b9c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","hash":"101ff6d49da9d3040faf0722153efee7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","hash":"9518a1e0696846221033c0434d777377"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","hash":"4a1d1bdbd4e9be4c8af1a6c656730a66"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"b006ffd7548608c10ddd32ab8df2a5f3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","hash":"974d0c452808a1c68d61285d0bd16b28"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","hash":"b9c13cdd078c3b28c3392f0d6d5d647b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","hash":"42efc7a615bdc348ad78098c1cdb79b7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","hash":"cb454929d7810d3ee5aa5fc28283d3fd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","hash":"05100b6f82b19ef0bab59f9f174ad39e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","hash":"8d6e1950b64962d48ef050d9517791be"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","hash":"17ff083c12565d73bcbd73eb0517016a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"a4ee14a7e782832dcfbc9c8b1bba6f58"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","hash":"6665bae4ddca65609834735a7f24c95f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","hash":"2ede71f09a240decbc57417850f8feb7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","hash":"0b279dcbda1933bafe0bd7d322e2000f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","hash":"85574281bf7d7bee9722a21e092b4be0"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"e7069dfd19b331be16bed984668fe080"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"b5a6037a3840b81b507f5d350ecbcfc2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"da2fb5c7eaae1fd58b34e80c4dad2cca"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","hash":"f0ae0acd94eb48615e14f6c4d1f5b8e0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","hash":"42df2f1a7ae133830d8c71decb094a5e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"3ca8812a042f08605898cd939fc0974f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","hash":"27bd31140f6d692c98f0cc901a7d77a1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","hash":"5875c344ee3ccdd069b4b7ff696432c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"f63442b56372cdf284974de30fba136c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","hash":"93ac00707f7d2e5d4b863c54b11f2a9a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"4e3fafe47b1073d4d546aa2a2d584710"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"c2080626c8197add9dd213ba2b2ea79a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","hash":"6a3849c802c2fd63cd4d3db06470f387"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"40a04e94b4e68da57cf200df6c661280"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","hash":"0b1037c34b64b5d7d84c6e578ab59974"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"5e6f73850b640e3db6c2839a8b3b0b8f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","hash":"a5df5f31e15cfee3902ff60a60eed5eb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","hash":"34d65aad713399e0e95c6d52aea92d88"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","hash":"41f7bdb7d1eb3c86c21489902221b859"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","hash":"a5c23bf569325f140ab7b7d88d3b683a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","hash":"9de140992b1876855e65cdffbefe8a40"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"e11d89b7d2933ba28814915b300af866"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","hash":"e7da1eb4d5cb971f14a5cc5d487e80a4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"3f17589464130c527c54bab5ded19c8b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"7d4475d797ce6fece72d4fd77739f528"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","hash":"34cb3f67f2d538a80fb20ae30589d538"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"b36b5c0adbaf28834415cab7cf236586"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","hash":"4eded024c142173030b0fe3116f30c6d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","hash":"b54d4d23f060b78a02290d93a10d3319"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","hash":"0dd5377006ddfc0b63c193276ef02d43"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","hash":"9d273d5a3c1851b0313cd949e7f84355"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","hash":"3fc24d3b43ff4a6b63811978cfb697e8"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"d26176ecba3541ce4aeb0ef89486df31"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","hash":"375711cedfc8dfb78018a282ba880296"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","hash":"e2d2090c2a39f7902893e64150fe82b9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","hash":"27e6c510107a34001ef90f889281633e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","hash":"4a3dcf49e30c8511f9ee69ca6128b887"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","hash":"5a770014b927807d1ef52e7b6e287897"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","hash":"6326660aedecbaed7a342070ba74de13"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","hash":"a40d7d4a17e700bbb41bf31de37c6bae"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"6928c6dcf177e8d03637ee7e015ff8cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","hash":"a1f73c43919636da8b8f9a657ca8cc14"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"225d683fb2401c77aae17db2c95d0a02"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"554306ec4df84e3dfc7ed4e63ceae74b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","hash":"7b4a3d153a0c2e22401073c511515325"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"6ce7bea8fc63ae3a19131db10547ff2b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"a9f9101a72ae3969f82c0083a045779f"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","hash":"5265b4bdec5c90bfd2937f140f3ba8fc"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"193d1801b76c52075287857a01d3fe83"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"9c6dc856bf70678df688ea5a308290e3"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"b98145bd156a782be220cb3f652ba0a4"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","hash":"8ef246eaf180b7621f716282e295c950"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","hash":"e103c51878b3741ffe4d81896876f3ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","hash":"99d7e562270b8dd8f0522ff5019620cb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","hash":"9cc2170ec43e47681be6cb2a313ba1b5"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"53c58676c99bdf3839784d792c1c3d17"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"36a99fab55346241cec61df175183d69"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","hash":"556c5677ab197ac52aaee6e02d6ebd70"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"9621a4c337d24a926ff50126ce88d7fe"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"d99d22e8a62a3ce1fa8b04b21702e1f6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","hash":"ebee8885b5afd397cfa8920eeccf88e6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","hash":"d7d24730943cbf47d39aa11425ebf344"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","hash":"54356788d5c11fa49cae271d737b0c78"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","hash":"659cff14f1665a31dec63407d7839624"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","hash":"47258dc751a1217744986101e934f62c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","hash":"ef4618b5bf737a7625f62d841127c69d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","hash":"c31f7af379f7e5f653364d4a14a78750"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"2c38ead87a22902f0b6c73bac285c3ea"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","hash":"4817a73df1c313cf6a6eb86774e7fc99"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","hash":"8e49d86f5f9c801960f1d579ca210eab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"ff836be2c45a3cd9f301d601cccf7ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","hash":"a4eb00bf15ad2af7e8ef8480d7f26a29"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","hash":"09b3f3b1ef14ce885c016f2eba98f3da"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","hash":"a0d4a9c1b68cc6dbd6b64e41b7e92ae0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","hash":"672695b311530b8c64badc8eb93e6fd9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","hash":"8bd96caadcaefb063cca0c83d7707a57"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","hash":"c3b42ddc5c69d20f4bbfb3ccb3f30ffc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","hash":"8a251fb90302207f7e9e3f95aca01a72"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","hash":"e358dbd512fac73db64b0628ad53bc82"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","hash":"6217a25f93e8cd70a46d36976630529f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"c909abaa7c0b6b52aa22512668ededb0"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","hash":"5f5f3a1074f40b8fc37c2b3ba5ec0432"},{"path":"D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json","hash":"f3a664e105b4f792c6c7fe4e4d22c398"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","hash":"dfa3a8605c6665c94b8ca2bd43827718"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"6e5b0197a79b966f3058972183b815a0"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"2ec9f1a7465a01091d0fb1e48ae09fab"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"03bba79b743a1422805600d8d348c106"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"dd13dc6e713f88184d61169de451389b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","hash":"c19a7119c5f0f19f3d0f4531c5345616"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"f8ded7a3f53ded600055288202a36535"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","hash":"96c9d801d1879091246f0b107ee4147e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","hash":"00e2ecab2f5dd0c4f813bf6570d007c4"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","hash":"da1802b773732f65c4e80bbdb5ff020c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","hash":"a6e5a05879e4b68ed3039be8d700bd6c"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"5ebf390d29c2df54424ad03f3b3ee803"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"b987d3cd7e9fb6c315cc761256ce124f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","hash":"7f7fc8274f08decca0738d6873b9b8fa"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","hash":"9ee869577a0315e9f028e88f6cc33c7a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","hash":"45f61fb164130d22fda19cf94978853d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"e924e0f63c6bf206211fb6a6f319af53"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"e7fb9fd369c9f97c921afb96147198d2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"900672c4f3a8c395331517ee4a59ea2c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","hash":"9d1c0eb5292b2112e1b43affe9a2cadc"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","hash":"dbd8209d53e47e61541fe1c14e59c19e"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","hash":"d46b2577d6fe6a7c8f89b1de8fe9b880"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","hash":"0b4a237293e913152ca376cdcfbe752a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","hash":"254c9535d3cb04c28db0c51ada73e6fb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","hash":"2e59aadb17c005953c2accd529aced98"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"a93bdf24774a4f17d91eadb26603a2c7"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","hash":"22acb270c1bb267ee16b3d64a3faa825"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","hash":"d2232e4bd0457a4a3eb6bd897846eb44"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","hash":"f64837679a1abb526e942b166db5c244"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","hash":"197929b9f3eecdb738b1d3e31c7481b8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","hash":"88acdeb4b5b5a9e5b057f7696935fc2e"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"2fac118c3201a4bac960d7430ddda0c6"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","hash":"63fa9307c55c93f4fde0e682e7da6503"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"5588e04d2462fa3c03dc939826b0c8d1"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"86827e5362f176a7e68d65c22420e837"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","hash":"222071fadae509fb3c28ca2e5fff8f06"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","hash":"a02789da8b51e7b039db4810ec3a7d03"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"bb208871e05247f3c1702ef1d4cb172d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","hash":"9915c7d7ab3c9994e77dc4abfba9418d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"6576b0da0c8edb1eaea39c7088dcc913"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","hash":"21dfa823454d051c097b62eb7499f71c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","hash":"7ec176456b796d360121e28a6af41a2a"},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","hash":"80b24d7e9d22ac22d59d17e1b83ee719"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","hash":"9632b7c4c43e2e92f45bedc627663937"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","hash":"c96999a0782dffe9bf8eeaf394caf3bd"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","hash":"49d17d6f2c4de81e5dc0cf98d720333a"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"48eacfdcc762ece187c27660f7010c77"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","hash":"e7570654c0a436f6e9dd0d62c8df912d"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"d291168e624df0fd07cf1a11ce6489a1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"fff2613591e3febf4c067fce116c105d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","hash":"2972206c70139c2948530bbb5c9cfa27"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"284066476b8ec1cc92ff0011561ceffd"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","hash":"615c17d4e884a65d24a596112c37098b"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","hash":"eba989b17aa7902153acc7df1658ba49"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","hash":"603b7b0647b2f77517d6e5cf1d073e5a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","hash":"508284c37de18e099acd673f1965ccc3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","hash":"dac02dc6cb13c753a5f3ae19976b1540"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","hash":"affb97b6cbd84919fa30ea3bcd5f12df"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"9d21d08750f63eeb16370b13ff7829de"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","hash":"12ada90523ca5fc00e317c0a59889a1c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","hash":"f0dd0e0193ab6bc6a1dc2a6cf6e1cd6b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","hash":"5f02ac3087f8d081f489730eecb97f70"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","hash":"49703a6e2b7dff13d801b6eb6e02062c"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","hash":"6b9e945de99fb44b45f72925b6e862b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","hash":"b3593abe51c68018faf79703c522773f"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"20a16b4f174e6bce075dcbfe68581c28"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"03a019b76be5082eaff707596fc9f6ed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","hash":"46483f14160b780c8d1ae008588c50bb"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","hash":"4f24c51c2701c07958c451114cd782d3"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","hash":"34ac34257c6ee30da8c0b6de4d0a5444"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","hash":"c98cadb2fac8ead45ecaa10366da3ec9"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","hash":"5668ae4c673aeee9b233b0b024fcddf7"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"6f36125b419a1cc70316b6994433918a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","hash":"10ca1bc893fd799f18a91afb7640ec26"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"eb2829db78e88b9a88e0013dd7d436e2"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"a38cc0128b89f1c9d566c6363cdb63ee"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"179be66a83c076f437989e25cdc30a49"},{"path":"D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","hash":"cc1f0acc7941fdcd1bc2ed72c04c9a81"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","hash":"901fb8012bd0bea60fea67092c26b918"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","hash":"5a4ec7ed205221c230844b97f4d0a27a"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","hash":"959421bf7780ce3cb78244e6707be380"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"645e414df4ad6780c5bbe193972591ff"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","hash":"68e28643e39694f628939978acdc52f5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","hash":"cb4cf0d998a65879bb40daf8db093eed"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","hash":"7cd08032583ab0a8eca895b2365a4583"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","hash":"46e577ec532e21029e9cee153d7ca434"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","hash":"06d63878dac3459c0e43db2695de6807"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","hash":"1f4f05a739274cdeb88c110bc6561ae8"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","hash":"f1a57183b9d9b863c00fcad39308d4c1"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","hash":"8b2f2f630b059eae09aa7e46fc3137b2"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","hash":"361f3bd2e6ba6710885e241d7574326b"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","hash":"314ca45445509ac0635a48d2dacca294"},{"path":"C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"670717573525d5e0518a4063c6fd9231"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","hash":"f05c33bd910f900d035412bb6303e550"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","hash":"5261078afe15bcdc637478bb6d7f7e21"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","hash":"011e1e9f46dfe9400619c8e5103c30ef"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","hash":"b95223379fd765fdba36bd57d890f63d"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","hash":"1fec236f729d3217c13d42295fe3faf5"},{"path":"C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","hash":"24332e073ea65324af6702f2baa79438"}]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill new file mode 100644 index 0000000..c7d7215 Binary files /dev/null and b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/app.dill differ diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d new file mode 100644 index 0000000..aca467e --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json: C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp new file mode 100644 index 0000000..afafce5 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build.stamp @@ -0,0 +1 @@ +{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\dart_build_result.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json new file mode 100644 index 0000000..07b7a98 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/dart_build_result.json @@ -0,0 +1 @@ +{"build_start":"2026-05-15T12:32:59.437301","build_end":"2026-05-15T12:33:16.643706","dependencies":["file:///C:/Users/angel/flutter/bin/cache/dart-sdk/version","file:///D:/YandexDisk/voidea/flutter/.dart_tool/package_config.json","file:///D:/YandexDisk/voidea/flutter/pubspec.yaml","file:///d:/yandexdisk/voidea/flutter/.dart_tool/package_config.json"],"code_assets":[],"data_assets":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp new file mode 100644 index 0000000..5d85ca3 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/debug_android_application.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml","C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE","C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE","D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d new file mode 100644 index 0000000..e8f205a --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/flutter_assets.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json: D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949 \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..8752078 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d new file mode 100644 index 0000000..396360b --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json: \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp new file mode 100644 index 0000000..3193656 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/install_code_assets.stamp @@ -0,0 +1 @@ +{"inputs":["C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\native_assets.json"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d new file mode 100644 index 0000000..c6be326 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.d @@ -0,0 +1 @@ +D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill: D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp new file mode 100644 index 0000000..8a03f8c --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/kernel_snapshot_program.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp","D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart","D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart","C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart","C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill","D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\2b318bb073ec36e02164ec9484e62b1a\\app.dill"]} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json new file mode 100644 index 0000000..523bfc7 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/native_assets.json @@ -0,0 +1 @@ +{"format-version":[1,0,0],"native-assets":{}} \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json new file mode 100644 index 0000000..a10800b --- /dev/null +++ b/flutter/.dart_tool/flutter_build/2b318bb073ec36e02164ec9484e62b1a/outputs.json @@ -0,0 +1 @@ +["D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json"] \ No newline at end of file diff --git a/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart b/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart new file mode 100644 index 0000000..542b7b2 --- /dev/null +++ b/flutter/.dart_tool/flutter_build/dart_plugin_registrant.dart @@ -0,0 +1,262 @@ +// +// Generated file. Do not edit. +// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`. +// + +// @dart = 3.4 + +import 'dart:io'; // flutter_ignore: dart_io_import. +import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications; +import 'package:path_provider_android/path_provider_android.dart' as path_provider_android; +import 'package:sqflite_android/sqflite_android.dart' as sqflite_android; +import 'package:url_launcher_android/url_launcher_android.dart' as url_launcher_android; +import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications; +import 'package:path_provider_foundation/path_provider_foundation.dart' as path_provider_foundation; +import 'package:sqflite_darwin/sqflite_darwin.dart' as sqflite_darwin; +import 'package:url_launcher_ios/url_launcher_ios.dart' as url_launcher_ios; +import 'package:connectivity_plus/connectivity_plus.dart' as connectivity_plus; +import 'package:flutter_local_notifications_linux/flutter_local_notifications_linux.dart' as flutter_local_notifications_linux; +import 'package:package_info_plus/package_info_plus.dart' as package_info_plus; +import 'package:path_provider_linux/path_provider_linux.dart' as path_provider_linux; +import 'package:share_plus/share_plus.dart' as share_plus; +import 'package:url_launcher_linux/url_launcher_linux.dart' as url_launcher_linux; +import 'package:flutter_local_notifications/flutter_local_notifications.dart' as flutter_local_notifications; +import 'package:path_provider_foundation/path_provider_foundation.dart' as path_provider_foundation; +import 'package:sqflite_darwin/sqflite_darwin.dart' as sqflite_darwin; +import 'package:url_launcher_macos/url_launcher_macos.dart' as url_launcher_macos; +import 'package:flutter_secure_storage_windows/flutter_secure_storage_windows.dart' as flutter_secure_storage_windows; +import 'package:package_info_plus/package_info_plus.dart' as package_info_plus; +import 'package:path_provider_windows/path_provider_windows.dart' as path_provider_windows; +import 'package:share_plus/share_plus.dart' as share_plus; +import 'package:speech_to_text_windows/speech_to_text_windows.dart' as speech_to_text_windows; +import 'package:url_launcher_windows/url_launcher_windows.dart' as url_launcher_windows; + +@pragma('vm:entry-point') +class _PluginRegistrant { + + @pragma('vm:entry-point') + static void register() { + if (Platform.isAndroid) { + try { + flutter_local_notifications.AndroidFlutterLocalNotificationsPlugin.registerWith(); + } catch (err) { + print( + '`flutter_local_notifications` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + path_provider_android.PathProviderAndroid.registerWith(); + } catch (err) { + print( + '`path_provider_android` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + sqflite_android.SqfliteAndroid.registerWith(); + } catch (err) { + print( + '`sqflite_android` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + url_launcher_android.UrlLauncherAndroid.registerWith(); + } catch (err) { + print( + '`url_launcher_android` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + } else if (Platform.isIOS) { + try { + flutter_local_notifications.IOSFlutterLocalNotificationsPlugin.registerWith(); + } catch (err) { + print( + '`flutter_local_notifications` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + path_provider_foundation.PathProviderFoundation.registerWith(); + } catch (err) { + print( + '`path_provider_foundation` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + sqflite_darwin.SqfliteDarwin.registerWith(); + } catch (err) { + print( + '`sqflite_darwin` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + url_launcher_ios.UrlLauncherIOS.registerWith(); + } catch (err) { + print( + '`url_launcher_ios` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + } else if (Platform.isLinux) { + try { + connectivity_plus.ConnectivityPlusLinuxPlugin.registerWith(); + } catch (err) { + print( + '`connectivity_plus` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + flutter_local_notifications_linux.LinuxFlutterLocalNotificationsPlugin.registerWith(); + } catch (err) { + print( + '`flutter_local_notifications_linux` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + package_info_plus.PackageInfoPlusLinuxPlugin.registerWith(); + } catch (err) { + print( + '`package_info_plus` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + path_provider_linux.PathProviderLinux.registerWith(); + } catch (err) { + print( + '`path_provider_linux` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + share_plus.SharePlusLinuxPlugin.registerWith(); + } catch (err) { + print( + '`share_plus` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + url_launcher_linux.UrlLauncherLinux.registerWith(); + } catch (err) { + print( + '`url_launcher_linux` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + } else if (Platform.isMacOS) { + try { + flutter_local_notifications.MacOSFlutterLocalNotificationsPlugin.registerWith(); + } catch (err) { + print( + '`flutter_local_notifications` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + path_provider_foundation.PathProviderFoundation.registerWith(); + } catch (err) { + print( + '`path_provider_foundation` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + sqflite_darwin.SqfliteDarwin.registerWith(); + } catch (err) { + print( + '`sqflite_darwin` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + url_launcher_macos.UrlLauncherMacOS.registerWith(); + } catch (err) { + print( + '`url_launcher_macos` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + } else if (Platform.isWindows) { + try { + flutter_secure_storage_windows.FlutterSecureStorageWindows.registerWith(); + } catch (err) { + print( + '`flutter_secure_storage_windows` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + package_info_plus.PackageInfoPlusWindowsPlugin.registerWith(); + } catch (err) { + print( + '`package_info_plus` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + path_provider_windows.PathProviderWindows.registerWith(); + } catch (err) { + print( + '`path_provider_windows` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + share_plus.SharePlusWindowsPlugin.registerWith(); + } catch (err) { + print( + '`share_plus` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + speech_to_text_windows.SpeechToTextWindows.registerWith(); + } catch (err) { + print( + '`speech_to_text_windows` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + try { + url_launcher_windows.UrlLauncherWindows.registerWith(); + } catch (err) { + print( + '`url_launcher_windows` threw an error: $err. ' + 'The app may not function as expected until you remove this plugin from pubspec.yaml' + ); + } + + } + } +} diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock new file mode 100644 index 0000000..1ae82a1 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/.lock @@ -0,0 +1 @@ +Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.791541. \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json new file mode 100644 index 0000000..c553865 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/dependencies.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json new file mode 100644 index 0000000..1463db5 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill new file mode 100644 index 0000000..17efdcb Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill differ diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d new file mode 100644 index 0000000..fb99bfb --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/hook.dill.d @@ -0,0 +1 @@ +d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\193e397ea4\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json new file mode 100644 index 0000000..3225b81 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/input.json @@ -0,0 +1,29 @@ +{ + "assets": {}, + "config": { + "build_asset_types": [ + "code_assets/code" + ], + "extensions": { + "code_assets": { + "android": { + "target_ndk_api": 24 + }, + "c_compiler": { + "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe", + "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe" + }, + "link_mode_preference": "dynamic", + "target_architecture": "arm64", + "target_os": "android" + } + }, + "linking_enabled": false + }, + "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\", + "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\193e397ea4\\output.json", + "package_name": "objective_c", + "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\", + "user_defines": {} +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json new file mode 100644 index 0000000..de5fd7b --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/output.json @@ -0,0 +1,5 @@ +{ + "assets_for_linking": {}, + "status": "success", + "timestamp": "2026-05-15 12:30:00.000" +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt new file mode 100644 index 0000000..c21eb7b --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/193e397ea4/stdout.txt @@ -0,0 +1 @@ +Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\193e397ea4\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\193e397ea4\input.json )`. diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock new file mode 100644 index 0000000..cc22b11 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/.lock @@ -0,0 +1 @@ +Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:32:59.667160. \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json new file mode 100644 index 0000000..c553865 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/dependencies.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json new file mode 100644 index 0000000..1463db5 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill new file mode 100644 index 0000000..17efdcb Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill differ diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d new file mode 100644 index 0000000..e5cc60e --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/hook.dill.d @@ -0,0 +1 @@ +d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\4d03ae159a\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json new file mode 100644 index 0000000..c5078b5 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/input.json @@ -0,0 +1,29 @@ +{ + "assets": {}, + "config": { + "build_asset_types": [ + "code_assets/code" + ], + "extensions": { + "code_assets": { + "android": { + "target_ndk_api": 24 + }, + "c_compiler": { + "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe", + "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe" + }, + "link_mode_preference": "dynamic", + "target_architecture": "arm", + "target_os": "android" + } + }, + "linking_enabled": false + }, + "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\", + "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\4d03ae159a\\output.json", + "package_name": "objective_c", + "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\", + "user_defines": {} +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json new file mode 100644 index 0000000..3dccd06 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/output.json @@ -0,0 +1,5 @@ +{ + "assets_for_linking": {}, + "status": "success", + "timestamp": "2026-05-15 12:33:07.000" +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt new file mode 100644 index 0000000..ad63f80 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/4d03ae159a/stdout.txt @@ -0,0 +1 @@ +Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\4d03ae159a\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\4d03ae159a\input.json )`. diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock new file mode 100644 index 0000000..98fbf1f --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/.lock @@ -0,0 +1 @@ +Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.894477. \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json new file mode 100644 index 0000000..c553865 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/dependencies.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[],"environment":[{"key":"PATH","hash":5744524113912922215},{"key":"PROGRAMDATA","hash":-3479985355006727299},{"key":"SYSTEMDRIVE","hash":2892017696301558487},{"key":"SYSTEMROOT","hash":2713241238173206065},{"key":"TEMP","hash":-5046929535283615468},{"key":"TMP","hash":-5046929535283615468},{"key":"USERPROFILE","hash":-6023473899643495512},{"key":"WINDIR","hash":2713241238173206065}]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json new file mode 100644 index 0000000..1463db5 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dependencies_hash_file.json @@ -0,0 +1 @@ +{"file_system":[{"path":"d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json","hash":4956111781633966257},{"path":"C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version","hash":-1483076285095613998}],"environment":[]} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill new file mode 100644 index 0000000..17efdcb Binary files /dev/null and b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill differ diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d new file mode 100644 index 0000000..a9ce968 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/hook.dill.d @@ -0,0 +1 @@ +d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\f81b4c71b9\\hook.dill: d:\\yandexdisk\\voidea\\flutter\\.dart_tool\\package_config.json c:\\users\\angel\\appdata\\local\\pub\\cache\\hosted\\pub.dev\\objective_c-9.3.0\\hook\\build.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\code_assets.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\hooks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\cbuilder\\compiler_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\architecture.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\c_compiler_config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\code_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\ios_sdk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\link_mode_preference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\os.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\testing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\build_and_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\api\\linker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\config.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\encoded_asset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\test.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\user_defines.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\android_ndk.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\apple_clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\clang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\gcc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\msvc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\native_toolchain\\recognizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_instance.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\tool\\tool_resolver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\env_from_bat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\lib\\src\\code_assets\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\args_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\record_use.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\hooks\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\lib\\src\\utils\\datetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\yaml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\glob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\run_process.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\lib\\src\\utils\\sem_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\list_local_fs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\loading_unit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\recordings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\error_listener.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\loader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\ast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\list_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\canonicalization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\serialization_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\lib\\src\\syntax.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\null_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\yaml_node_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\operations.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\lib\\src\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\forwarding\\forwarding_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\interface\\error_codes_dart_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_stat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_directory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_file_system_entity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\memory\\memory_random_access_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\lib\\src\\backends\\local\\local_file_system_entity.dart diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json new file mode 100644 index 0000000..e798f1c --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/input.json @@ -0,0 +1,29 @@ +{ + "assets": {}, + "config": { + "build_asset_types": [ + "code_assets/code" + ], + "extensions": { + "code_assets": { + "android": { + "target_ndk_api": 24 + }, + "c_compiler": { + "ar": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\llvm-ar.exe", + "cc": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang.exe", + "ld": "C:\\Users\\angel\\AppData\\Local\\Android\\sdk\\ndk\\28.2.13676358\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\ld.lld.exe" + }, + "link_mode_preference": "dynamic", + "target_architecture": "x64", + "target_os": "android" + } + }, + "linking_enabled": false + }, + "out_dir_shared": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\shared\\objective_c\\build\\", + "out_file": "D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\hooks_runner\\objective_c\\f81b4c71b9\\output.json", + "package_name": "objective_c", + "package_root": "C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\", + "user_defines": {} +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json new file mode 100644 index 0000000..faa9d07 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/output.json @@ -0,0 +1,5 @@ +{ + "assets_for_linking": {}, + "status": "success", + "timestamp": "2026-05-15 12:33:16.000" +} \ No newline at end of file diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stderr.txt b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt new file mode 100644 index 0000000..09167a9 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/objective_c/f81b4c71b9/stdout.txt @@ -0,0 +1 @@ +Running `(cd C:\Users\angel\AppData\Local\Pub\Cache\hosted\pub.dev\objective_c-9.3.0\; PATH=C:\Program Files\Android\Android Studio\jbr\bin;C:\Python\Python38-32\Scripts\;C:\Python\Python38-32\;C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\LonWorks\bin;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\adb;D:\BatchApkTool;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\Users\angel\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\angel\AppData\Roaming\npm;C:\Users\angel\AppData\Local\Python\bin;C:\Users\angel\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\angel\flutter\bin PROGRAMDATA=C:\ProgramData SYSTEMDRIVE=C: SYSTEMROOT=C:\WINDOWS TEMP=C:\Users\angel\AppData\Local\Temp TMP=C:\Users\angel\AppData\Local\Temp USERPROFILE=C:\Users\angel WINDIR=C:\WINDOWS C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart --packages=D:\YandexDisk\voidea\flutter\.dart_tool\package_config.json D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\f81b4c71b9\hook.dill --config=D:\YandexDisk\voidea\flutter\.dart_tool\hooks_runner\objective_c\f81b4c71b9\input.json )`. diff --git a/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock b/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock new file mode 100644 index 0000000..35a0178 --- /dev/null +++ b/flutter/.dart_tool/hooks_runner/shared/objective_c/.lock @@ -0,0 +1 @@ +Last acquired by C:\Users\angel\flutter\bin\cache\dart-sdk\bin\dart.exe (pid 48536) running file:///C:/Users/angel/flutter/bin/cache/flutter_tools.snapshot on 2026-05-15 12:33:08.891479. \ No newline at end of file diff --git a/flutter/.dart_tool/package_config.json b/flutter/.dart_tool/package_config.json new file mode 100644 index 0000000..b340055 --- /dev/null +++ b/flutter/.dart_tool/package_config.json @@ -0,0 +1,1024 @@ +{ + "configVersion": 2, + "packages": [ + { + "name": "_fe_analyzer_shared", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/_fe_analyzer_shared-85.0.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "analyzer", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer-7.6.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "analyzer_plugin", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/analyzer_plugin-0.13.4", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "ansicolor", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/ansicolor-2.0.3", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "archive", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/archive-4.0.9", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "args", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/args-2.7.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "async", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/async-2.13.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "boolean_selector", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/boolean_selector-2.1.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "build", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build-2.5.4", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "build_config", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_config-1.1.2", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "build_daemon", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_daemon-4.1.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "build_resolvers", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_resolvers-2.5.4", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "build_runner", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner-2.5.4", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "build_runner_core", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-9.1.2", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "built_collection", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/built_collection-5.1.1", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "built_value", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/built_value-8.12.6", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "cached_network_image", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image-3.4.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "cached_network_image_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image_platform_interface-4.1.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "cached_network_image_web", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cached_network_image_web-1.3.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "characters", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/characters-1.4.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "checked_yaml", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/checked_yaml-2.0.4", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "clock", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/clock-1.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "code_assets", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/code_assets-1.0.0", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "code_builder", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/code_builder-4.11.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "collection", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/collection-1.19.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "connectivity_plus", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/connectivity_plus-6.1.5", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "connectivity_plus_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/connectivity_plus_platform_interface-2.1.0", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "convert", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/convert-3.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "cross_file", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/cross_file-0.3.5+2", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "crypto", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/crypto-3.0.7", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "csslib", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/csslib-1.0.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "custom_lint_core", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/custom_lint_core-0.7.5", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "custom_lint_visitor", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/custom_lint_visitor-1.0.0+7.7.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "dart_style", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dart_style-3.1.1", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "dbus", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dbus-0.7.12", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "dio", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dio-5.9.2", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "dio_web_adapter", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/dio_web_adapter-2.1.2", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "fake_async", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/fake_async-1.3.3", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "ffi", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/ffi-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "file", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/file-7.0.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "fixnum", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/fixnum-1.1.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "flutter", + "rootUri": "file:///C:/Users/angel/flutter/packages/flutter", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "flutter_animate", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_animate-4.5.2", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "flutter_cache_manager", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_cache_manager-3.4.1", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "flutter_lints", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_lints-5.0.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "flutter_local_notifications", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications-18.0.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "flutter_local_notifications_linux", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications_linux-5.0.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "flutter_local_notifications_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_local_notifications_platform_interface-8.0.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "flutter_native_splash", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_native_splash-2.4.7", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "flutter_riverpod", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_riverpod-2.6.1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "flutter_secure_storage", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage-9.2.4", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_secure_storage_linux", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_linux-1.2.3", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_secure_storage_macos", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_macos-3.1.3", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_secure_storage_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_platform_interface-1.1.2", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_secure_storage_web", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_web-1.2.1", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_secure_storage_windows", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_windows-3.1.2", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "flutter_shaders", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_shaders-0.1.3", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "flutter_svg", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_svg-2.3.0", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "flutter_test", + "rootUri": "file:///C:/Users/angel/flutter/packages/flutter_test", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "flutter_web_plugins", + "rootUri": "file:///C:/Users/angel/flutter/packages/flutter_web_plugins", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "freezed", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/freezed-2.5.8", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "freezed_annotation", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/freezed_annotation-2.4.4", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "frontend_server_client", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/frontend_server_client-4.0.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "glob", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/glob-2.1.3", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "go_router", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/go_router-14.8.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "graphs", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/graphs-2.3.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "hooks", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/hooks-1.0.3", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "html", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/html-0.15.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "http", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http-1.6.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "http_multi_server", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http_multi_server-3.2.2", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "http_parser", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/http_parser-4.1.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "image", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/image-4.8.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "intl", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/intl-0.19.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "io", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/io-1.0.5", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "jni", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/jni-1.0.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "jni_flutter", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/jni_flutter-1.0.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "js", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/js-0.6.7", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "json_annotation", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/json_annotation-4.9.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "json_serializable", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/json_serializable-6.9.5", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "leak_tracker", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker-11.0.2", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "leak_tracker_flutter_testing", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_flutter_testing-3.0.10", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "leak_tracker_testing", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/leak_tracker_testing-3.0.2", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "lints", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/lints-5.1.1", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "logging", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/logging-1.3.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "matcher", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/matcher-0.12.19", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "material_color_utilities", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/material_color_utilities-0.13.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "meta", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/meta-1.17.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "mime", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/mime-2.0.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "native_toolchain_c", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/native_toolchain_c-0.17.6", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "nm", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/nm-0.5.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "objective_c", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/objective_c-9.3.0", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "octo_image", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/octo_image-2.1.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "package_config", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_config-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "package_info_plus", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_info_plus-8.3.1", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "package_info_plus_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/package_info_plus_platform_interface-3.2.1", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "path", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path-1.9.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "path_parsing", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_parsing-1.1.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "path_provider", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider-2.1.5", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "path_provider_android", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_android-2.3.1", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "path_provider_foundation", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_foundation-2.6.0", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "path_provider_linux", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.1", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "path_provider_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_platform_interface-2.1.2", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "path_provider_windows", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_windows-2.3.0", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "pedantic", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pedantic-1.11.1", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "petitparser", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/petitparser-7.0.2", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "platform", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/platform-3.1.6", + "packageUri": "lib/", + "languageVersion": "3.2" + }, + { + "name": "plugin_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/plugin_platform_interface-2.1.8", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "pool", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pool-1.5.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "posix", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/posix-6.5.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "pub_semver", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pub_semver-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "pubspec_parse", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/pubspec_parse-1.5.0", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "record_use", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/record_use-0.6.0", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "riverpod", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod-2.6.1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "riverpod_analyzer_utils", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_analyzer_utils-0.5.9", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "riverpod_annotation", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_annotation-2.6.1", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "riverpod_generator", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/riverpod_generator-2.6.4", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "rxdart", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/rxdart-0.28.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "share_plus", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/share_plus-10.1.4", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "share_plus_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/share_plus_platform_interface-5.0.2", + "packageUri": "lib/", + "languageVersion": "2.18" + }, + { + "name": "shelf", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shelf-1.4.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "shelf_web_socket", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shelf_web_socket-3.0.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "shimmer", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/shimmer-3.0.0", + "packageUri": "lib/", + "languageVersion": "2.17" + }, + { + "name": "sky_engine", + "rootUri": "file:///C:/Users/angel/flutter/bin/cache/pkg/sky_engine", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "source_gen", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_gen-2.0.0", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "source_helper", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_helper-1.3.7", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "source_span", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/source_span-1.10.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "speech_to_text", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text-7.3.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "speech_to_text_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text_platform_interface-2.3.0", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "speech_to_text_windows", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/speech_to_text_windows-1.0.0+beta.8", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "sqflite", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite-2.4.2+1", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "sqflite_android", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_android-2.4.2+3", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "sqflite_common", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_common-2.5.7", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "sqflite_darwin", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_darwin-2.4.2", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "sqflite_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/sqflite_platform_interface-2.4.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "stack_trace", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stack_trace-1.12.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "state_notifier", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/state_notifier-1.0.0", + "packageUri": "lib/", + "languageVersion": "2.12" + }, + { + "name": "stream_channel", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stream_channel-2.1.4", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "stream_transform", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/stream_transform-2.1.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "string_scanner", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/string_scanner-1.4.1", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "synchronized", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/synchronized-3.4.0+1", + "packageUri": "lib/", + "languageVersion": "3.11" + }, + { + "name": "term_glyph", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/term_glyph-1.2.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "test_api", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/test_api-0.7.10", + "packageUri": "lib/", + "languageVersion": "3.7" + }, + { + "name": "timezone", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/timezone-0.10.1", + "packageUri": "lib/", + "languageVersion": "2.19" + }, + { + "name": "timing", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/timing-1.0.2", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "typed_data", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/typed_data-1.4.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "universal_io", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/universal_io-2.3.1", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "url_launcher", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher-6.3.2", + "packageUri": "lib/", + "languageVersion": "3.6" + }, + { + "name": "url_launcher_android", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_android-6.3.29", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "url_launcher_ios", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_ios-6.4.1", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "url_launcher_linux", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_linux-3.2.2", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "url_launcher_macos", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_macos-3.2.5", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "url_launcher_platform_interface", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_platform_interface-2.3.2", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "url_launcher_web", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_web-2.4.3", + "packageUri": "lib/", + "languageVersion": "3.10" + }, + { + "name": "url_launcher_windows", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_windows-3.1.5", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "uuid", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/uuid-4.5.3", + "packageUri": "lib/", + "languageVersion": "3.0" + }, + { + "name": "vector_graphics", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics-1.2.1", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "vector_graphics_codec", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics_codec-1.1.13", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "vector_graphics_compiler", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_graphics_compiler-1.2.2", + "packageUri": "lib/", + "languageVersion": "3.9" + }, + { + "name": "vector_math", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vector_math-2.2.0", + "packageUri": "lib/", + "languageVersion": "3.1" + }, + { + "name": "vm_service", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/vm_service-15.2.0", + "packageUri": "lib/", + "languageVersion": "3.5" + }, + { + "name": "watcher", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/watcher-1.2.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "web", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web-1.1.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "web_socket", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket-1.0.1", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "web_socket_channel", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/web_socket_channel-3.0.3", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "win32", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/win32-5.15.0", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "xdg_directories", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/xdg_directories-1.1.0", + "packageUri": "lib/", + "languageVersion": "3.3" + }, + { + "name": "xml", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/xml-6.6.1", + "packageUri": "lib/", + "languageVersion": "3.8" + }, + { + "name": "yaml", + "rootUri": "file:///C:/Users/angel/AppData/Local/Pub/Cache/hosted/pub.dev/yaml-3.1.3", + "packageUri": "lib/", + "languageVersion": "3.4" + }, + { + "name": "voidea_app", + "rootUri": "../", + "packageUri": "lib/", + "languageVersion": "3.4" + } + ], + "generator": "pub", + "generatorVersion": "3.11.5", + "flutterRoot": "file:///C:/Users/angel/flutter", + "flutterVersion": "3.41.9", + "pubCache": "file:///C:/Users/angel/AppData/Local/Pub/Cache" +} diff --git a/flutter/.dart_tool/package_graph.json b/flutter/.dart_tool/package_graph.json new file mode 100644 index 0000000..0cd4182 --- /dev/null +++ b/flutter/.dart_tool/package_graph.json @@ -0,0 +1,1674 @@ +{ + "roots": [ + "voidea_app" + ], + "packages": [ + { + "name": "voidea_app", + "version": "1.0.0+1", + "dependencies": [ + "cached_network_image", + "connectivity_plus", + "dio", + "flutter", + "flutter_animate", + "flutter_local_notifications", + "flutter_native_splash", + "flutter_riverpod", + "flutter_secure_storage", + "flutter_svg", + "freezed_annotation", + "go_router", + "intl", + "json_annotation", + "package_info_plus", + "path_provider", + "riverpod_annotation", + "share_plus", + "shimmer", + "speech_to_text", + "url_launcher" + ], + "devDependencies": [ + "build_runner", + "flutter_lints", + "flutter_test", + "freezed", + "json_serializable", + "riverpod_generator" + ] + }, + { + "name": "flutter_lints", + "version": "5.0.0", + "dependencies": [ + "lints" + ] + }, + { + "name": "build_runner", + "version": "2.5.4", + "dependencies": [ + "analyzer", + "args", + "async", + "build", + "build_config", + "build_daemon", + "build_resolvers", + "build_runner_core", + "code_builder", + "collection", + "crypto", + "dart_style", + "frontend_server_client", + "glob", + "graphs", + "http", + "http_multi_server", + "io", + "js", + "logging", + "meta", + "mime", + "package_config", + "path", + "pool", + "pub_semver", + "pubspec_parse", + "shelf", + "shelf_web_socket", + "stack_trace", + "stream_transform", + "timing", + "watcher", + "web", + "web_socket_channel", + "yaml" + ] + }, + { + "name": "riverpod_generator", + "version": "2.6.4", + "dependencies": [ + "analyzer", + "build", + "build_config", + "collection", + "crypto", + "meta", + "path", + "riverpod_analyzer_utils", + "riverpod_annotation", + "source_gen" + ] + }, + { + "name": "json_serializable", + "version": "6.9.5", + "dependencies": [ + "analyzer", + "async", + "build", + "build_config", + "collection", + "dart_style", + "json_annotation", + "meta", + "path", + "pub_semver", + "pubspec_parse", + "source_gen", + "source_helper" + ] + }, + { + "name": "freezed", + "version": "2.5.8", + "dependencies": [ + "analyzer", + "build", + "build_config", + "collection", + "dart_style", + "freezed_annotation", + "json_annotation", + "meta", + "source_gen" + ] + }, + { + "name": "flutter_test", + "version": "0.0.0", + "dependencies": [ + "clock", + "collection", + "fake_async", + "flutter", + "leak_tracker_flutter_testing", + "matcher", + "meta", + "path", + "stack_trace", + "stream_channel", + "test_api", + "vector_math" + ] + }, + { + "name": "flutter_svg", + "version": "2.3.0", + "dependencies": [ + "flutter", + "http", + "vector_graphics", + "vector_graphics_codec", + "vector_graphics_compiler" + ] + }, + { + "name": "package_info_plus", + "version": "8.3.1", + "dependencies": [ + "clock", + "ffi", + "flutter", + "flutter_web_plugins", + "http", + "meta", + "package_info_plus_platform_interface", + "path", + "web", + "win32" + ] + }, + { + "name": "connectivity_plus", + "version": "6.1.5", + "dependencies": [ + "collection", + "connectivity_plus_platform_interface", + "flutter", + "flutter_web_plugins", + "meta", + "nm", + "web" + ] + }, + { + "name": "path_provider", + "version": "2.1.5", + "dependencies": [ + "flutter", + "path_provider_android", + "path_provider_foundation", + "path_provider_linux", + "path_provider_platform_interface", + "path_provider_windows" + ] + }, + { + "name": "url_launcher", + "version": "6.3.2", + "dependencies": [ + "flutter", + "url_launcher_android", + "url_launcher_ios", + "url_launcher_linux", + "url_launcher_macos", + "url_launcher_platform_interface", + "url_launcher_web", + "url_launcher_windows" + ] + }, + { + "name": "flutter_native_splash", + "version": "2.4.7", + "dependencies": [ + "ansicolor", + "args", + "flutter", + "flutter_web_plugins", + "html", + "image", + "meta", + "path", + "universal_io", + "xml", + "yaml" + ] + }, + { + "name": "shimmer", + "version": "3.0.0", + "dependencies": [ + "flutter" + ] + }, + { + "name": "flutter_animate", + "version": "4.5.2", + "dependencies": [ + "flutter", + "flutter_shaders" + ] + }, + { + "name": "cached_network_image", + "version": "3.4.1", + "dependencies": [ + "cached_network_image_platform_interface", + "cached_network_image_web", + "flutter", + "flutter_cache_manager", + "octo_image" + ] + }, + { + "name": "intl", + "version": "0.19.0", + "dependencies": [ + "clock", + "meta", + "path" + ] + }, + { + "name": "flutter_local_notifications", + "version": "18.0.1", + "dependencies": [ + "clock", + "flutter", + "flutter_local_notifications_linux", + "flutter_local_notifications_platform_interface", + "timezone" + ] + }, + { + "name": "share_plus", + "version": "10.1.4", + "dependencies": [ + "cross_file", + "ffi", + "file", + "flutter", + "flutter_web_plugins", + "meta", + "mime", + "share_plus_platform_interface", + "url_launcher_linux", + "url_launcher_platform_interface", + "url_launcher_web", + "url_launcher_windows", + "web", + "win32" + ] + }, + { + "name": "speech_to_text", + "version": "7.3.0", + "dependencies": [ + "clock", + "flutter", + "flutter_web_plugins", + "json_annotation", + "meta", + "pedantic", + "speech_to_text_platform_interface", + "speech_to_text_windows", + "web" + ] + }, + { + "name": "flutter_secure_storage", + "version": "9.2.4", + "dependencies": [ + "flutter", + "flutter_secure_storage_linux", + "flutter_secure_storage_macos", + "flutter_secure_storage_platform_interface", + "flutter_secure_storage_web", + "flutter_secure_storage_windows", + "meta" + ] + }, + { + "name": "json_annotation", + "version": "4.9.0", + "dependencies": [ + "meta" + ] + }, + { + "name": "freezed_annotation", + "version": "2.4.4", + "dependencies": [ + "collection", + "json_annotation", + "meta" + ] + }, + { + "name": "dio", + "version": "5.9.2", + "dependencies": [ + "async", + "collection", + "dio_web_adapter", + "http_parser", + "meta", + "mime", + "path" + ] + }, + { + "name": "go_router", + "version": "14.8.1", + "dependencies": [ + "collection", + "flutter", + "flutter_web_plugins", + "logging", + "meta" + ] + }, + { + "name": "riverpod_annotation", + "version": "2.6.1", + "dependencies": [ + "meta", + "riverpod" + ] + }, + { + "name": "flutter_riverpod", + "version": "2.6.1", + "dependencies": [ + "collection", + "flutter", + "meta", + "riverpod", + "state_notifier" + ] + }, + { + "name": "flutter", + "version": "0.0.0", + "dependencies": [ + "characters", + "collection", + "material_color_utilities", + "meta", + "sky_engine", + "vector_math" + ] + }, + { + "name": "lints", + "version": "5.1.1", + "dependencies": [] + }, + { + "name": "yaml", + "version": "3.1.3", + "dependencies": [ + "collection", + "source_span", + "string_scanner" + ] + }, + { + "name": "web_socket_channel", + "version": "3.0.3", + "dependencies": [ + "async", + "crypto", + "stream_channel", + "web", + "web_socket" + ] + }, + { + "name": "web", + "version": "1.1.1", + "dependencies": [] + }, + { + "name": "watcher", + "version": "1.2.1", + "dependencies": [ + "async", + "path" + ] + }, + { + "name": "timing", + "version": "1.0.2", + "dependencies": [ + "json_annotation" + ] + }, + { + "name": "stream_transform", + "version": "2.1.1", + "dependencies": [] + }, + { + "name": "stack_trace", + "version": "1.12.1", + "dependencies": [ + "path" + ] + }, + { + "name": "shelf_web_socket", + "version": "3.0.0", + "dependencies": [ + "shelf", + "stream_channel", + "web_socket_channel" + ] + }, + { + "name": "shelf", + "version": "1.4.2", + "dependencies": [ + "async", + "collection", + "http_parser", + "path", + "stack_trace", + "stream_channel" + ] + }, + { + "name": "pubspec_parse", + "version": "1.5.0", + "dependencies": [ + "checked_yaml", + "collection", + "json_annotation", + "pub_semver", + "yaml" + ] + }, + { + "name": "pub_semver", + "version": "2.2.0", + "dependencies": [ + "collection" + ] + }, + { + "name": "pool", + "version": "1.5.2", + "dependencies": [ + "async", + "stack_trace" + ] + }, + { + "name": "path", + "version": "1.9.1", + "dependencies": [] + }, + { + "name": "package_config", + "version": "2.2.0", + "dependencies": [ + "path" + ] + }, + { + "name": "mime", + "version": "2.0.0", + "dependencies": [] + }, + { + "name": "meta", + "version": "1.17.0", + "dependencies": [] + }, + { + "name": "logging", + "version": "1.3.0", + "dependencies": [] + }, + { + "name": "js", + "version": "0.6.7", + "dependencies": [ + "meta" + ] + }, + { + "name": "io", + "version": "1.0.5", + "dependencies": [ + "meta", + "path", + "string_scanner" + ] + }, + { + "name": "http_multi_server", + "version": "3.2.2", + "dependencies": [ + "async" + ] + }, + { + "name": "http", + "version": "1.6.0", + "dependencies": [ + "async", + "http_parser", + "meta", + "web" + ] + }, + { + "name": "graphs", + "version": "2.3.2", + "dependencies": [ + "collection" + ] + }, + { + "name": "glob", + "version": "2.1.3", + "dependencies": [ + "async", + "collection", + "file", + "path", + "string_scanner" + ] + }, + { + "name": "frontend_server_client", + "version": "4.0.0", + "dependencies": [ + "async", + "path" + ] + }, + { + "name": "dart_style", + "version": "3.1.1", + "dependencies": [ + "analyzer", + "args", + "collection", + "package_config", + "path", + "pub_semver", + "source_span", + "yaml" + ] + }, + { + "name": "crypto", + "version": "3.0.7", + "dependencies": [ + "typed_data" + ] + }, + { + "name": "collection", + "version": "1.19.1", + "dependencies": [] + }, + { + "name": "code_builder", + "version": "4.11.1", + "dependencies": [ + "built_collection", + "built_value", + "collection", + "matcher", + "meta" + ] + }, + { + "name": "build_runner_core", + "version": "9.1.2", + "dependencies": [ + "analyzer", + "async", + "build", + "build_config", + "build_resolvers", + "build_runner", + "built_collection", + "built_value", + "collection", + "convert", + "crypto", + "glob", + "graphs", + "json_annotation", + "logging", + "meta", + "package_config", + "path", + "pool", + "timing", + "watcher", + "yaml" + ] + }, + { + "name": "build_resolvers", + "version": "2.5.4", + "dependencies": [ + "analyzer", + "async", + "build", + "build_runner_core", + "collection", + "convert", + "crypto", + "graphs", + "logging", + "package_config", + "path", + "pool", + "pub_semver", + "stream_transform" + ] + }, + { + "name": "build_daemon", + "version": "4.1.1", + "dependencies": [ + "built_collection", + "built_value", + "crypto", + "http_multi_server", + "logging", + "path", + "pool", + "shelf", + "shelf_web_socket", + "stream_transform", + "watcher", + "web_socket_channel" + ] + }, + { + "name": "build_config", + "version": "1.1.2", + "dependencies": [ + "checked_yaml", + "json_annotation", + "path", + "pubspec_parse", + "yaml" + ] + }, + { + "name": "build", + "version": "2.5.4", + "dependencies": [ + "analyzer", + "async", + "build_runner_core", + "built_collection", + "built_value", + "convert", + "crypto", + "glob", + "graphs", + "logging", + "meta", + "package_config", + "path", + "pool" + ] + }, + { + "name": "async", + "version": "2.13.1", + "dependencies": [ + "collection", + "meta" + ] + }, + { + "name": "args", + "version": "2.7.0", + "dependencies": [] + }, + { + "name": "analyzer", + "version": "7.6.0", + "dependencies": [ + "_fe_analyzer_shared", + "collection", + "convert", + "crypto", + "glob", + "meta", + "package_config", + "path", + "pub_semver", + "source_span", + "watcher", + "yaml" + ] + }, + { + "name": "source_gen", + "version": "2.0.0", + "dependencies": [ + "analyzer", + "async", + "build", + "dart_style", + "glob", + "path", + "pub_semver", + "source_span", + "yaml" + ] + }, + { + "name": "riverpod_analyzer_utils", + "version": "0.5.9", + "dependencies": [ + "analyzer", + "collection", + "crypto", + "custom_lint_core", + "freezed_annotation", + "meta", + "path", + "source_span" + ] + }, + { + "name": "source_helper", + "version": "1.3.7", + "dependencies": [ + "analyzer", + "source_gen" + ] + }, + { + "name": "stream_channel", + "version": "2.1.4", + "dependencies": [ + "async" + ] + }, + { + "name": "leak_tracker_flutter_testing", + "version": "3.0.10", + "dependencies": [ + "flutter", + "leak_tracker", + "leak_tracker_testing", + "matcher", + "meta" + ] + }, + { + "name": "vector_math", + "version": "2.2.0", + "dependencies": [] + }, + { + "name": "clock", + "version": "1.1.2", + "dependencies": [] + }, + { + "name": "fake_async", + "version": "1.3.3", + "dependencies": [ + "clock", + "collection" + ] + }, + { + "name": "matcher", + "version": "0.12.19", + "dependencies": [ + "async", + "meta", + "stack_trace", + "term_glyph", + "test_api" + ] + }, + { + "name": "test_api", + "version": "0.7.10", + "dependencies": [ + "async", + "boolean_selector", + "collection", + "meta", + "source_span", + "stack_trace", + "stream_channel", + "string_scanner", + "term_glyph" + ] + }, + { + "name": "vector_graphics_compiler", + "version": "1.2.2", + "dependencies": [ + "args", + "meta", + "path", + "path_parsing", + "vector_graphics_codec", + "xml" + ] + }, + { + "name": "vector_graphics_codec", + "version": "1.1.13", + "dependencies": [] + }, + { + "name": "vector_graphics", + "version": "1.2.1", + "dependencies": [ + "flutter", + "http", + "vector_graphics_codec" + ] + }, + { + "name": "win32", + "version": "5.15.0", + "dependencies": [ + "ffi" + ] + }, + { + "name": "package_info_plus_platform_interface", + "version": "3.2.1", + "dependencies": [ + "flutter", + "meta", + "plugin_platform_interface" + ] + }, + { + "name": "flutter_web_plugins", + "version": "0.0.0", + "dependencies": [ + "flutter" + ] + }, + { + "name": "ffi", + "version": "2.2.0", + "dependencies": [] + }, + { + "name": "nm", + "version": "0.5.0", + "dependencies": [ + "dbus" + ] + }, + { + "name": "connectivity_plus_platform_interface", + "version": "2.1.0", + "dependencies": [ + "flutter", + "meta", + "plugin_platform_interface" + ] + }, + { + "name": "path_provider_windows", + "version": "2.3.0", + "dependencies": [ + "ffi", + "flutter", + "path", + "path_provider_platform_interface" + ] + }, + { + "name": "path_provider_platform_interface", + "version": "2.1.2", + "dependencies": [ + "flutter", + "platform", + "plugin_platform_interface" + ] + }, + { + "name": "path_provider_linux", + "version": "2.2.1", + "dependencies": [ + "ffi", + "flutter", + "path", + "path_provider_platform_interface", + "xdg_directories" + ] + }, + { + "name": "path_provider_foundation", + "version": "2.6.0", + "dependencies": [ + "ffi", + "flutter", + "objective_c", + "path_provider_platform_interface" + ] + }, + { + "name": "path_provider_android", + "version": "2.3.1", + "dependencies": [ + "flutter", + "jni", + "jni_flutter", + "path_provider_platform_interface" + ] + }, + { + "name": "url_launcher_windows", + "version": "3.1.5", + "dependencies": [ + "flutter", + "url_launcher_platform_interface" + ] + }, + { + "name": "url_launcher_web", + "version": "2.4.3", + "dependencies": [ + "flutter", + "flutter_web_plugins", + "url_launcher_platform_interface", + "web" + ] + }, + { + "name": "url_launcher_platform_interface", + "version": "2.3.2", + "dependencies": [ + "flutter", + "plugin_platform_interface" + ] + }, + { + "name": "url_launcher_macos", + "version": "3.2.5", + "dependencies": [ + "flutter", + "url_launcher_platform_interface" + ] + }, + { + "name": "url_launcher_linux", + "version": "3.2.2", + "dependencies": [ + "flutter", + "url_launcher_platform_interface" + ] + }, + { + "name": "url_launcher_ios", + "version": "6.4.1", + "dependencies": [ + "flutter", + "url_launcher_platform_interface" + ] + }, + { + "name": "url_launcher_android", + "version": "6.3.29", + "dependencies": [ + "flutter", + "url_launcher_platform_interface" + ] + }, + { + "name": "ansicolor", + "version": "2.0.3", + "dependencies": [] + }, + { + "name": "xml", + "version": "6.6.1", + "dependencies": [ + "collection", + "meta", + "petitparser" + ] + }, + { + "name": "universal_io", + "version": "2.3.1", + "dependencies": [ + "collection", + "meta", + "typed_data" + ] + }, + { + "name": "image", + "version": "4.8.0", + "dependencies": [ + "archive", + "meta", + "xml" + ] + }, + { + "name": "html", + "version": "0.15.6", + "dependencies": [ + "csslib", + "source_span" + ] + }, + { + "name": "flutter_shaders", + "version": "0.1.3", + "dependencies": [ + "flutter", + "vector_math" + ] + }, + { + "name": "octo_image", + "version": "2.1.0", + "dependencies": [ + "flutter" + ] + }, + { + "name": "flutter_cache_manager", + "version": "3.4.1", + "dependencies": [ + "clock", + "collection", + "file", + "flutter", + "http", + "path", + "path_provider", + "rxdart", + "sqflite", + "uuid" + ] + }, + { + "name": "cached_network_image_web", + "version": "1.3.1", + "dependencies": [ + "cached_network_image_platform_interface", + "flutter", + "flutter_cache_manager", + "web" + ] + }, + { + "name": "cached_network_image_platform_interface", + "version": "4.1.1", + "dependencies": [ + "flutter", + "flutter_cache_manager" + ] + }, + { + "name": "timezone", + "version": "0.10.1", + "dependencies": [ + "http", + "path" + ] + }, + { + "name": "flutter_local_notifications_platform_interface", + "version": "8.0.0", + "dependencies": [ + "flutter", + "plugin_platform_interface" + ] + }, + { + "name": "flutter_local_notifications_linux", + "version": "5.0.0", + "dependencies": [ + "dbus", + "ffi", + "flutter", + "flutter_local_notifications_platform_interface", + "path", + "xdg_directories" + ] + }, + { + "name": "file", + "version": "7.0.1", + "dependencies": [ + "meta", + "path" + ] + }, + { + "name": "share_plus_platform_interface", + "version": "5.0.2", + "dependencies": [ + "cross_file", + "flutter", + "meta", + "mime", + "path_provider", + "plugin_platform_interface", + "uuid" + ] + }, + { + "name": "cross_file", + "version": "0.3.5+2", + "dependencies": [ + "meta", + "web" + ] + }, + { + "name": "speech_to_text_windows", + "version": "1.0.0+beta.8", + "dependencies": [ + "flutter", + "speech_to_text_platform_interface" + ] + }, + { + "name": "pedantic", + "version": "1.11.1", + "dependencies": [] + }, + { + "name": "speech_to_text_platform_interface", + "version": "2.3.0", + "dependencies": [ + "flutter", + "meta", + "plugin_platform_interface" + ] + }, + { + "name": "flutter_secure_storage_windows", + "version": "3.1.2", + "dependencies": [ + "ffi", + "flutter", + "flutter_secure_storage_platform_interface", + "path", + "path_provider", + "win32" + ] + }, + { + "name": "flutter_secure_storage_web", + "version": "1.2.1", + "dependencies": [ + "flutter", + "flutter_secure_storage_platform_interface", + "flutter_web_plugins", + "js" + ] + }, + { + "name": "flutter_secure_storage_platform_interface", + "version": "1.1.2", + "dependencies": [ + "flutter", + "plugin_platform_interface" + ] + }, + { + "name": "flutter_secure_storage_macos", + "version": "3.1.3", + "dependencies": [ + "flutter", + "flutter_secure_storage_platform_interface" + ] + }, + { + "name": "flutter_secure_storage_linux", + "version": "1.2.3", + "dependencies": [ + "flutter", + "flutter_secure_storage_platform_interface" + ] + }, + { + "name": "dio_web_adapter", + "version": "2.1.2", + "dependencies": [ + "dio", + "http_parser", + "meta", + "web" + ] + }, + { + "name": "http_parser", + "version": "4.1.2", + "dependencies": [ + "collection", + "source_span", + "string_scanner", + "typed_data" + ] + }, + { + "name": "riverpod", + "version": "2.6.1", + "dependencies": [ + "collection", + "meta", + "stack_trace", + "state_notifier" + ] + }, + { + "name": "state_notifier", + "version": "1.0.0", + "dependencies": [ + "meta" + ] + }, + { + "name": "sky_engine", + "version": "0.0.0", + "dependencies": [] + }, + { + "name": "material_color_utilities", + "version": "0.13.0", + "dependencies": [ + "collection" + ] + }, + { + "name": "characters", + "version": "1.4.1", + "dependencies": [] + }, + { + "name": "string_scanner", + "version": "1.4.1", + "dependencies": [ + "source_span" + ] + }, + { + "name": "source_span", + "version": "1.10.2", + "dependencies": [ + "collection", + "path", + "term_glyph" + ] + }, + { + "name": "web_socket", + "version": "1.0.1", + "dependencies": [ + "web" + ] + }, + { + "name": "checked_yaml", + "version": "2.0.4", + "dependencies": [ + "json_annotation", + "source_span", + "yaml" + ] + }, + { + "name": "typed_data", + "version": "1.4.0", + "dependencies": [ + "collection" + ] + }, + { + "name": "built_value", + "version": "8.12.6", + "dependencies": [ + "built_collection", + "collection", + "fixnum", + "meta" + ] + }, + { + "name": "built_collection", + "version": "5.1.1", + "dependencies": [] + }, + { + "name": "convert", + "version": "3.1.2", + "dependencies": [ + "typed_data" + ] + }, + { + "name": "_fe_analyzer_shared", + "version": "85.0.0", + "dependencies": [ + "meta" + ] + }, + { + "name": "custom_lint_core", + "version": "0.7.5", + "dependencies": [ + "analyzer", + "analyzer_plugin", + "collection", + "custom_lint_visitor", + "glob", + "matcher", + "meta", + "package_config", + "path", + "pubspec_parse", + "source_span", + "uuid", + "yaml" + ] + }, + { + "name": "leak_tracker_testing", + "version": "3.0.2", + "dependencies": [ + "leak_tracker", + "matcher", + "meta" + ] + }, + { + "name": "leak_tracker", + "version": "11.0.2", + "dependencies": [ + "clock", + "collection", + "meta", + "path", + "vm_service" + ] + }, + { + "name": "term_glyph", + "version": "1.2.2", + "dependencies": [] + }, + { + "name": "boolean_selector", + "version": "2.1.2", + "dependencies": [ + "source_span", + "string_scanner" + ] + }, + { + "name": "path_parsing", + "version": "1.1.0", + "dependencies": [ + "meta", + "vector_math" + ] + }, + { + "name": "plugin_platform_interface", + "version": "2.1.8", + "dependencies": [ + "meta" + ] + }, + { + "name": "dbus", + "version": "0.7.12", + "dependencies": [ + "args", + "ffi", + "meta", + "xml" + ] + }, + { + "name": "platform", + "version": "3.1.6", + "dependencies": [] + }, + { + "name": "xdg_directories", + "version": "1.1.0", + "dependencies": [ + "meta", + "path" + ] + }, + { + "name": "objective_c", + "version": "9.3.0", + "dependencies": [ + "code_assets", + "collection", + "ffi", + "hooks", + "logging", + "native_toolchain_c", + "pub_semver" + ] + }, + { + "name": "jni_flutter", + "version": "1.0.1", + "dependencies": [ + "flutter", + "jni" + ] + }, + { + "name": "jni", + "version": "1.0.0", + "dependencies": [ + "args", + "collection", + "ffi", + "meta", + "package_config", + "path", + "plugin_platform_interface" + ] + }, + { + "name": "petitparser", + "version": "7.0.2", + "dependencies": [ + "collection", + "meta" + ] + }, + { + "name": "archive", + "version": "4.0.9", + "dependencies": [ + "path", + "posix" + ] + }, + { + "name": "csslib", + "version": "1.0.2", + "dependencies": [ + "source_span" + ] + }, + { + "name": "uuid", + "version": "4.5.3", + "dependencies": [ + "crypto", + "fixnum" + ] + }, + { + "name": "sqflite", + "version": "2.4.2+1", + "dependencies": [ + "flutter", + "path", + "sqflite_android", + "sqflite_common", + "sqflite_darwin", + "sqflite_platform_interface" + ] + }, + { + "name": "rxdart", + "version": "0.28.0", + "dependencies": [] + }, + { + "name": "fixnum", + "version": "1.1.1", + "dependencies": [] + }, + { + "name": "custom_lint_visitor", + "version": "1.0.0+7.7.0", + "dependencies": [ + "analyzer" + ] + }, + { + "name": "analyzer_plugin", + "version": "0.13.4", + "dependencies": [ + "analyzer", + "collection", + "dart_style", + "path", + "pub_semver", + "yaml" + ] + }, + { + "name": "vm_service", + "version": "15.2.0", + "dependencies": [] + }, + { + "name": "native_toolchain_c", + "version": "0.17.6", + "dependencies": [ + "code_assets", + "glob", + "hooks", + "logging", + "meta", + "pub_semver" + ] + }, + { + "name": "hooks", + "version": "1.0.3", + "dependencies": [ + "collection", + "crypto", + "logging", + "meta", + "pub_semver", + "record_use", + "yaml" + ] + }, + { + "name": "code_assets", + "version": "1.0.0", + "dependencies": [ + "collection", + "hooks" + ] + }, + { + "name": "posix", + "version": "6.5.0", + "dependencies": [ + "ffi", + "meta", + "path" + ] + }, + { + "name": "sqflite_common", + "version": "2.5.7", + "dependencies": [ + "meta", + "path", + "synchronized" + ] + }, + { + "name": "sqflite_platform_interface", + "version": "2.4.0", + "dependencies": [ + "flutter", + "meta", + "platform", + "plugin_platform_interface", + "sqflite_common" + ] + }, + { + "name": "sqflite_darwin", + "version": "2.4.2", + "dependencies": [ + "flutter", + "meta", + "path", + "sqflite_common", + "sqflite_platform_interface" + ] + }, + { + "name": "sqflite_android", + "version": "2.4.2+3", + "dependencies": [ + "flutter", + "path", + "sqflite_common", + "sqflite_platform_interface" + ] + }, + { + "name": "record_use", + "version": "0.6.0", + "dependencies": [ + "collection", + "meta", + "pub_semver" + ] + }, + { + "name": "synchronized", + "version": "3.4.0+1", + "dependencies": [] + } + ], + "configVersion": 1 +} \ No newline at end of file diff --git a/flutter/.dart_tool/version b/flutter/.dart_tool/version new file mode 100644 index 0000000..d81f957 --- /dev/null +++ b/flutter/.dart_tool/version @@ -0,0 +1 @@ +3.41.9 \ No newline at end of file diff --git a/flutter/.flutter-plugins-dependencies b/flutter/.flutter-plugins-dependencies new file mode 100644 index 0000000..56ebec5 --- /dev/null +++ b/flutter/.flutter-plugins-dependencies @@ -0,0 +1 @@ +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage-9.2.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.6.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_darwin-2.4.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_ios","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_ios-6.4.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"android":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage-9.2.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni_flutter","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni_flutter-1.0.1\\\\","native_build":true,"dependencies":["jni"],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.3.1\\\\","native_build":false,"dependencies":["jni","jni_flutter"],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_android-2.4.2+3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_android","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_android-6.3.29\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"macos":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications-18.0.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_macos","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_macos-3.1.3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"path_provider_foundation","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.6.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"sqflite_darwin","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\sqflite_darwin-2.4.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_macos","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_macos-3.2.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"linux":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"flutter_local_notifications_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_local_notifications_linux-5.0.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_linux-1.2.3\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.2.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":false,"dependencies":["url_launcher_linux"],"dev_dependency":false},{"name":"url_launcher_linux","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_linux-3.2.2\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"windows":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_windows-3.1.2\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"jni","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\jni-1.0.0\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"path_provider_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.3.0\\\\","native_build":false,"dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","native_build":true,"dependencies":["url_launcher_windows"],"dev_dependency":false},{"name":"speech_to_text_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text_windows-1.0.0+beta.8\\\\","native_build":true,"dependencies":[],"dev_dependency":false},{"name":"url_launcher_windows","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_windows-3.1.5\\\\","native_build":true,"dependencies":[],"dev_dependency":false}],"web":[{"name":"connectivity_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\connectivity_plus-6.1.5\\\\","dependencies":[],"dev_dependency":false},{"name":"flutter_native_splash","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_native_splash-2.4.7\\\\","dependencies":[],"dev_dependency":false},{"name":"flutter_secure_storage_web","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\flutter_secure_storage_web-1.2.1\\\\","dependencies":[],"dev_dependency":false},{"name":"package_info_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\package_info_plus-8.3.1\\\\","dependencies":[],"dev_dependency":false},{"name":"share_plus","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\share_plus-10.1.4\\\\","dependencies":["url_launcher_web"],"dev_dependency":false},{"name":"speech_to_text","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\speech_to_text-7.3.0\\\\","dependencies":[],"dev_dependency":false},{"name":"url_launcher_web","path":"C:\\\\Users\\\\angel\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\url_launcher_web-2.4.3\\\\","dependencies":[],"dev_dependency":false}]},"dependencyGraph":[{"name":"connectivity_plus","dependencies":[]},{"name":"flutter_local_notifications","dependencies":["flutter_local_notifications_linux"]},{"name":"flutter_local_notifications_linux","dependencies":[]},{"name":"flutter_native_splash","dependencies":[]},{"name":"flutter_secure_storage","dependencies":["flutter_secure_storage_linux","flutter_secure_storage_macos","flutter_secure_storage_web","flutter_secure_storage_windows"]},{"name":"flutter_secure_storage_linux","dependencies":[]},{"name":"flutter_secure_storage_macos","dependencies":[]},{"name":"flutter_secure_storage_web","dependencies":[]},{"name":"flutter_secure_storage_windows","dependencies":["path_provider"]},{"name":"jni","dependencies":[]},{"name":"jni_flutter","dependencies":["jni"]},{"name":"package_info_plus","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":["jni","jni_flutter"]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]},{"name":"share_plus","dependencies":["url_launcher_web","url_launcher_windows","url_launcher_linux"]},{"name":"speech_to_text","dependencies":["speech_to_text_windows"]},{"name":"speech_to_text_windows","dependencies":[]},{"name":"sqflite","dependencies":["sqflite_android","sqflite_darwin"]},{"name":"sqflite_android","dependencies":[]},{"name":"sqflite_darwin","dependencies":[]},{"name":"url_launcher","dependencies":["url_launcher_android","url_launcher_ios","url_launcher_linux","url_launcher_macos","url_launcher_web","url_launcher_windows"]},{"name":"url_launcher_android","dependencies":[]},{"name":"url_launcher_ios","dependencies":[]},{"name":"url_launcher_linux","dependencies":[]},{"name":"url_launcher_macos","dependencies":[]},{"name":"url_launcher_web","dependencies":[]},{"name":"url_launcher_windows","dependencies":[]}],"date_created":"2026-05-15 12:22:25.298844","version":"3.41.9","swift_package_manager_enabled":{"ios":false,"macos":false}} \ No newline at end of file diff --git a/flutter/.metadata b/flutter/.metadata new file mode 100644 index 0000000..b069bf4 --- /dev/null +++ b/flutter/.metadata @@ -0,0 +1,36 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "00b0c91f06209d9e4a41f71b7a512d6eb3b9c694" + channel: "stable" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + - platform: android + create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + - platform: ios + create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + - platform: web + create_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + base_revision: 00b0c91f06209d9e4a41f71b7a512d6eb3b9c694 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/flutter/README.md b/flutter/README.md new file mode 100644 index 0000000..f5f6149 --- /dev/null +++ b/flutter/README.md @@ -0,0 +1,115 @@ +# VoIdea Flutter App + +Мобильное приложение для голосового управления идеями. + +## Требования + +- Flutter SDK 3.22+ (https://flutter.dev) +- Dart 3.4+ +- Android Studio / Xcode (для сборки) + +## Установка + +```bash +cd flutter + +# 1. Сгенерировать platform-специфичные файлы (android/ios/web) +# НЕ ИСПОЛЬЗУЙТЕ flutter create . — это перезапишет lib/ +# Используйте скрипт: +.\init_project.ps1 + +# 2. Установить зависимости +flutter clean +flutter pub get + +# 3. Если ошибка "namespace not specified" (старый device_info): +.\fix_build.ps1 + +# 4. Запустить (выбрать Chrome/Edge для web, или подключить Android/iOS) +flutter run + +# 5. Собрать APK +# debug (для тестирования): +flutter build apk --debug --dart-define=API_BASE_URL=http://10.0.2.2:8000/api/v1 +# release (для публикации): +flutter build apk --release --dart-define=API_BASE_URL=https://voidea.app/api/v1 +# APK будет в: build/app/outputs/flutter-apk/app-release.apk +# split per ABI (меньше размер): +flutter build apk --split-per-abi --release + +# 6. Собрать IPA (требуется macOS + Xcode) +flutter build ios --release + +# 7. AppBundle (Google Play) +flutter build appbundle --release +``` + +## Известные проблемы и решения + +### dot-shorthands error +``` +Error: This requires the experimental 'dot-shorthands' language feature. +``` +Причина: `flutter create` сгенерировал шаблонный `lib/main.dart` с синтаксисом `.fromSeed()`. +Решение: перегенерировать платформенные папки через `init_project.ps1` (он не трогает `lib/`). + +## Переменные окружения + +Установите через `--dart-define`: + +```bash +flutter run --dart-define=API_BASE_URL=https://voidea.app/api/v1 +``` + +## Структура проекта + +``` +flutter/ +├── lib/ +│ ├── main.dart # Entry point +│ ├── app.dart # MaterialApp.router +│ ├── core/ +│ │ ├── api/ # Dio client, endpoints, exceptions +│ │ ├── theme/ # Material 3 theme (light/dark) +│ │ ├── router/ # go_router config +│ │ ├── constants/ # App constants, colors, funnel config +│ │ └── utils/ # Validators +│ ├── models/ # Data classes (auth, idea, workspace...) +│ ├── providers/ # Riverpod state (auth, ideas, workspace...) +│ ├── widgets/ # Shared widgets (loading, error, vote...) +│ └── features/ # Feature-first structure +│ ├── auth/ # Login, register, 2FA, password reset +│ ├── dashboard/ # Main dashboard with list/kanban toggle +│ ├── ideas/ # CRUD, view, edit, funnel, kanban +│ ├── voice/ # Voice input, sessions +│ ├── workspaces/ # Workspace list, detail, members +│ ├── notifications/ # Notification list +│ ├── settings/ # Profile, theme, integrations, logout +│ ├── integrations/ # Calendar connection UI +│ ├── onboarding/ # Onboarding slides +│ └── admin/ # Admin panel (7 tabs) +├── test/ # Widget tests +├── assets/ # Static assets +├── pubspec.yaml +└── analysis_options.yaml +``` + +## Фичи + +- **Голосовой ввод** через speech_to_text (Native Android/iOS) +- **Воронка идей**: 6 статусов (raw → retrospective), Kanban-доска +- **Рабочие пространства**: личные и командные, управление участниками +- **Совместная работа**: голосования, комментарии, лента активности +- **Календарь**: Google, Яндекс, Apple (CalDAV) +- **Уведомления**: push, in-app, unread badge +- **Админ-панель**: статистика, пользователи, агенты, логи, тарифы, бот, сервисы +- **Тёмная/светлая тема**: переключение, сохранение в Secure Storage +- **Анимации**: flutter_animate (fade, slide, scale) + +## Сборка для VPS + +Установите `API_BASE_URL` на продакшн-адрес: + +```bash +flutter build apk --release --dart-define=API_BASE_URL=https://voidea.app/api/v1 +``` diff --git a/flutter/analysis_options.yaml b/flutter/analysis_options.yaml new file mode 100644 index 0000000..0aac023 --- /dev/null +++ b/flutter/analysis_options.yaml @@ -0,0 +1,8 @@ +include: package:flutter_lints/flutter.yaml + +linter: + rules: + prefer_const_constructors: true + prefer_const_declarations: true + avoid_print: true + prefer_single_quotes: true diff --git a/flutter/android/.gitignore b/flutter/android/.gitignore new file mode 100644 index 0000000..be3943c --- /dev/null +++ b/flutter/android/.gitignore @@ -0,0 +1,14 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks diff --git a/flutter/android/app/build.gradle.kts b/flutter/android/app/build.gradle.kts new file mode 100644 index 0000000..0502afd --- /dev/null +++ b/flutter/android/app/build.gradle.kts @@ -0,0 +1,44 @@ +plugins { + id("com.android.application") + id("kotlin-android") + // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. + id("dev.flutter.flutter-gradle-plugin") +} + +android { + namespace = "com.voidea.voidea_app" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_17.toString() + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId = "com.voidea.voidea_app" + // You can update the following values to match your application needs. + // For more information, see: https://flutter.dev/to/review-gradle-config. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutter.versionCode + versionName = flutter.versionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.getByName("debug") + } + } +} + +flutter { + source = "../.." +} diff --git a/flutter/android/app/src/debug/AndroidManifest.xml b/flutter/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/flutter/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/flutter/android/app/src/main/AndroidManifest.xml b/flutter/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..bee216e --- /dev/null +++ b/flutter/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt b/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt new file mode 100644 index 0000000..0f58761 --- /dev/null +++ b/flutter/android/app/src/main/kotlin/com/voidea/voidea_app/MainActivity.kt @@ -0,0 +1,5 @@ +package com.voidea.voidea_app + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity : FlutterActivity() diff --git a/flutter/android/app/src/main/res/drawable-v21/launch_background.xml b/flutter/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/flutter/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/flutter/android/app/src/main/res/drawable/launch_background.xml b/flutter/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/flutter/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/flutter/android/app/src/main/res/values-night/styles.xml b/flutter/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..06952be --- /dev/null +++ b/flutter/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/flutter/android/app/src/main/res/values/styles.xml b/flutter/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/flutter/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/flutter/android/app/src/profile/AndroidManifest.xml b/flutter/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..399f698 --- /dev/null +++ b/flutter/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/flutter/android/build.gradle.kts b/flutter/android/build.gradle.kts new file mode 100644 index 0000000..dbee657 --- /dev/null +++ b/flutter/android/build.gradle.kts @@ -0,0 +1,24 @@ +allprojects { + repositories { + google() + mavenCentral() + } +} + +val newBuildDir: Directory = + rootProject.layout.buildDirectory + .dir("../../build") + .get() +rootProject.layout.buildDirectory.value(newBuildDir) + +subprojects { + val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) + project.layout.buildDirectory.value(newSubprojectBuildDir) +} +subprojects { + project.evaluationDependsOn(":app") +} + +tasks.register("clean") { + delete(rootProject.layout.buildDirectory) +} diff --git a/flutter/android/gradle.properties b/flutter/android/gradle.properties new file mode 100644 index 0000000..fbee1d8 --- /dev/null +++ b/flutter/android/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true diff --git a/flutter/android/gradle/wrapper/gradle-wrapper.properties b/flutter/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e4ef43f --- /dev/null +++ b/flutter/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip diff --git a/flutter/android/settings.gradle.kts b/flutter/android/settings.gradle.kts new file mode 100644 index 0000000..ca7fe06 --- /dev/null +++ b/flutter/android/settings.gradle.kts @@ -0,0 +1,26 @@ +pluginManagement { + val flutterSdkPath = + run { + val properties = java.util.Properties() + file("local.properties").inputStream().use { properties.load(it) } + val flutterSdkPath = properties.getProperty("flutter.sdk") + require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } + flutterSdkPath + } + + includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +plugins { + id("dev.flutter.flutter-plugin-loader") version "1.0.0" + id("com.android.application") version "8.11.1" apply false + id("org.jetbrains.kotlin.android") version "2.2.20" apply false +} + +include(":app") diff --git a/flutter/android/voidea_app_android.iml b/flutter/android/voidea_app_android.iml new file mode 100644 index 0000000..3bc4b3b --- /dev/null +++ b/flutter/android/voidea_app_android.iml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/flutter/build/app/intermediates/flutter/debug/.last_build_id b/flutter/build/app/intermediates/flutter/debug/.last_build_id new file mode 100644 index 0000000..4fed406 --- /dev/null +++ b/flutter/build/app/intermediates/flutter/debug/.last_build_id @@ -0,0 +1 @@ +2b318bb073ec36e02164ec9484e62b1a \ No newline at end of file diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin b/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin new file mode 100644 index 0000000..86d111f Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.bin differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json b/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json new file mode 100644 index 0000000..3abf18c --- /dev/null +++ b/flutter/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]}] \ No newline at end of file diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z new file mode 100644 index 0000000..2bb2b73 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json new file mode 100644 index 0000000..523bfc7 --- /dev/null +++ b/flutter/build/app/intermediates/flutter/debug/flutter_assets/NativeAssetsManifest.json @@ -0,0 +1 @@ +{"format-version":[1,0,0],"native-assets":{}} \ No newline at end of file diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf b/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 0000000..8c99266 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data b/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data new file mode 100644 index 0000000..6b90f32 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin b/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin new file mode 100644 index 0000000..c7d7215 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag new file mode 100644 index 0000000..bba8a05 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/ink_sparkle.frag differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag new file mode 100644 index 0000000..adebca0 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/shaders/stretch_effect.frag differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data b/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data new file mode 100644 index 0000000..6a4dc29 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data differ diff --git a/flutter/build/app/intermediates/flutter/debug/flutter_build.d b/flutter/build/app/intermediates/flutter/debug/flutter_build.d new file mode 100644 index 0000000..bd7ffe0 --- /dev/null +++ b/flutter/build/app/intermediates/flutter/debug/flutter_build.d @@ -0,0 +1 @@ + D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NativeAssetsManifest.json D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts\\MaterialIcons-Regular.otf D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\ink_sparkle.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\shaders\\stretch_effect.frag D:\\YandexDisk\\voidea\\flutter\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data: C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\_fe_analyzer_shared-85.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer-7.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\analyzer_plugin-0.13.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ansicolor-2.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\archive-4.0.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\args-2.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\async.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\async_memoizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\byte_collector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\cancelable_operation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\chunked_stream_reader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\event_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\delegate\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\future_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\lazy_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\null_stream_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\restartable_timer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\capture_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\future.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\release_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\result\\value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\single_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\sink_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_closer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_completer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\handler_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\reject_errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\stream_transformer_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_sink_transformer\\typed.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_splitter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_subscription_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\stream_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\subscription_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed\\stream_subscription.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\async-2.13.1\\lib\\src\\typed_stream_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\boolean_selector-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_config-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_daemon-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_resolvers-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner-2.5.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\build_runner_core-9.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_collection-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\built_value-8.12.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_platform_interface-4.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cached_network_image_web-1.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\characters_impl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.4.1\\lib\\src\\grapheme_clusters\\table.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\checked_yaml-2.0.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\clock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\default.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\stopwatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\clock-1.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_assets-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\code_builder-4.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\collection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\algorithms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\boollist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\canonicalized_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\comparators.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\empty_unmodifiable_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\equality_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\iterable_zip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\list_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\priority_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\queue_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\union_set_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\unmodifiable_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.1\\lib\\src\\wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\connectivity_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus-6.1.5\\lib\\src\\connectivity_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\connectivity_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\method_channel_connectivity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\connectivity_plus_platform_interface-2.1.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\convert-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\cross_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\types\\io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cross_file-0.3.5+2\\lib\\src\\x_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\crypto.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\digest_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hash_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\hmac.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\md5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha256.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\sha512_fastsinks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\crypto-3.0.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\csslib-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_core-0.7.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\custom_lint_visitor-1.0.0+7.7.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dart_style-3.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\dbus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_address.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_auth_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_bus_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_error_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_interface_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_introspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_match_rule.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_member_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_call.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_method_response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_object_tree.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_peer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_properties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_read_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_remote_object_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_server.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_signal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\dbus_write_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getsid_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dbus-0.7.12\\lib\\src\\getuid_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\adapters\\io_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\cancel_token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\compute\\compute_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio\\dio_for_native.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\dio_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\form_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\headers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\imply_content_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\interceptors\\log.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\multipart_file\\io_multipart_file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\parameter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\progress_stream\\io_progress_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\redirect_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\response\\response_stream_handler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\background_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\fused_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\sync_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\consolidate_bytes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\transformers\\util\\transform_empty_to_null.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio-5.9.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\dio_web_adapter-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fake_async-1.3.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\allocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\arena.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\ffi-2.2.0\\lib\\src\\utf8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\file-7.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\fixnum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\int64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\intx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\fixnum-1.1.1\\lib\\src\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\adapters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\change_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\scroll_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\adapters\\value_notifier_adapter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\animate_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effect_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\align_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\blur_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\box_shadow_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\callback_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\color_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\crossfade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\custom_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\effects.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\elevation_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\fade_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\flip_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\follow_path_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\listen_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\move_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\rotate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\saturate_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\scale_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shader_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shake_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\shimmer_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\slide_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\swap_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\then_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\tint_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\toggle_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\effects\\visibility_effect.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\animation_controller_loop_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\num_duration_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\extensions\\offset_copy_with_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\flutter_animate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_animate-4.5.2\\lib\\src\\warn.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_cache_manager-3.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\callback_dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\flutter_local_notifications_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\bitmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\message.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\method_channel_mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_channel_group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\notification_sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\person.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\schedule_mode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_picture_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\big_text_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\default_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\inbox_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\media_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\messaging_style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\android\\styles\\style_information.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\interruption_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\mappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_action_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_attachment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_category_option.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\darwin\\notification_enabled_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\platform_specifics\\ios\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications-18.0.1\\lib\\src\\tz_datetime_mapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\flutter_local_notifications_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\dbus_wrapper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\flutter_local_notifications_platform_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\capabilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\hint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\icon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\initialization_settings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\notification_details.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\sound.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\model\\timeout.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notification_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\notifications_manager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\platform_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_linux-5.0.0\\lib\\src\\storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\flutter_local_notifications_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\typedefs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_local_notifications_platform_interface-8.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_native_splash-2.4.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\flutter_riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\change_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\consumer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\android_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\apple_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\ios_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\linux_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\macos_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\web_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\options\\windows_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage-9.2.4\\lib\\test\\test_flutter_secure_storage_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_linux-1.2.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_macos-3.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\flutter_secure_storage_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\method_channel_flutter_secure_storage.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_platform_interface-1.1.2\\lib\\src\\options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_web-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\flutter_secure_storage_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_secure_storage_windows-3.1.2\\lib\\src\\flutter_secure_storage_windows_ffi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\flutter_shaders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\animated_sampler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\inkwell_shader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\set_uniforms.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_shaders-0.1.3\\lib\\src\\shader_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_svg-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed-2.5.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\freezed_annotation-2.4.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\frontend_server_client-4.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\glob-2.1.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\go_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\configuration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\information_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\error_screen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\misc\\inherited_router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\cupertino.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\custom_transition_page.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\pages\\material.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\route_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\router.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\go_router-14.8.1\\lib\\src\\state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\graphs-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\hooks-1.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\html-0.15.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http-1.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_multi_server-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\http_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\authentication_challenge.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\case_insensitive_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\charcodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\chunked_coding\\encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\http_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\media_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\scan.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\http_parser-4.1.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\image-4.8.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\date_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\intl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\number_symbols_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\date_format_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\global_state.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\bidi_formatter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\compact_number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_computation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\date_format_field.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\micro_money.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_format_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\number_parser_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\regexp.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\string_stack.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl\\text_direction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\intl_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\intl-0.19.0\\lib\\src\\plural_rules.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\io-1.0.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\accessors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\core_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\errors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jclass.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jimplementer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jni.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jprimitives.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jreference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\jvalues.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\kotlin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jboolean.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jbyte.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jcharacter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jdouble.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jfloat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jinteger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jlong.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jnumber.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jshort.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\jstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\lang\\lang.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\method_invocation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbuffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\jbyte_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\nio\\nio.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\primitive_jarrays.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\generated_bindings.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\global_env_extensions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\third_party\\jni_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jiterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jmap.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\jset.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\util\\util.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni-1.0.0\\lib\\src\\version_check.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\generated_plugin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\jni_flutter-1.0.1\\lib\\src\\jni_flutter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\js-0.6.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\json_annotation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\allowed_keys_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\checked_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\enum_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_enum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_key.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_literal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_serializable.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_annotation-4.9.0\\lib\\src\\json_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\json_serializable-6.9.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker-11.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_flutter_testing-3.0.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\leak_tracker_testing-3.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\logging.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\log_record.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\logging-1.3.0\\lib\\src\\logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\matcher-0.12.19\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\blend\\blend.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\contrast\\contrast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dislike\\dislike_analyzer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_color.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\dynamic_scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\material_dynamic_colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\contrast_curve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\src\\tone_delta_pair.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\dynamiccolor\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\cam16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\hct.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\src\\hct_solver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\hct\\viewing_conditions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\material_color_utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\core_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\palettes\\tonal_palette.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_celebi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wsmeans.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\quantizer_wu.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\quantize\\src\\point_provider_lab.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_content.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_expressive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fidelity.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_fruit_salad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_monochrome.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_neutral.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_rainbow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_tonal_spot.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\scheme\\scheme_vibrant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\score\\score.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\temperature\\temperature_cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\color_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\math_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.13.0\\lib\\utils\\string_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.17.0\\lib\\meta_meta.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\mime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\bound_multipart_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\char_code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\default_extension_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\magic_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_multipart_transformer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_shared.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\mime-2.0.0\\lib\\src\\mime_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\native_toolchain_c-0.17.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\nm.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\nm-0.5.0\\lib\\src\\network_manager_client.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\objective_c.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\autorelease.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\block.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\cf_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\globals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_date.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_dictionary.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_enumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_input_stream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_mutable_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_number.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\ns_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_exported.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\objective_c_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\observer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\os_version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\protocol_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\runtime_bindings_generated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\objective_c-9.3.0\\lib\\src\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\octo_image-2.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_config-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\package_info_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\file_version_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus-8.3.1\\lib\\src\\package_info_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\method_channel_package_info.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\package_info_plus_platform_interface-3.2.1\\lib\\package_info_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\characters.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\internal_style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\parsed_path.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\path_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\posix.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\url.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\style\\windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path-1.9.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_parsing-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.5\\lib\\path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\path_provider_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.3.1\\lib\\src\\path_provider_android_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\path_provider_foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\ffi_bindings.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.6.0\\lib\\src\\path_provider_foundation_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\get_application_id_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\lib\\src\\path_provider_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\path_provider_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_platform_interface-2.1.2\\lib\\src\\method_channel_path_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\path_provider_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\folders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\path_provider_windows_real.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.3.0\\lib\\src\\win32_wrappers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pedantic-1.11.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\core.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\definition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\expression.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\petitparser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\core\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\grammar.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\internal\\undefined.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\reference.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\definition\\resolve.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\group.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\expression\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\accept.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\matches\\matches_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_match.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\parser_pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\matcher\\pattern\\pattern_iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\cast_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\continuation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\map.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\permute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\pick.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\trim.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\action\\where.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\any_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\none_of.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\char.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\digit.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\letter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lookup.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\lowercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\predicate\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\uppercase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\code.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\utils\\optimize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\whitespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\character\\word.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\and.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\choice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\delegate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\generated\\sequence_9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\not.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\optional.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\sequence.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\settable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\combinator\\skip.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\end.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\epsilon.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\failure.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\label.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\newline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\misc\\position.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\pattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\single_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\predicate\\unicode_character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\character.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\greedy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\lazy.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\limited.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\possessive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\repeating.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\separated.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\repeater\\unbounded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\failure_joiner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\labeled.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\resolvable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\separated_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\parser\\utils\\sequential.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\reflection\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\petitparser-7.0.2\\lib\\src\\shared\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\local_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\interface\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\platform-3.1.6\\lib\\src\\testing\\fake_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\plugin_platform_interface-2.1.8\\lib\\plugin_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pool-1.5.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\posix-6.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\pub_semver.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\patterns.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_constraint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_range.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pub_semver-2.2.0\\lib\\src\\version_union.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\pubspec_parse-1.5.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\record_use-0.6.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\riverpod.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\async_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\builders.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\common\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\always_alive.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\async_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\container.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\foundation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\listen.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\provider_base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\proxy_provider_listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\ref.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\scheduler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\framework\\value_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\future_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\internals.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\listenable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\pragma.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\run_guarded.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_controller.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_notifier_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\state_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\auto_dispose_family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_notifier\\family.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\auto_dispose.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod-2.6.1\\lib\\src\\stream_provider\\base.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_analyzer_utils-0.5.9\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_annotation-2.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\riverpod_generator-2.6.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\rxdart-0.28.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\share_plus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\share_plus_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus-10.1.4\\lib\\src\\windows_version_helper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\method_channel\\method_channel_share.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\platform_interface\\share_plus_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\share_plus_platform_interface-5.0.2\\lib\\share_plus_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf-1.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shelf_web_socket-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\shimmer-3.0.0\\lib\\shimmer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_gen-2.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_helper-1.3.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\source_span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\file.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\highlighter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\location_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\span_with_context.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\source_span-1.10.2\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_error.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_recognition_result.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text-7.3.0\\lib\\speech_to_text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\method_channel_speech_to_text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_platform_interface-2.3.0\\lib\\speech_to_text_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\speech_to_text_windows-1.0.0+beta.8\\lib\\speech_to_text_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite-2.4.2+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_android-2.4.2+3\\lib\\sqflite_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sql.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\sqlite_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\arg_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\batch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\collection_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\compat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\cursor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_executor_iterate_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_file_system_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\database_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\env_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\factory_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\logger\\sqflite_logger.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\constant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\import_mixin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\mixin\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\open_options.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\path_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\platform\\platform_io.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_database_factory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sqflite_debug.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\sql_command_executor_ext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\transaction.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\src\\value_utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_common-2.5.7\\lib\\utils\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_darwin-2.4.2\\lib\\sqflite_darwin.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\sqflite_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\factory_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\platform_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_import.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\sqflite_platform_interface-2.4.0\\lib\\src\\sqflite_method_channel.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_chain.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\lazy_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\stack_zone_specification.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\unparsed_frame.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\src\\vm_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stack_trace-1.12.1\\lib\\stack_trace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\state_notifier-1.0.0\\lib\\state_notifier.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_channel-2.1.4\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\stream_transform-2.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\charcode.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\eager_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\line_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\relative_span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\span_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\string_scanner-1.4.1\\lib\\string_scanner.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\basic_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\lock_extension.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\multi_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\reentrant_lock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\synchronized-3.4.0+1\\lib\\synchronized.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\ascii_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\top_level.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\src\\generated\\unicode_glyph_set.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\term_glyph-1.2.2\\lib\\term_glyph.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\test_api-0.7.10\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\date_time.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\env.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\location_database.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\src\\tzdb.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timezone-0.10.1\\lib\\timezone.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\timing-1.0.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\src\\typed_queue.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_buffers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\typed_data-1.4.0\\lib\\typed_data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\universal_io-2.3.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\legacy_api.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\type_conversion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\src\\url_launcher_uri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher-6.3.2\\lib\\url_launcher_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_android-6.3.29\\lib\\url_launcher_android.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_ios-6.4.1\\lib\\url_launcher_ios.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_linux-3.2.2\\lib\\url_launcher_linux.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_macos-3.2.5\\lib\\url_launcher_macos.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\link.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\method_channel_url_launcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\src\\url_launcher_platform.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_platform_interface-2.3.2\\lib\\url_launcher_platform_interface.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_web-2.4.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\src\\messages.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\url_launcher_windows-3.1.5\\lib\\url_launcher_windows.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\parsing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\rng.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\uuid_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v1.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\v8generic.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\uuid-4.5.3\\lib\\validation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_codec-1.1.13\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_graphics_compiler-1.2.2\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\aabb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\colors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\frustum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\matrix4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\noise.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\obb3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\opengl.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\plane.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quad.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\quaternion.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\ray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\sphere.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\triangle.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\utilities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\src\\vector_math_64\\vector4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.2.0\\lib\\vector_math_64.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vm_service-15.2.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\watcher-1.2.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web-1.1.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket-1.0.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\web_socket_channel-3.0.3\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\bstr.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\callbacks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iagileobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iapplicationactivationmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxfilesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplication.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestapplicationsenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestospackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependenciesenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackagedependency.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestpackageid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestproperties.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxmanifestreader7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iappxpackagereader.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiocaptureclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclient3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclientduckingcontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclock2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudioclockadjustment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiorenderclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessioncontrol2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiosessionmanager2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iaudiostreamvolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ibindctx.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ichannelaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iclassfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iconnectionpointcontainer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idesktopwallpaper.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\idispatch.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumidlist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienummoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworkconnections.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumnetworks.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumspellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumvariant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ienumwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ierrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialog2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifiledialogcustomize.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileisinuse.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifileopendialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ifilesavedialog.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinitializewithwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iinspectable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iknownfoldermanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataassemblyimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatadispenserex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadataimport2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imetadatatables2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdevicecollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immdeviceenumerator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immendpoint.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\immnotificationclient.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imodalwindow.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\imoniker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetwork.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworkconnection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\inetworklistmanagerevents.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistfile.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersistmemory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipersiststream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ipropertystore.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iprovideclassinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irestrictederrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\irunningobjecttable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensorcollection.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensordatareport.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isensormanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isequentialstream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellfolder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitem2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemfilter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemimagefactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellitemresources.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdatalist.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishelllinkdual.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ishellservice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isimpleaudiovolume.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechaudioformat.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechbasestream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttoken.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechobjecttokens.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechvoicestatus.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeechwaveformatex.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellchecker2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerchangedeventhandler.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellcheckerfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispellingerror.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispeventsource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispnotifysource.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ispvoice.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\istream.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\isupporterrorinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\itypeinfo.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomation6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationandcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationannotationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationboolcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcacherequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationcustomnavigationpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdockpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdragpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationdroptargetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement4.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement5.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement6.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement7.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement8.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelement9.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationelementarray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationexpandcollapsepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgriditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationgridpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationinvokepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationitemcontainerpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationlegacyiaccessiblepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationmultipleviewpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationnotcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationobjectmodelpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationorcondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationpropertycondition.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactory.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactoryentry.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationproxyfactorymapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationrangevaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationscrollpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationselectionpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationspreadsheetpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationstylespattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationsynchronizedinputpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtableitempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtablepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextchildpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtexteditpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrange3.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtextrangearray.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtogglepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtransformpattern2.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationtreewalker.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvaluepattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationvirtualizeditempattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuiautomationwindowpattern.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iunknown.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iuri.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\ivirtualdesktopmanager.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemclassobject.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemconfigurerefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemcontext.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemhiperfenum.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemlocator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemobjectaccess.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemrefresher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwbemservices.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwebauthenticationcoremanagerinterop.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\com\\iwinhttprequest.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\combase.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_metadata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\constants_nodoc.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\dispatcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\enums.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\exceptions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\_internal.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\dialogs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\filetime.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\int_to_hexstring.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\list_to_blob.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_ansi.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\set_string_array.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\extensions\\unpack_utf16.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\functions.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\guid.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\inline.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\macros.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\propertykey.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\structs.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\types.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\utils.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\variant.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\advapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_apiquery_l2_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_comm_l1_1_2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_handle_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_path_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_sysinfo_l1_2_3.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_error_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_core_winrt_string_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_ro_typeresolution_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_shcore_scaling_l1_1_1.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\api_ms_win_wsl_api_l1_1_0.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bluetoothapis.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\bthprops.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comctl32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\comdlg32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\crypt32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dbghelp.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dwmapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\dxva2.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\gdi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\iphlpapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\kernel32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\magnification.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\netapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ntdll.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\ole32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\oleaut32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\powrprof.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\propsys.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\rometadata.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\scarddlg.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\setupapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shell32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\shlwapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\user32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\uxtheme.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\version.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wevtapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winmm.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winscard.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\winspool.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wlanapi.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\wtsapi32.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\win32\\xinput1_4.g.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winmd_constants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\src\\winrt_helpers.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\win32-5.15.0\\lib\\win32.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xdg_directories-1.1.0\\lib\\xdg_directories.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\LICENSE C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\builder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\dtd\\external_id.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\default_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\entity_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\named_entities.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\entities\\null_mapping.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\attribute_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\enums\\node_type.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\format_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parent_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\parser_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\tag_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\exceptions\\type_exception.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\ancestors.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\comparison.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\descendants.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\find.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\following.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\mutator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\nodes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\preceding.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\sibling.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\extensions\\string.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_attributes.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_children.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_value.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\mixins\\has_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\data.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\document_fragment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\node.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\nodes\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\cache.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\character_data_parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\name_matcher.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\namespace.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\node_list.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\predicate.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\prefix_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\simple_name.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\utils\\token.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\pretty_writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml\\visitors\\writer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\annotator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_buffer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_location.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\annotations\\has_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\event_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\codec\\node_codec.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\event_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_decoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\converters\\node_encoder.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\cdata.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\comment.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\declaration.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\doctype.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\end_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\processing.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\start_element.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\events\\text.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterable.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\iterator.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\parser.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\each_event.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\flatten.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\normalizer.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\subtree_selector.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\streams\\with_parent.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\conversion_sink.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\event_attribute.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\list_converter.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\utils\\named.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\src\\xml_events\\visitor.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\xml-6.6.1\\lib\\xml_events.dart C:\\Users\\angel\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\yaml-3.1.3\\LICENSE C:\\Users\\angel\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Users\\angel\\flutter\\bin\\cache\\dart-sdk\\version C:\\Users\\angel\\flutter\\bin\\cache\\engine.stamp C:\\Users\\angel\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\LICENSE C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\services.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\cupertino_focus_halo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_section.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\dart_plugin_registrant.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_capabilities_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_features.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\_timeline_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\capabilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\memory_allocations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\persistent_hash_map.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\timeline.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_details.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap_and_drag.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\action_icons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\adaptive_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\badge_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\carousel_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\choice_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection_toolbar_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filled_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\filter_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_chip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\motion.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_drawer_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\predictive_back_page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\search_view_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\segmented_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\selection_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\stretch_effect.frag C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_parts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\slider_value_indicator_shape.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\spell_check_suggestions_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\_web_image_info_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\linear_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\oval_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\star_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_scaler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\image_filter_config.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\_background_isolate_binary_messenger_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\asset_manifest.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\browser_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flavor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\flutter_version.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_inserted_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.g.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\live_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\predictive_back_event.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\process_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\scribe.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\services\\undo_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_html_element_view_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_platform_selectable_region_context_menu_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_browser_detection_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_web_image_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_io.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_linux.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_macos.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_positioner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\_window_win32.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\adapter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\app_lifecycle_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_button_item.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\context_menu_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\date.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\decorated_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\expansible.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\feedback.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\flutter_logo.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\lookup_boundary.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\magnifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator_pop_handler.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_transitions_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pinned_header_sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_selectable_region_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\radio_group.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_menu_anchor.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_radio.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_tooltip.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\repeating_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable_helpers.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selectable_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\selection_container.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sensitive_content.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\service_extensions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_floating_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_resizing_header.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_tree.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\snapshot_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\spell_check.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\standard_component_type.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\stretch_effect.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\system_context_menu.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tap_region.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_anchors.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\toggleable.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_scroll_view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\two_dimensional_viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\undo_history.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\view.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_state.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Users\\angel\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart C:\\Users\\angel\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\native_assets.dart D:\\YandexDisk\\voidea\\flutter\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD1058567949 D:\\YandexDisk\\voidea\\flutter\\lib\\api\\disk.dart D:\\YandexDisk\\voidea\\flutter\\lib\\app.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\client.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\endpoints.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\api\\exceptions.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\constants\\app_constants.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\router\\app_router.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\theme\\app_theme.dart D:\\YandexDisk\\voidea\\flutter\\lib\\core\\utils\\validators.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\admin\\screens\\admin_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\forgot_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\login_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\register_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\reset_password_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\auth\\screens\\two_factor_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\dashboard\\dashboard_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_create_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_edit_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\screens\\idea_view_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\ideas\\widgets\\funnel_kanban.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\calendar_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\integrations\\disk_integration_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\notifications\\notifications_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\onboarding\\onboarding_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\settings\\screens\\settings_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_input_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\voice\\screens\\voice_sessions_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_detail_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\features\\workspaces\\screens\\workspace_list_screen.dart D:\\YandexDisk\\voidea\\flutter\\lib\\main.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\admin.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\auth.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\collaboration.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\idea.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\tariff.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\voice.dart D:\\YandexDisk\\voidea\\flutter\\lib\\models\\workspace.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\auth_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\disk_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\ideas_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\notification_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\theme_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\providers\\workspace_provider.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\comment_thread.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\empty_state.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\error_display.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\funnel_status_badge.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\loading_indicator.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\shell.dart D:\\YandexDisk\\voidea\\flutter\\lib\\widgets\\vote_buttons.dart D:\\YandexDisk\\voidea\\flutter\\pubspec.yaml \ No newline at end of file diff --git a/flutter/build/app/intermediates/flutter/debug/libs.jar b/flutter/build/app/intermediates/flutter/debug/libs.jar new file mode 100644 index 0000000..58f42d9 Binary files /dev/null and b/flutter/build/app/intermediates/flutter/debug/libs.jar differ diff --git a/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..77eeb5e --- /dev/null +++ b/flutter/build/app/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF b/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF new file mode 100644 index 0000000..59499bc --- /dev/null +++ b/flutter/build/app/tmp/packJniLibsflutterBuildDebug/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/connectivity_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..aee9b0a --- /dev/null +++ b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..d4b0877 --- /dev/null +++ b/flutter/build/connectivity_plus/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/_composite.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp new file mode 100644 index 0000000..8752078 --- /dev/null +++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_dart_plugin_registrant.stamp @@ -0,0 +1 @@ +{"inputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\package_config.json"],"outputs":["D:\\YandexDisk\\voidea\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]} \ No newline at end of file diff --git a/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp new file mode 100644 index 0000000..1b2d28c --- /dev/null +++ b/flutter/build/eb9ddc103a0f084dff021ac4bc0cf326/gen_localizations.stamp @@ -0,0 +1 @@ +{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..eb9ba5e --- /dev/null +++ b/flutter/build/flutter_local_notifications/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,7 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=true +desugarJdkLib=com.android.tools:desugar_jdk_libs:1.2.2 diff --git a/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..f6f54d3 --- /dev/null +++ b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..7a7eff4 --- /dev/null +++ b/flutter/build/flutter_local_notifications/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/flutter_native_splash/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..b7aaac5 --- /dev/null +++ b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..39eec40 --- /dev/null +++ b/flutter/build/flutter_native_splash/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/flutter_secure_storage/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/jni/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/jni_flutter/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/package_info_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/reports/problems/problems-report.html b/flutter/build/reports/problems/problems-report.html new file mode 100644 index 0000000..4b47f2c --- /dev/null +++ b/flutter/build/reports/problems/problems-report.html @@ -0,0 +1,663 @@ + + + + + + + + + + + + + Gradle Configuration Cache + + + +
+ +
+ Loading... +
+ + + + + + diff --git a/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/share_plus/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/speech_to_text/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/sqflite_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 0000000..1211b1e --- /dev/null +++ b/flutter/build/url_launcher_android/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/flutter/fix_build.ps1 b/flutter/fix_build.ps1 new file mode 100644 index 0000000..68e8ec1 --- /dev/null +++ b/flutter/fix_build.ps1 @@ -0,0 +1,34 @@ +# Fix Flutter Android build: AGP 8.x namespace issue with old device_info package +# Run AFTER: flutter create --project-name voidea_app --org com.voidea . +# Сценарий: ищет device_info-2.0.3 в pub-cache и патчит build.gradle + +param ( + [string]$PubCachePath = "$env:USERPROFILE\AppData\Local\Pub\Cache" +) + +Write-Host "Fixing device_info namespace for AGP 8+..." -ForegroundColor Cyan + +$deviceInfoDir = Get-ChildItem -Path "$PubCachePath\hosted\pub.dev" -Directory -Filter "device_info-*" | Sort-Object Name -Descending | Select-Object -First 1 + +if (-not $deviceInfoDir) { + Write-Host "device_info not found in pub cache. Run flutter pub get first." -ForegroundColor Yellow + exit 1 +} + +$buildGradle = Join-Path $deviceInfoDir.FullName "android\build.gradle" +if (-not (Test-Path $buildGradle)) { + Write-Host "build.gradle not found at $buildGradle" -ForegroundColor Red + exit 1 +} + +$content = Get-Content $buildGradle -Raw + +if ($content -match "namespace\s+") { + Write-Host "namespace already set in $buildGradle" -ForegroundColor Green +} else { + $fixed = $content -replace "(android\s*\{)", "`$1`n namespace 'com.voidea.app'" + Set-Content -Path $buildGradle -Value $fixed + Write-Host "Patched namespace in $buildGradle" -ForegroundColor Green +} + +Write-Host "Done. Run 'flutter run' now." -ForegroundColor Cyan diff --git a/flutter/fix_build.sh b/flutter/fix_build.sh new file mode 100644 index 0000000..caa4371 --- /dev/null +++ b/flutter/fix_build.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# Fix Flutter Android build: AGP 8.x namespace issue with old device_info package +# Run AFTER: flutter create --project-name voidea_app --org com.voidea . +# Usage: bash fix_build.sh + +set -e + +PUB_CACHE="${FLUTTER_ROOT:-$HOME/flutter}/.pub-cache/hosted/pub.dev" + +echo "Fixing device_info namespace for AGP 8+..." + +DEVICE_INFO_DIR=$(ls -d "$PUB_CACHE"/device_info-* 2>/dev/null | sort -V | tail -1) + +if [ -z "$DEVICE_INFO_DIR" ]; then + echo "device_info not found in pub cache. Run flutter pub get first." + exit 1 +fi + +BUILD_GRADLE="$DEVICE_INFO_DIR/android/build.gradle" +if [ ! -f "$BUILD_GRADLE" ]; then + echo "build.gradle not found at $BUILD_GRADLE" + exit 1 +fi + +if grep -q "namespace " "$BUILD_GRADLE"; then + echo "namespace already set in $BUILD_GRADLE" +else + sed -i 's/android {/android {\n namespace "com.voidea.app"/' "$BUILD_GRADLE" + echo "Patched namespace in $BUILD_GRADLE" +fi + +echo "Done. Run 'flutter run' now." diff --git a/flutter/init_project.ps1 b/flutter/init_project.ps1 new file mode 100644 index 0000000..0927804 --- /dev/null +++ b/flutter/init_project.ps1 @@ -0,0 +1,83 @@ +# Инициализация Flutter-проекта VoIdea +# Создаёт platform-папки (android/ios/web) не трогая наши lib/ файлы + +param ( + [string]$ProjectDir = $PSScriptRoot +) + +Write-Host "=== VoIdea Flutter Project Init ===" -ForegroundColor Cyan + +# 1. Удаляем пустые папки android/ios/web которые мы создали вручную +Write-Host "`n[1/5] Cleaning stub folders..." -ForegroundColor Yellow +$stubs = @("android", "ios", "web") +foreach ($dir in $stubs) { + $path = Join-Path $ProjectDir $dir + if (Test-Path $path) { + Remove-Item -Recurse -Force $path + Write-Host " Removed $dir" + } +} + +# 2. Создаём временный проект +Write-Host "`n[2/5] Creating temp Flutter project..." -ForegroundColor Yellow +$tempDir = Join-Path $env:TEMP "voidea_flutter_temp_$(Get-Random)" +New-Item -ItemType Directory -Path $tempDir -Force | Out-Null +flutter create --android-language kotlin --project-name voidea_app --org com.voidea --platforms android,ios,web $tempDir 2>&1 | Out-Null +if (-not (Test-Path (Join-Path $tempDir "android"))) { + Write-Host "ERROR: flutter create failed. Check Flutter SDK installation." -ForegroundColor Red + exit 1 +} +Write-Host " Temp project created at $tempDir" + +# 3. Копируем platform-папки в наш проект +Write-Host "`n[3/5] Copying platform folders..." -ForegroundColor Yellow +$folders = @("android", "ios", "web") +foreach ($folder in $folders) { + $src = Join-Path $tempDir $folder + $dst = Join-Path $ProjectDir $folder + if (Test-Path $src) { + Copy-Item -Recurse -Force $src $dst + Write-Host " Copied $folder" + } +} + +# Копируем .metadata (нужен Flutter tools) +Copy-Item (Join-Path $tempDir ".metadata") (Join-Path $ProjectDir ".metadata") -Force +Write-Host " Copied .metadata" + +# 4. Удаляем временный проект +Write-Host "`n[4/5] Cleaning up..." -ForegroundColor Yellow +Remove-Item -Recurse -Force $tempDir +Write-Host " Temp project removed" + +# 5. Проверяем что наши lib/ файлы на месте +Write-Host "`n[5/5] Verifying..." -ForegroundColor Yellow +$ourFiles = @( + "lib/main.dart", + "lib/app.dart", + "lib/core/theme/app_theme.dart", + "lib/core/router/app_router.dart", + "lib/core/api/client.dart", + "lib/providers/auth_provider.dart" +) +$allOk = $true +foreach ($file in $ourFiles) { + $path = Join-Path $ProjectDir $file + if (Test-Path $path) { + Write-Host " OK $file" + } else { + Write-Host " MISSING $file" -ForegroundColor Red + $allOk = $false + } +} + +Write-Host "`n================================" -ForegroundColor Cyan +if ($allOk) { + Write-Host "SUCCESS! Run these commands:" -ForegroundColor Green + Write-Host " cd flutter" + Write-Host " flutter clean" + Write-Host " flutter pub get" + Write-Host " flutter run" +} else { + Write-Host "Some files are missing. Check git status." -ForegroundColor Red +} diff --git a/flutter/ios/.gitignore b/flutter/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/flutter/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/flutter/ios/Flutter/AppFrameworkInfo.plist b/flutter/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..391a902 --- /dev/null +++ b/flutter/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + diff --git a/flutter/ios/Flutter/Debug.xcconfig b/flutter/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/flutter/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/flutter/ios/Flutter/Release.xcconfig b/flutter/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/flutter/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/flutter/ios/Runner.xcodeproj/project.pbxproj b/flutter/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..95b6eae --- /dev/null +++ b/flutter/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,620 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + 7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.voidea.voideaApp; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..e3773d4 --- /dev/null +++ b/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata b/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/flutter/ios/Runner/AppDelegate.swift b/flutter/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..c30b367 --- /dev/null +++ b/flutter/ios/Runner/AppDelegate.swift @@ -0,0 +1,16 @@ +import Flutter +import UIKit + +@main +@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } + + func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) { + GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry) + } +} diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..7353c41 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..6ed2d93 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cd7b00 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..fe73094 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..321773c Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..797d452 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..502f463 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..0ec3034 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..e9f5fea Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..84ac32a Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..8953cba Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..0467bf1 Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard b/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/flutter/ios/Runner/Base.lproj/Main.storyboard b/flutter/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/flutter/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/flutter/ios/Runner/Info.plist b/flutter/ios/Runner/Info.plist new file mode 100644 index 0000000..b9a4e7d --- /dev/null +++ b/flutter/ios/Runner/Info.plist @@ -0,0 +1,70 @@ + + + + + CADisableMinimumFrameDurationOnPhone + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Voidea App + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + voidea_app + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneClassName + UIWindowScene + UISceneConfigurationName + flutter + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + UIApplicationSupportsIndirectInputEvents + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/flutter/ios/Runner/Runner-Bridging-Header.h b/flutter/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/flutter/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/flutter/ios/Runner/SceneDelegate.swift b/flutter/ios/Runner/SceneDelegate.swift new file mode 100644 index 0000000..b9ce8ea --- /dev/null +++ b/flutter/ios/Runner/SceneDelegate.swift @@ -0,0 +1,6 @@ +import Flutter +import UIKit + +class SceneDelegate: FlutterSceneDelegate { + +} diff --git a/flutter/ios/RunnerTests/RunnerTests.swift b/flutter/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 0000000..86a7c3b --- /dev/null +++ b/flutter/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,12 @@ +import Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/flutter/lib/api/disk.dart b/flutter/lib/api/disk.dart new file mode 100644 index 0000000..3ebbf03 --- /dev/null +++ b/flutter/lib/api/disk.dart @@ -0,0 +1,51 @@ +import '../core/api/client.dart'; +import '../core/api/endpoints.dart'; + +class DiskApi { + final ApiClient _api; + + DiskApi(this._api); + + Future> getProviders() async { + final resp = await _api.get(Endpoints.diskProviders); + final list = resp.data['providers'] as List? ?? []; + return list.map((e) => e as String).toList(); + } + + Future> getStatus() async { + final resp = await _api.get(Endpoints.diskStatus); + return resp.data as Map? ?? {}; + } + + Future connect(String provider, String code) async { + try { + await _api.post(Endpoints.diskConnect, data: { + 'provider': provider, + 'code': code, + }); + return true; + } catch (_) { + return false; + } + } + + Future disconnect(String provider) async { + try { + await _api.post(Endpoints.diskDisconnect, data: { + 'provider': provider, + }); + return true; + } catch (_) { + return false; + } + } + + Future getOAuthUrl(String provider) async { + try { + final resp = await _api.get(Endpoints.diskOAuthUrl(provider)); + return resp.data['url'] as String?; + } catch (_) { + return null; + } + } +} diff --git a/flutter/lib/app.dart b/flutter/lib/app.dart new file mode 100644 index 0000000..ee1c993 --- /dev/null +++ b/flutter/lib/app.dart @@ -0,0 +1,23 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'core/router/app_router.dart'; +import 'core/theme/app_theme.dart'; +import 'providers/theme_provider.dart'; + +class VoIdeaApp extends ConsumerWidget { + const VoIdeaApp({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final router = ref.watch(routerProvider); + final themeMode = ref.watch(themeModeProvider); + return MaterialApp.router( + title: 'VoIdea', + debugShowCheckedModeBanner: false, + theme: AppTheme.light(), + darkTheme: AppTheme.dark(), + themeMode: themeMode, + routerConfig: router, + ); + } +} diff --git a/flutter/lib/core/api/client.dart b/flutter/lib/core/api/client.dart new file mode 100644 index 0000000..b7bce17 --- /dev/null +++ b/flutter/lib/core/api/client.dart @@ -0,0 +1,150 @@ +import 'package:dio/dio.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../../../core/constants/app_constants.dart'; +import 'endpoints.dart'; +import 'exceptions.dart'; + +class ApiClient { + late final Dio _dio; + final FlutterSecureStorage _storage = const FlutterSecureStorage(); + static const _tokenKey = 'access_token'; + static const _refreshKey = 'refresh_token'; + + ApiClient() { + _dio = Dio(BaseOptions( + baseUrl: AppConstants.apiBaseUrl, + connectTimeout: AppConstants.connectTimeout, + receiveTimeout: AppConstants.receiveTimeout, + headers: {'Content-Type': 'application/json'}, + )); + + _dio.interceptors.add(InterceptorsWrapper( + onRequest: (options, handler) async { + final token = await _storage.read(key: _tokenKey); + if (token != null) { + options.headers['Authorization'] = 'Bearer $token'; + } + handler.next(options); + }, + onError: (error, handler) async { + if (error.response?.statusCode == 401) { + final refreshed = await _tryRefresh(); + if (refreshed) { + final retryResponse = await _retry(error.requestOptions); + handler.resolve(retryResponse); + return; + } + } + handler.next(error); + }, + )); + } + + Future _tryRefresh() async { + try { + final refreshToken = await _storage.read(key: _refreshKey); + if (refreshToken == null) return false; + final response = await Dio(BaseOptions( + baseUrl: AppConstants.apiBaseUrl, + )).post(Endpoints.refresh, data: {'refresh_token': refreshToken}); + if (response.statusCode == 200) { + await _storage.write( + key: _tokenKey, value: response.data['access_token']); + await _storage.write( + key: _refreshKey, value: response.data['refresh_token']); + return true; + } + } catch (_) {} + return false; + } + + Future _retry(RequestOptions requestOptions) async { + final token = await _storage.read(key: _tokenKey); + final options = Options( + method: requestOptions.method, + headers: { + ...requestOptions.headers, + 'Authorization': 'Bearer $token', + }, + ); + return _dio.request(requestOptions.path, + data: requestOptions.data, + queryParameters: requestOptions.queryParameters, + options: options); + } + + Future> _request( + String method, + String path, { + Map? data, + Map? queryParameters, + }) async { + try { + final response = await _dio.request( + path, + data: data, + queryParameters: queryParameters, + options: Options(method: method), + ); + return response; + } on DioException catch (e) { + throw _mapError(e); + } + } + + Future get(String path, {Map? params}) => + _request('GET', path, queryParameters: params); + + Future post(String path, {Map? data}) => + _request('POST', path, data: data); + + Future put(String path, {Map? data}) => + _request('PUT', path, data: data); + + Future patch(String path, {Map? data}) => + _request('PATCH', path, data: data); + + Future delete(String path) => _request('DELETE', path); + + Future saveTokens( + String accessToken, String refreshToken) async { + await _storage.write(key: _tokenKey, value: accessToken); + await _storage.write(key: _refreshKey, value: refreshToken); + } + + Future clearTokens() async { + await _storage.delete(key: _tokenKey); + await _storage.delete(key: _refreshKey); + } + + Future getAccessToken() => _storage.read(key: _tokenKey); + + ApiException _mapError(DioException e) { + final statusCode = e.response?.statusCode; + final data = e.response?.data; + final message = data is Map ? data['detail']?.toString() ?? '' : ''; + switch (statusCode) { + case 401: + return UnauthorizedException(message); + case 404: + return NotFoundException(message); + case 422: + return ValidationException( + message, data is Map ? data['errors'] : null); + case 403: + return TariffLimitException(message); + case 500: + return ServerException(message); + default: + if (e.type == DioExceptionType.connectionTimeout || + e.type == DioExceptionType.receiveTimeout || + e.type == DioExceptionType.connectionError) { + return NetworkException(); + } + return ApiException(message, statusCode: statusCode); + } + } +} + +final apiClientProvider = Provider((ref) => ApiClient()); diff --git a/flutter/lib/core/api/endpoints.dart b/flutter/lib/core/api/endpoints.dart new file mode 100644 index 0000000..45f5498 --- /dev/null +++ b/flutter/lib/core/api/endpoints.dart @@ -0,0 +1,63 @@ +class Endpoints { + Endpoints._(); + + static const String auth = '/auth'; + static const String login = '/auth/login'; + static const String register = '/auth/register'; + static const String refresh = '/auth/refresh'; + static const String twoFactor = '/auth/2fa'; + static const String forgotPassword = '/auth/forgot-password'; + static const String resetPassword = '/auth/reset-password'; + static const String oauth = '/auth/oauth'; + + static const String ideas = '/ideas'; + static String idea(String id) => '/ideas/$id'; + static String ideaFunnel(String id) => '/ideas/$id/funnel'; + static String ideaComments(String id) => '/ideas/$id/comments'; + static String ideaVote(String id) => '/ideas/$id/vote'; + static String ideaActivity(String id) => '/ideas/$id/activity'; + static String ideaCalendar(String id) => '/ideas/$id/calendar'; + + static const String voiceTranscribe = '/voice/transcribe'; + static const String voiceChat = '/voice/chat'; + static const String voiceSessions = '/voice/sessions'; + static String voiceSession(String id) => '/voice/sessions/$id'; + static String voiceCommands(String sessionId) => + '/voice/sessions/$sessionId/commands'; + + static const String workspaces = '/workspaces'; + static String workspace(String id) => '/workspaces/$id'; + static String workspaceMembers(String id) => '/workspaces/$id/members'; + static String workspaceMember(String wid, String uid) => + '/workspaces/$wid/members/$uid'; + + static const String notifications = '/notifications'; + static String notification(String id) => '/notifications/$id'; + static const String notificationsReadAll = '/notifications/read-all'; + static const String notificationsUnreadCount = '/notifications/unread-count'; + + static const String calendarProviders = '/calendar/providers'; + static const String calendarStatus = '/calendar/status'; + static const String calendarDisconnect = '/calendar/disconnect'; + + static const String diskProviders = '/disk/providers'; + static const String diskStatus = '/disk/status'; + static const String diskConnect = '/disk/connect'; + static const String diskDisconnect = '/disk/disconnect'; + static String diskOAuthUrl(String provider) => '/disk/oauth-url/$provider'; + + static String ideaPresentation(String id) => '/ideas/$id/presentation'; + + static const String adminUsers = '/admin/users'; + static String adminUser(String id) => '/admin/users/$id'; + static const adminAgents = '/admin/agents'; + static String adminAgent(String name) => '/admin/agents/$name'; + static String adminAgentRun(String name) => '/admin/agents/$name/run'; + static const String adminAgentsRunAll = '/admin/agents/run-all'; + static const String adminLogs = '/admin/logs'; + static const String adminTariffs = '/admin/tariffs'; + static String adminTariff(String id) => '/admin/tariffs/$id'; + static const String adminBotCommands = '/admin/bot-commands'; + static const String adminStats = '/admin/stats'; + static const String adminHealth = '/admin/health'; +} diff --git a/flutter/lib/core/api/exceptions.dart b/flutter/lib/core/api/exceptions.dart new file mode 100644 index 0000000..3087a9a --- /dev/null +++ b/flutter/lib/core/api/exceptions.dart @@ -0,0 +1,41 @@ +class ApiException implements Exception { + final String message; + final int? statusCode; + final Map? errors; + + ApiException(this.message, {this.statusCode, this.errors}); + + @override + String toString() => 'ApiException($statusCode): $message'; +} + +class UnauthorizedException extends ApiException { + UnauthorizedException([String? message]) + : super(message ?? 'Требуется авторизация', statusCode: 401); +} + +class NotFoundException extends ApiException { + NotFoundException([String? message]) + : super(message ?? 'Ресурс не найден', statusCode: 404); +} + +class ValidationException extends ApiException { + ValidationException([String? message, Map? errors]) + : super(message ?? 'Ошибка валидации', + statusCode: 422, errors: errors); +} + +class ServerException extends ApiException { + ServerException([String? message]) + : super(message ?? 'Внутренняя ошибка сервера', statusCode: 500); +} + +class NetworkException extends ApiException { + NetworkException([String? message]) + : super(message ?? 'Ошибка сети', statusCode: null); +} + +class TariffLimitException extends ApiException { + TariffLimitException([String? message]) + : super(message ?? 'Достигнут лимит тарифа', statusCode: 403); +} diff --git a/flutter/lib/core/constants/app_constants.dart b/flutter/lib/core/constants/app_constants.dart new file mode 100644 index 0000000..91e6080 --- /dev/null +++ b/flutter/lib/core/constants/app_constants.dart @@ -0,0 +1,43 @@ +import 'package:flutter/material.dart'; + +class AppConstants { + AppConstants._(); + + static const String appName = 'VoIdea'; + static const String apiBaseUrl = String.fromEnvironment( + 'API_BASE_URL', + defaultValue: 'https://voidea.app/api/v1', + ); + static const Duration connectTimeout = Duration(seconds: 15); + static const Duration receiveTimeout = Duration(seconds: 15); + static const int maxVoiceDurationSeconds = 300; + static const int maxVoiceMessagesPerMinute = 10; + static const int tokenRefreshBufferMinutes = 5; + static const String supportEmail = 'support@voidea.app'; + static const String onboardingSeenKey = 'onboarding_seen'; + + static const String demoEmail = 'demo@voidea.app'; + static const String demoPassword = 'demo1234'; + + static const List funnelStates = [ + 'raw', 'validated', 'backlog', 'in_progress', 'launched', 'retrospective', + ]; + + static const Map funnelColors = { + 'raw': Color(0xFF9CA3AF), + 'validated': Color(0xFF60A5FA), + 'backlog': Color(0xFFA78BFA), + 'in_progress': Color(0xFFF59E0B), + 'launched': Color(0xFF34D399), + 'retrospective': Color(0xFF6B7280), + }; + + static const Map funnelLabels = { + 'raw': 'Сырая', + 'validated': 'Подтверждена', + 'backlog': 'Бэклог', + 'in_progress': 'В работе', + 'launched': 'Запущена', + 'retrospective': 'Ретроспектива', + }; +} diff --git a/flutter/lib/core/router/app_router.dart b/flutter/lib/core/router/app_router.dart new file mode 100644 index 0000000..e9edcd5 --- /dev/null +++ b/flutter/lib/core/router/app_router.dart @@ -0,0 +1,129 @@ +import 'package:flutter/material.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import '../../features/auth/screens/login_screen.dart'; +import '../../features/auth/screens/register_screen.dart'; +import '../../features/auth/screens/two_factor_screen.dart'; +import '../../features/auth/screens/forgot_password_screen.dart'; +import '../../features/auth/screens/reset_password_screen.dart'; +import '../../features/dashboard/dashboard_screen.dart'; +import '../../features/ideas/screens/idea_list_screen.dart'; +import '../../features/ideas/screens/idea_view_screen.dart'; +import '../../features/ideas/screens/idea_create_screen.dart'; +import '../../features/ideas/screens/idea_edit_screen.dart'; +import '../../features/voice/screens/voice_input_screen.dart'; +import '../../features/voice/screens/voice_sessions_screen.dart'; +import '../../features/workspaces/screens/workspace_list_screen.dart'; +import '../../features/workspaces/screens/workspace_detail_screen.dart'; +import '../../features/notifications/notifications_screen.dart'; +import '../../features/settings/screens/settings_screen.dart'; +import '../../features/admin/screens/admin_screen.dart'; +import '../../features/onboarding/onboarding_screen.dart'; +import '../../widgets/shell.dart'; +import '../api/client.dart'; +import '../constants/app_constants.dart'; + +final _storage = FlutterSecureStorage(); + +final routerProvider = Provider((ref) { + final apiClient = ref.read(apiClientProvider); + return GoRouter( + initialLocation: '/', + redirect: (context, state) async { + final token = await apiClient.getAccessToken(); + final onboardingSeen = + await _storage.read(key: AppConstants.onboardingSeenKey); + final isAuthRoute = state.matchedLocation.startsWith('/auth') || + state.matchedLocation == '/onboarding'; + if (token == null && !isAuthRoute) { + if (onboardingSeen == null) return '/onboarding'; + return '/auth/login'; + } + if (token != null && isAuthRoute) return '/'; + return null; + }, + routes: [ + GoRoute( + path: '/onboarding', + builder: (_, __) => const OnboardingScreen(), + ), + GoRoute( + path: '/auth/login', + builder: (_, __) => const LoginScreen(), + ), + GoRoute( + path: '/auth/register', + builder: (_, __) => const RegisterScreen(), + ), + GoRoute( + path: '/auth/2fa', + builder: (_, __) => const TwoFactorScreen(), + ), + GoRoute( + path: '/auth/forgot-password', + builder: (_, __) => const ForgotPasswordScreen(), + ), + GoRoute( + path: '/auth/reset-password', + builder: (_, __) => const ResetPasswordScreen(), + ), + ShellRoute( + builder: (_, __, child) => Shell(child: child), + routes: [ + GoRoute( + path: '/', + builder: (_, __) => const DashboardScreen(), + ), + GoRoute( + path: '/ideas', + builder: (_, __) => const IdeaListScreen(), + ), + GoRoute( + path: '/ideas/create', + builder: (_, __) => const IdeaCreateScreen(), + ), + GoRoute( + path: '/ideas/:id', + builder: (_, state) => + IdeaViewScreen(id: state.pathParameters['id']!), + ), + GoRoute( + path: '/ideas/:id/edit', + builder: (_, state) => + IdeaEditScreen(id: state.pathParameters['id']!), + ), + GoRoute( + path: '/voice', + builder: (_, __) => const VoiceInputScreen(), + ), + GoRoute( + path: '/voice/sessions', + builder: (_, __) => const VoiceSessionsScreen(), + ), + GoRoute( + path: '/workspaces', + builder: (_, __) => const WorkspaceListScreen(), + ), + GoRoute( + path: '/workspaces/:id', + builder: (_, state) => + WorkspaceDetailScreen(id: state.pathParameters['id']!), + ), + GoRoute( + path: '/notifications', + builder: (_, __) => const NotificationsScreen(), + ), + GoRoute( + path: '/settings', + builder: (_, __) => const SettingsScreen(), + ), + GoRoute( + path: '/admin', + builder: (_, __) => const AdminScreen(), + ), + ], + ), + ], + ); +}); diff --git a/flutter/lib/core/theme/app_theme.dart b/flutter/lib/core/theme/app_theme.dart new file mode 100644 index 0000000..7378800 --- /dev/null +++ b/flutter/lib/core/theme/app_theme.dart @@ -0,0 +1,187 @@ +import 'package:flutter/material.dart'; + +class VoIdeaColors { + VoIdeaColors._(); + + static const Color primary = Color(0xFF2563EB); + static const Color primaryLight = Color(0xFF60A5FA); + static const Color primaryDark = Color(0xFF1D4ED8); + static const Color secondary = Color(0xFF7C3AED); + static const Color surface = Color(0xFFF8FAFC); + static const Color surfaceDark = Color(0xFF0F172A); + static const Color background = Color(0xFFFFFFFF); + static const Color backgroundDark = Color(0xFF020617); + static const Color error = Color(0xFFEF4444); + static const Color success = Color(0xFF22C55E); + static const Color warning = Color(0xFFF59E0B); + static const Color onPrimary = Color(0xFFFFFFFF); + static const Color onSurface = Color(0xFF1E293B); + static const Color onSurfaceDark = Color(0xFFE2E8F0); + static const Color muted = Color(0xFF94A3B8); +} + +class AppTheme { + AppTheme._(); + + static ThemeData light() { + final colorScheme = ColorScheme.light( + primary: VoIdeaColors.primary, + primaryContainer: VoIdeaColors.primaryLight, + onPrimary: VoIdeaColors.onPrimary, + secondary: VoIdeaColors.secondary, + surface: VoIdeaColors.surface, + onSurface: VoIdeaColors.onSurface, + error: VoIdeaColors.error, + ); + + return ThemeData( + useMaterial3: true, + colorScheme: colorScheme, + scaffoldBackgroundColor: VoIdeaColors.background, + appBarTheme: AppBarTheme( + backgroundColor: VoIdeaColors.background, + foregroundColor: VoIdeaColors.onSurface, + elevation: 0, + centerTitle: true, + titleTextStyle: TextStyle( + color: VoIdeaColors.onSurface, + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + bottomNavigationBarTheme: BottomNavigationBarThemeData( + backgroundColor: VoIdeaColors.background, + selectedItemColor: VoIdeaColors.primary, + unselectedItemColor: VoIdeaColors.muted, + type: BottomNavigationBarType.fixed, + elevation: 8, + ), + cardTheme: CardThemeData( + color: VoIdeaColors.background, + elevation: 1, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + elevatedButtonTheme: ElevatedButtonThemeData( + style: ElevatedButton.styleFrom( + backgroundColor: VoIdeaColors.primary, + foregroundColor: VoIdeaColors.onPrimary, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 14), + ), + ), + inputDecorationTheme: InputDecorationTheme( + filled: true, + fillColor: VoIdeaColors.surface, + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: BorderSide.none, + ), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: BorderSide(color: VoIdeaColors.muted.withOpacity(0.3)), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: const BorderSide(color: VoIdeaColors.primary, width: 2), + ), + contentPadding: + const EdgeInsets.symmetric(horizontal: 16, vertical: 14), + ), + dividerTheme: DividerThemeData( + color: VoIdeaColors.muted.withOpacity(0.2), + thickness: 1, + ), + chipTheme: ChipThemeData( + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(20), + ), + ), + ); + } + + static ThemeData dark() { + final colorScheme = ColorScheme.dark( + primary: VoIdeaColors.primaryLight, + primaryContainer: VoIdeaColors.primaryDark, + onPrimary: VoIdeaColors.onPrimary, + secondary: VoIdeaColors.secondary, + surface: VoIdeaColors.surfaceDark, + onSurface: VoIdeaColors.onSurfaceDark, + error: VoIdeaColors.error, + ); + + return ThemeData( + useMaterial3: true, + colorScheme: colorScheme, + scaffoldBackgroundColor: VoIdeaColors.backgroundDark, + appBarTheme: AppBarTheme( + backgroundColor: VoIdeaColors.backgroundDark, + foregroundColor: VoIdeaColors.onSurfaceDark, + elevation: 0, + centerTitle: true, + titleTextStyle: TextStyle( + color: VoIdeaColors.onSurfaceDark, + fontSize: 18, + fontWeight: FontWeight.w600, + ), + ), + bottomNavigationBarTheme: BottomNavigationBarThemeData( + backgroundColor: VoIdeaColors.backgroundDark, + selectedItemColor: VoIdeaColors.primaryLight, + unselectedItemColor: VoIdeaColors.muted, + type: BottomNavigationBarType.fixed, + elevation: 8, + ), + cardTheme: CardThemeData( + color: VoIdeaColors.surfaceDark, + elevation: 1, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(12), + ), + ), + elevatedButtonTheme: ElevatedButtonThemeData( + style: ElevatedButton.styleFrom( + backgroundColor: VoIdeaColors.primaryLight, + foregroundColor: VoIdeaColors.onPrimary, + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(8), + ), + padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 14), + ), + ), + inputDecorationTheme: InputDecorationTheme( + filled: true, + fillColor: VoIdeaColors.surfaceDark, + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: BorderSide.none, + ), + enabledBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: + BorderSide(color: VoIdeaColors.muted.withOpacity(0.3)), + ), + focusedBorder: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + borderSide: + const BorderSide(color: VoIdeaColors.primaryLight, width: 2), + ), + contentPadding: + const EdgeInsets.symmetric(horizontal: 16, vertical: 14), + ), + dividerTheme: DividerThemeData( + color: VoIdeaColors.muted.withOpacity(0.2), + thickness: 1, + ), + chipTheme: ChipThemeData( + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(20), + ), + ), + ); + } +} diff --git a/flutter/lib/core/utils/validators.dart b/flutter/lib/core/utils/validators.dart new file mode 100644 index 0000000..6f160a7 --- /dev/null +++ b/flutter/lib/core/utils/validators.dart @@ -0,0 +1,26 @@ +class Validators { + Validators._(); + + static String? email(String? value) { + if (value == null || value.isEmpty) return 'Введите email'; + final regex = RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$'); + if (!regex.hasMatch(value)) return 'Некорректный email'; + return null; + } + + static String? password(String? value) { + if (value == null || value.isEmpty) return 'Введите пароль'; + if (value.length < 8) return 'Минимум 8 символов'; + return null; + } + + static String? required(String? value, [String field = 'Поле']) { + if (value == null || value.trim().isEmpty) return '$field обязательно'; + return null; + } + + static String? confirmPassword(String? value, String password) { + if (value != password) return 'Пароли не совпадают'; + return null; + } +} diff --git a/flutter/lib/features/admin/screens/admin_screen.dart b/flutter/lib/features/admin/screens/admin_screen.dart new file mode 100644 index 0000000..9f6b3c3 --- /dev/null +++ b/flutter/lib/features/admin/screens/admin_screen.dart @@ -0,0 +1,544 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:intl/intl.dart'; +import '../../../core/api/client.dart'; +import '../../../core/api/endpoints.dart'; +import '../../../core/api/exceptions.dart'; +import '../../../core/theme/app_theme.dart'; +import '../../../models/admin.dart'; +import '../../../models/tariff.dart'; +import '../../../models/auth.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/error_display.dart'; +import '../../../widgets/empty_state.dart'; + +class AdminScreen extends ConsumerStatefulWidget { + const AdminScreen({super.key}); + + @override + ConsumerState createState() => _AdminScreenState(); +} + +class _AdminScreenState extends ConsumerState + with SingleTickerProviderStateMixin { + late TabController _tabController; + + @override + void initState() { + super.initState(); + _tabController = TabController(length: 7, vsync: this); + } + + @override + void dispose() { + _tabController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Админ-панель'), + bottom: TabBar( + controller: _tabController, + isScrollable: true, + tabs: const [ + Tab(text: 'Статистика'), + Tab(text: 'Пользователи'), + Tab(text: 'Агенты'), + Tab(text: 'Логи'), + Tab(text: 'Тарифы'), + Tab(text: 'Бот'), + Tab(text: 'Сервисы'), + ], + ), + ), + body: TabBarView( + controller: _tabController, + children: const [ + _StatsTab(), + _UsersTab(), + _AgentsTab(), + _LogsTab(), + _TariffsTab(), + _BotTab(), + _ServicesTab(), + ], + ), + ); + } +} + +class _StatsTab extends ConsumerWidget { + const _StatsTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminStats); + return AdminStats.fromJson(resp.data as Map); + }, + builder: (stats) => GridView.count( + padding: const EdgeInsets.all(16), + crossAxisCount: 2, + mainAxisSpacing: 12, + crossAxisSpacing: 12, + childAspectRatio: 1.5, + children: [ + _StatCard(label: 'Пользователи', value: '${stats.totalUsers}', icon: Icons.people), + _StatCard(label: 'Идеи', value: '${stats.totalIdeas}', icon: Icons.lightbulb), + _StatCard(label: 'Голосовые сессии', value: '${stats.totalVoiceSessions}', icon: Icons.mic), + _StatCard(label: 'Раб. пространства', value: '${stats.totalWorkspaces}', icon: Icons.workspaces), + _StatCard(label: 'Активные агенты', value: '${stats.activeAgents}', icon: Icons.smart_toy), + _StatCard(label: 'Уведомления', value: '${stats.totalNotifications}', icon: Icons.notifications), + ], + ), + ); + } +} + +class _StatCard extends StatelessWidget { + final String label; + final String value; + final IconData icon; + + const _StatCard({ + required this.label, + required this.value, + required this.icon, + }); + + @override + Widget build(BuildContext context) { + return Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon(icon, color: VoIdeaColors.primary, size: 28), + const SizedBox(height: 8), + Text(value, + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + )), + Text(label, + style: const TextStyle(fontSize: 12, color: VoIdeaColors.muted)), + ], + ), + ), + ); + } +} + +class _UsersTab extends ConsumerWidget { + const _UsersTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder>( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminUsers); + return (resp.data as List) + .map((e) => User.fromJson(e as Map)) + .toList(); + }, + builder: (users) => ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: users.length, + itemBuilder: (_, i) { + final u = users[i]; + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: ListTile( + leading: CircleAvatar( + backgroundColor: VoIdeaColors.primary.withOpacity(0.1), + child: Text(u.name.isNotEmpty ? u.name[0].toUpperCase() : '?', + style: const TextStyle(color: VoIdeaColors.primary)), + ), + title: Text(u.name), + subtitle: Text('${u.email} · ${DateFormat('d MMM yyyy').format(u.createdAt)}', + style: const TextStyle(fontSize: 12)), + trailing: Row( + mainAxisSize: MainAxisSize.min, + children: [ + if (u.isAdmin) + const Chip(label: Text('Admin', style: TextStyle(fontSize: 10))), + if (u.isTwoFactorEnabled) + const Padding( + padding: EdgeInsets.only(left: 4), + child: Icon(Icons.security, size: 16, color: VoIdeaColors.success), + ), + ], + ), + ), + ); + }, + ), + ); + } +} + +class _AgentsTab extends ConsumerWidget { + const _AgentsTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder>( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminAgents); + return (resp.data as List) + .map((e) => AgentConfig.fromJson(e as Map)) + .toList(); + }, + builder: (agents) => Column( + children: [ + Padding( + padding: const EdgeInsets.all(16), + child: Row( + children: [ + Expanded( + child: ElevatedButton.icon( + onPressed: () => _runAllAgents(ref), + icon: const Icon(Icons.play_arrow), + label: const Text('Запустить всех'), + ), + ), + ], + ), + ), + Expanded( + child: ListView.builder( + padding: const EdgeInsets.symmetric(horizontal: 16), + itemCount: agents.length, + itemBuilder: (_, i) { + final agent = agents[i]; + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: ExpansionTile( + leading: Icon( + agent.isActive ? Icons.smart_toy : Icons.smart_toy_outlined, + color: agent.isActive ? VoIdeaColors.success : VoIdeaColors.muted, + ), + title: Text(agent.name), + subtitle: Text(agent.description, maxLines: 1, + overflow: TextOverflow.ellipsis), + trailing: Row( + mainAxisSize: MainAxisSize.min, + children: [ + IconButton( + icon: const Icon(Icons.play_arrow, size: 20), + onPressed: () => _runAgent(ref, agent.name), + ), + const Icon(Icons.expand_more), + ], + ), + children: [ + Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text('Расписание: ${agent.schedule}', + style: const TextStyle(fontSize: 12)), + const SizedBox(height: 8), + Text('Активен: ${agent.isActive ? "Да" : "Нет"}', + style: const TextStyle(fontSize: 12)), + const SizedBox(height: 8), + Text('Конфиг: ${agent.config.toString()}', + style: const TextStyle(fontSize: 12)), + ], + ), + ), + ], + ), + ); + }, + ), + ), + ], + ), + ); + } + + void _runAgent(WidgetRef ref, String name) async { + try { + final api = ref.read(apiClientProvider); + await api.post(Endpoints.adminAgentRun(name)); + } catch (_) {} + } + + void _runAllAgents(WidgetRef ref) async { + try { + final api = ref.read(apiClientProvider); + await api.post(Endpoints.adminAgentsRunAll); + } catch (_) {} + } +} + +class _LogsTab extends ConsumerWidget { + const _LogsTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder>( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminLogs); + return (resp.data as List) + .map((e) => LogEntry.fromJson(e as Map)) + .toList(); + }, + builder: (logs) => ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: logs.length, + itemBuilder: (_, i) { + final log = logs[i]; + final color = log.level == 'ERROR' + ? VoIdeaColors.error + : log.level == 'WARNING' + ? VoIdeaColors.warning + : VoIdeaColors.muted; + return Card( + margin: const EdgeInsets.only(bottom: 4), + child: ListTile( + dense: true, + leading: Container( + width: 8, + height: 8, + decoration: BoxDecoration(color: color, shape: BoxShape.circle), + ), + title: Text(log.message, + maxLines: 1, overflow: TextOverflow.ellipsis, + style: const TextStyle(fontSize: 13)), + subtitle: Row( + children: [ + Text(log.level, style: TextStyle(fontSize: 11, color: color)), + const SizedBox(width: 8), + if (log.source != null) + Text(log.source!, + style: const TextStyle(fontSize: 11, color: VoIdeaColors.muted)), + const Spacer(), + Text(DateFormat('HH:mm:ss').format(log.createdAt), + style: const TextStyle(fontSize: 11, color: VoIdeaColors.muted)), + ], + ), + ), + ); + }, + ), + ); + } +} + +class _TariffsTab extends ConsumerWidget { + const _TariffsTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder>( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminTariffs); + return (resp.data as List) + .map((e) => Tariff.fromJson(e as Map)) + .toList(); + }, + builder: (tariffs) => ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: tariffs.length, + itemBuilder: (_, i) { + final t = tariffs[i]; + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Text(t.name, + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + )), + const Spacer(), + Text('${t.price} ${t.currency}/мес', + style: TextStyle( + color: VoIdeaColors.primary, + fontWeight: FontWeight.w600)), + ], + ), + const SizedBox(height: 8), + ...t.features.entries.map((e) => Padding( + padding: const EdgeInsets.only(bottom: 4), + child: Row( + children: [ + Icon(Icons.check, size: 14, color: VoIdeaColors.success), + const SizedBox(width: 8), + Text('${e.key}: ${e.value}', + style: const TextStyle(fontSize: 13)), + ], + ), + )), + ], + ), + ), + ); + }, + ), + ); + } +} + +class _BotTab extends ConsumerWidget { + const _BotTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder>( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminBotCommands); + return (resp.data as List) + .map((e) => BotCommand.fromJson(e as Map)) + .toList(); + }, + builder: (commands) => ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: commands.length, + itemBuilder: (_, i) { + final cmd = commands[i]; + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: ListTile( + leading: Icon( + cmd.isEnabled ? Icons.check_circle : Icons.cancel, + color: cmd.isEnabled ? VoIdeaColors.success : VoIdeaColors.error, + ), + title: Text('/${cmd.command}'), + subtitle: Text(cmd.description, maxLines: 1, + overflow: TextOverflow.ellipsis), + trailing: Switch( + value: cmd.isEnabled, + onChanged: (v) => _toggleCommand(ref, cmd.id, v), + ), + ), + ); + }, + ), + ); + } + + void _toggleCommand(WidgetRef ref, String id, bool enabled) async { + try { + final api = ref.read(apiClientProvider); + await api.patch('${Endpoints.adminBotCommands}/$id', data: { + 'is_enabled': enabled, + }); + } catch (_) {} + } +} + +class _ServicesTab extends ConsumerWidget { + const _ServicesTab(); + + @override + Widget build(BuildContext context, WidgetRef ref) { + return _FutureBuilder( + future: () async { + final api = ref.read(apiClientProvider); + final resp = await api.get(Endpoints.adminHealth); + return HealthStatus.fromJson(resp.data as Map); + }, + builder: (health) => ListView( + padding: const EdgeInsets.all(16), + children: [ + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Icon( + health.status == 'ok' + ? Icons.check_circle + : Icons.error, + color: health.status == 'ok' + ? VoIdeaColors.success + : VoIdeaColors.error, + ), + const SizedBox(width: 8), + Text('Статус: ${health.status}', + style: Theme.of(context).textTheme.titleMedium), + ], + ), + const SizedBox(height: 12), + Text('Версия: ${health.version}', + style: const TextStyle(fontSize: 13)), + const SizedBox(height: 4), + Text('Uptime: ${health.uptimeSeconds.toStringAsFixed(0)}с', + style: const TextStyle(fontSize: 13)), + ], + ), + ), + ), + const SizedBox(height: 16), + const Text('Сервисы', + style: TextStyle(fontWeight: FontWeight.w600, fontSize: 16)), + const SizedBox(height: 8), + ...health.services.entries.map((e) => Card( + margin: const EdgeInsets.only(bottom: 8), + child: ListTile( + leading: Icon( + e.value == 'ok' || e.value == true + ? Icons.check_circle + : Icons.error, + color: e.value == 'ok' || e.value == true + ? VoIdeaColors.success + : VoIdeaColors.error, + size: 20, + ), + title: Text(e.key), + subtitle: Text('${e.value}'), + ), + )), + ], + ), + ); + } +} + +class _FutureBuilder extends StatelessWidget { + final Future Function() future; + final Widget Function(T data) builder; + + const _FutureBuilder({required this.future, required this.builder}); + + @override + Widget build(BuildContext context) { + return FutureBuilder( + future: future(), + builder: (ctx, snapshot) { + if (snapshot.connectionState == ConnectionState.waiting) { + return const LoadingIndicator(); + } + if (snapshot.hasError) { + return ErrorDisplay(message: snapshot.error.toString()); + } + if (!snapshot.hasData) { + return const EmptyState( + icon: Icons.info_outline, title: 'Нет данных'); + } + return builder(snapshot.data!); + }, + ); + } +} diff --git a/flutter/lib/features/auth/screens/forgot_password_screen.dart b/flutter/lib/features/auth/screens/forgot_password_screen.dart new file mode 100644 index 0000000..34d580a --- /dev/null +++ b/flutter/lib/features/auth/screens/forgot_password_screen.dart @@ -0,0 +1,116 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../core/utils/validators.dart'; +import '../../../core/theme/app_theme.dart'; + +class ForgotPasswordScreen extends ConsumerStatefulWidget { + const ForgotPasswordScreen({super.key}); + + @override + ConsumerState createState() => + _ForgotPasswordScreenState(); +} + +class _ForgotPasswordScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _emailController = TextEditingController(); + bool _sent = false; + + @override + void dispose() { + _emailController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final authState = ref.watch(authProvider); + final authNotifier = ref.read(authProvider.notifier); + + return Scaffold( + appBar: AppBar(title: const Text('Восстановление пароля')), + body: Padding( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 48), + const Icon( + Icons.lock_reset, + size: 64, + color: VoIdeaColors.primary, + ), + const SizedBox(height: 24), + if (!_sent) ...[ + Text( + 'Введите email, привязанный к аккаунту', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge, + ), + const SizedBox(height: 32), + TextFormField( + controller: _emailController, + keyboardType: TextInputType.emailAddress, + decoration: const InputDecoration( + labelText: 'Email', + prefixIcon: Icon(Icons.email_outlined), + ), + validator: Validators.email, + ), + const SizedBox(height: 24), + if (authState.error != null) + Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + authState.error!, + style: const TextStyle(color: VoIdeaColors.error), + textAlign: TextAlign.center, + ), + ), + ElevatedButton( + onPressed: authState.status == AuthStatus.loading + ? null + : () { + if (_formKey.currentState!.validate()) { + authNotifier + .forgotPassword(_emailController.text.trim()) + .then((_) => setState(() => _sent = true)); + } + }, + child: const Text('Отправить'), + ), + ] else ...[ + const Icon( + Icons.check_circle, + size: 64, + color: VoIdeaColors.success, + ), + const SizedBox(height: 16), + Text( + 'Письмо отправлено', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8), + Text( + 'Проверьте почту и перейдите по ссылке для сброса пароля', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyMedium, + ), + const SizedBox(height: 24), + ElevatedButton( + onPressed: () => context.go('/auth/login'), + child: const Text('Вернуться ко входу'), + ), + ], + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/auth/screens/login_screen.dart b/flutter/lib/features/auth/screens/login_screen.dart new file mode 100644 index 0000000..dba7f80 --- /dev/null +++ b/flutter/lib/features/auth/screens/login_screen.dart @@ -0,0 +1,197 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../core/theme/app_theme.dart'; +import '../../../core/utils/validators.dart'; +import '../../../core/constants/app_constants.dart'; + +class LoginScreen extends ConsumerStatefulWidget { + const LoginScreen({super.key}); + + @override + ConsumerState createState() => _LoginScreenState(); +} + +class _LoginScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _emailController = TextEditingController(); + final _passwordController = TextEditingController(); + bool _obscurePassword = true; + + @override + void dispose() { + _emailController.dispose(); + _passwordController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final authState = ref.watch(authProvider); + final authNotifier = ref.read(authProvider.notifier); + + ref.listen(authProvider, (_, state) { + if (state.status == AuthStatus.authenticated) { + context.go('/'); + } + if (state.needsTwoFactor) { + context.push('/auth/2fa'); + } + }); + + return Scaffold( + body: SafeArea( + child: SingleChildScrollView( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 60), + Icon( + Icons.lightbulb_outline, + size: 64, + color: VoIdeaColors.primary, + ).animate().fadeIn().scale(), + const SizedBox(height: 16), + Text( + AppConstants.appName, + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.headlineMedium?.copyWith( + fontWeight: FontWeight.bold, + color: VoIdeaColors.primary, + ), + ).animate().fadeIn(delay: 100.ms), + const SizedBox(height: 8), + Text( + 'Войдите в аккаунт', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge?.copyWith( + color: VoIdeaColors.muted, + ), + ).animate().fadeIn(delay: 200.ms), + const SizedBox(height: 48), + TextFormField( + controller: _emailController, + keyboardType: TextInputType.emailAddress, + decoration: const InputDecoration( + labelText: 'Email', + prefixIcon: Icon(Icons.email_outlined), + ), + validator: Validators.email, + ).animate().fadeIn(delay: 300.ms).slideX(), + const SizedBox(height: 16), + TextFormField( + controller: _passwordController, + obscureText: _obscurePassword, + decoration: InputDecoration( + labelText: 'Пароль', + prefixIcon: const Icon(Icons.lock_outlined), + suffixIcon: IconButton( + icon: Icon(_obscurePassword + ? Icons.visibility_off + : Icons.visibility), + onPressed: () => + setState(() => _obscurePassword = !_obscurePassword), + ), + ), + validator: Validators.password, + ).animate().fadeIn(delay: 400.ms).slideX(), + const SizedBox(height: 8), + Align( + alignment: Alignment.centerRight, + child: TextButton( + onPressed: () => context.push('/auth/forgot-password'), + child: const Text('Забыли пароль?'), + ), + ), + const SizedBox(height: 24), + if (authState.error != null) + Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + authState.error!, + style: + const TextStyle(color: VoIdeaColors.error), + textAlign: TextAlign.center, + ), + ), + ElevatedButton( + onPressed: authState.status == AuthStatus.loading + ? null + : () { + if (_formKey.currentState!.validate()) { + authNotifier.login( + _emailController.text.trim(), + _passwordController.text, + ); + } + }, + child: authState.status == AuthStatus.loading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + color: Colors.white, + ), + ) + : const Text('Войти'), + ).animate().fadeIn(delay: 500.ms), + const SizedBox(height: 12), + OutlinedButton.icon( + onPressed: () { + _emailController.text = AppConstants.demoEmail; + _passwordController.text = AppConstants.demoPassword; + authNotifier.login(AppConstants.demoEmail, AppConstants.demoPassword); + }, + icon: const Icon(Icons.play_circle_outline, size: 18), + label: const Text('Демо-доступ'), + ).animate().fadeIn(delay: 550.ms), + const SizedBox(height: 12), + OutlinedButton( + onPressed: () => context.push('/auth/register'), + child: const Text('Создать аккаунт'), + ).animate().fadeIn(delay: 600.ms), + const SizedBox(height: 32), + const Row( + children: [ + Expanded(child: Divider()), + Padding( + padding: EdgeInsets.symmetric(horizontal: 16), + child: Text('или'), + ), + Expanded(child: Divider()), + ], + ), + const SizedBox(height: 16), + OutlinedButton.icon( + onPressed: () => _oauthLogin('google'), + icon: const Icon(Icons.g_mobiledata), + label: const Text('Google'), + ), + const SizedBox(height: 8), + OutlinedButton.icon( + onPressed: () => _oauthLogin('yandex'), + icon: const Icon(Icons.cloud), + label: const Text('Яндекс'), + ), + ], + ), + ), + ), + ), + ); + } + + void _oauthLogin(String provider) { + ref.read(authProvider.notifier).getOAuthUrl(provider).then((url) { + if (url != null && mounted) { + context.push('/auth/oauth?provider=$provider&url=$url'); + } + }); + } +} diff --git a/flutter/lib/features/auth/screens/register_screen.dart b/flutter/lib/features/auth/screens/register_screen.dart new file mode 100644 index 0000000..385f9a3 --- /dev/null +++ b/flutter/lib/features/auth/screens/register_screen.dart @@ -0,0 +1,145 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../core/utils/validators.dart'; + +class RegisterScreen extends ConsumerStatefulWidget { + const RegisterScreen({super.key}); + + @override + ConsumerState createState() => _RegisterScreenState(); +} + +class _RegisterScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _nameController = TextEditingController(); + final _emailController = TextEditingController(); + final _passwordController = TextEditingController(); + final _confirmController = TextEditingController(); + bool _obscurePassword = true; + + @override + void dispose() { + _nameController.dispose(); + _emailController.dispose(); + _passwordController.dispose(); + _confirmController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final authState = ref.watch(authProvider); + final authNotifier = ref.read(authProvider.notifier); + + ref.listen(authProvider, (_, state) { + if (state.status == AuthStatus.authenticated) { + context.go('/'); + } + }); + + return Scaffold( + appBar: AppBar(title: const Text('Регистрация')), + body: SafeArea( + child: SingleChildScrollView( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 24), + TextFormField( + controller: _nameController, + decoration: const InputDecoration( + labelText: 'Имя', + prefixIcon: Icon(Icons.person_outline), + ), + validator: (v) => Validators.required(v, 'Имя'), + ).animate().fadeIn().slideX(), + const SizedBox(height: 16), + TextFormField( + controller: _emailController, + keyboardType: TextInputType.emailAddress, + decoration: const InputDecoration( + labelText: 'Email', + prefixIcon: Icon(Icons.email_outlined), + ), + validator: Validators.email, + ).animate().fadeIn(delay: 100.ms).slideX(), + const SizedBox(height: 16), + TextFormField( + controller: _passwordController, + obscureText: _obscurePassword, + decoration: InputDecoration( + labelText: 'Пароль', + prefixIcon: const Icon(Icons.lock_outlined), + suffixIcon: IconButton( + icon: Icon(_obscurePassword + ? Icons.visibility_off + : Icons.visibility), + onPressed: () => + setState(() => _obscurePassword = !_obscurePassword), + ), + ), + validator: Validators.password, + ).animate().fadeIn(delay: 200.ms).slideX(), + const SizedBox(height: 16), + TextFormField( + controller: _confirmController, + obscureText: true, + decoration: const InputDecoration( + labelText: 'Подтвердите пароль', + prefixIcon: Icon(Icons.lock_outlined), + ), + validator: (v) => + Validators.confirmPassword(v, _passwordController.text), + ).animate().fadeIn(delay: 300.ms).slideX(), + const SizedBox(height: 32), + if (authState.error != null) + Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + authState.error!, + style: const TextStyle(color: Color(0xFFEF4444)), + textAlign: TextAlign.center, + ), + ), + ElevatedButton( + onPressed: authState.status == AuthStatus.loading + ? null + : () { + if (_formKey.currentState!.validate()) { + authNotifier.register( + _emailController.text.trim(), + _passwordController.text, + _nameController.text.trim(), + ); + } + }, + child: authState.status == AuthStatus.loading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + color: Colors.white, + ), + ) + : const Text('Зарегистрироваться'), + ).animate().fadeIn(delay: 400.ms), + const SizedBox(height: 16), + TextButton( + onPressed: () => context.pop(), + child: const Text('Уже есть аккаунт? Войти'), + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/auth/screens/reset_password_screen.dart b/flutter/lib/features/auth/screens/reset_password_screen.dart new file mode 100644 index 0000000..73b8fa7 --- /dev/null +++ b/flutter/lib/features/auth/screens/reset_password_screen.dart @@ -0,0 +1,137 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../core/utils/validators.dart'; +import '../../../core/theme/app_theme.dart'; + +class ResetPasswordScreen extends ConsumerStatefulWidget { + const ResetPasswordScreen({super.key}); + + @override + ConsumerState createState() => + _ResetPasswordScreenState(); +} + +class _ResetPasswordScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _tokenController = TextEditingController(); + final _passwordController = TextEditingController(); + final _confirmController = TextEditingController(); + bool _success = false; + + @override + void dispose() { + _tokenController.dispose(); + _passwordController.dispose(); + _confirmController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final authState = ref.watch(authProvider); + final authNotifier = ref.read(authProvider.notifier); + + return Scaffold( + appBar: AppBar(title: const Text('Новый пароль')), + body: Padding( + padding: const EdgeInsets.all(24), + child: Form( + key: _formKey, + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 48), + const Icon( + Icons.lock_reset, + size: 64, + color: VoIdeaColors.primary, + ), + const SizedBox(height: 24), + if (!_success) ...[ + Text( + 'Введите код из письма и новый пароль', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge, + ), + const SizedBox(height: 32), + TextFormField( + controller: _tokenController, + decoration: const InputDecoration( + labelText: 'Код из письма', + prefixIcon: Icon(Icons.vpn_key_outlined), + ), + validator: (v) => Validators.required(v, 'Код'), + ), + const SizedBox(height: 16), + TextFormField( + controller: _passwordController, + obscureText: true, + decoration: const InputDecoration( + labelText: 'Новый пароль', + prefixIcon: Icon(Icons.lock_outlined), + ), + validator: Validators.password, + ), + const SizedBox(height: 16), + TextFormField( + controller: _confirmController, + obscureText: true, + decoration: const InputDecoration( + labelText: 'Подтвердите пароль', + prefixIcon: Icon(Icons.lock_outlined), + ), + validator: (v) => + Validators.confirmPassword(v, _passwordController.text), + ), + const SizedBox(height: 24), + if (authState.error != null) + Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + authState.error!, + style: const TextStyle(color: VoIdeaColors.error), + textAlign: TextAlign.center, + ), + ), + ElevatedButton( + onPressed: authState.status == AuthStatus.loading + ? null + : () { + if (_formKey.currentState!.validate()) { + authNotifier + .resetPassword( + _tokenController.text.trim(), + _passwordController.text, + ) + .then((_) => setState(() => _success = true)); + } + }, + child: const Text('Сохранить'), + ), + ] else ...[ + const Icon( + Icons.check_circle, + size: 64, + color: VoIdeaColors.success, + ), + const SizedBox(height: 16), + Text( + 'Пароль изменён', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 24), + ElevatedButton( + onPressed: () => context.go('/auth/login'), + child: const Text('Войти'), + ), + ], + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/auth/screens/two_factor_screen.dart b/flutter/lib/features/auth/screens/two_factor_screen.dart new file mode 100644 index 0000000..70f0611 --- /dev/null +++ b/flutter/lib/features/auth/screens/two_factor_screen.dart @@ -0,0 +1,108 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../core/theme/app_theme.dart'; + +class TwoFactorScreen extends ConsumerStatefulWidget { + const TwoFactorScreen({super.key}); + + @override + ConsumerState createState() => _TwoFactorScreenState(); +} + +class _TwoFactorScreenState extends ConsumerState { + final _codeController = TextEditingController(); + + @override + void dispose() { + _codeController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final authState = ref.watch(authProvider); + final authNotifier = ref.read(authProvider.notifier); + + ref.listen(authProvider, (_, state) { + if (state.status == AuthStatus.authenticated) { + context.go('/'); + } + }); + + return Scaffold( + appBar: AppBar(title: const Text('Двухфакторная аутентификация')), + body: Padding( + padding: const EdgeInsets.all(24), + child: Column( + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + const SizedBox(height: 48), + const Icon( + Icons.security, + size: 64, + color: VoIdeaColors.primary, + ), + const SizedBox(height: 24), + Text( + 'Введите код из приложения аутентификации', + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge, + ), + const SizedBox(height: 32), + TextField( + controller: _codeController, + keyboardType: TextInputType.number, + textAlign: TextAlign.center, + decoration: InputDecoration( + hintText: '000000', + counterText: '', + helperText: '6-значный код', + ), + maxLength: 6, + style: const TextStyle(fontSize: 32, letterSpacing: 8), + ), + const SizedBox(height: 32), + if (authState.error != null) + Padding( + padding: const EdgeInsets.only(bottom: 16), + child: Text( + authState.error!, + style: const TextStyle(color: VoIdeaColors.error), + textAlign: TextAlign.center, + ), + ), + ElevatedButton( + onPressed: authState.status == AuthStatus.loading + ? null + : () { + if (_codeController.text.length == 6) { + authNotifier.verifyTwoFactor(_codeController.text); + } + }, + child: authState.status == AuthStatus.loading + ? const SizedBox( + height: 20, + width: 20, + child: CircularProgressIndicator( + strokeWidth: 2, + color: Colors.white, + ), + ) + : const Text('Подтвердить'), + ), + const SizedBox(height: 16), + TextButton( + onPressed: () { + authNotifier.logout(); + context.go('/auth/login'); + }, + child: const Text('Назад ко входу'), + ), + ], + ), + ), + ); + } +} diff --git a/flutter/lib/features/dashboard/dashboard_screen.dart b/flutter/lib/features/dashboard/dashboard_screen.dart new file mode 100644 index 0000000..9ebee97 --- /dev/null +++ b/flutter/lib/features/dashboard/dashboard_screen.dart @@ -0,0 +1,163 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../providers/ideas_provider.dart'; +import '../../providers/workspace_provider.dart'; +import '../../core/theme/app_theme.dart'; +import '../../widgets/loading_indicator.dart'; +import '../../widgets/error_display.dart'; +import '../../widgets/empty_state.dart'; +import '../../widgets/funnel_status_badge.dart'; +import '../../models/idea.dart'; +import '../../core/constants/app_constants.dart'; +import '../ideas/widgets/funnel_kanban.dart'; + +class DashboardScreen extends ConsumerWidget { + const DashboardScreen({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final ideasState = ref.watch(ideasProvider); + final wsState = ref.watch(workspaceProvider); + final ideasNotifier = ref.read(ideasProvider.notifier); + + return Scaffold( + appBar: AppBar( + title: Text(wsState.selectedWorkspace?.name ?? 'VoIdea'), + actions: [ + IconButton( + icon: Icon(ideasState.viewMode == 'list' + ? Icons.view_kanban + : Icons.view_list), + onPressed: () { + ideasNotifier.setViewMode( + ideasState.viewMode == 'list' ? 'kanban' : 'list'); + }, + ), + IconButton( + icon: const Icon(Icons.add), + onPressed: () => context.push('/ideas/create'), + ), + ], + ), + body: RefreshIndicator( + onRefresh: () => ideasNotifier.loadIdeas(), + child: _buildBody(context, ref, ideasState), + ), + ); + } + + Widget _buildBody(BuildContext context, WidgetRef ref, IdeasState state) { + if (state.isLoading && state.ideas.isEmpty) { + return const ShimmerList(); + } + if (state.error != null && state.ideas.isEmpty) { + return ErrorDisplay( + message: state.error!, + onRetry: () => ref.read(ideasProvider.notifier).loadIdeas(), + ); + } + if (state.ideas.isEmpty) { + return EmptyState( + icon: Icons.lightbulb_outline, + title: 'Пока нет идей', + subtitle: 'Создайте первую идею', + actionLabel: 'Создать идею', + onAction: () => context.push('/ideas/create'), + ); + } + + if (state.viewMode == 'kanban') { + return IdeaFunnelKanban(ideas: state.ideas); + } + + return ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: state.ideas.length, + itemBuilder: (context, index) { + final idea = state.ideas[index]; + return _IdeaCard(idea: idea).animate().fadeIn( + duration: 300.ms, + delay: (index * 50).ms, + ); + }, + ); + } +} + +class _IdeaCard extends StatelessWidget { + final Idea idea; + + const _IdeaCard({required this.idea}); + + @override + Widget build(BuildContext context) { + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: InkWell( + borderRadius: BorderRadius.circular(12), + onTap: () => context.push('/ideas/${idea.id}'), + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Expanded( + child: Text( + idea.title, + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + ), + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + ), + if (idea.funnelStatus != null) + FunnelStatusBadge(status: idea.funnelStatus), + ], + ), + const SizedBox(height: 8), + if (idea.description.isNotEmpty) + Text( + idea.description, + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: VoIdeaColors.muted, + ), + ), + const SizedBox(height: 12), + Row( + children: [ + Icon(Icons.thumb_up_outlined, + size: 14, color: VoIdeaColors.muted), + const SizedBox(width: 4), + Text(idea.upvotes.toString(), + style: const TextStyle( + color: VoIdeaColors.muted, fontSize: 12)), + const SizedBox(width: 16), + Icon(Icons.thumb_down_outlined, + size: 14, color: VoIdeaColors.muted), + const SizedBox(width: 4), + Text(idea.downvotes.toString(), + style: const TextStyle( + color: VoIdeaColors.muted, fontSize: 12)), + const SizedBox(width: 16), + Icon(Icons.comment_outlined, + size: 14, color: VoIdeaColors.muted), + const SizedBox(width: 4), + Text(idea.commentCount.toString(), + style: const TextStyle( + color: VoIdeaColors.muted, fontSize: 12)), + ], + ), + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/ideas/screens/idea_create_screen.dart b/flutter/lib/features/ideas/screens/idea_create_screen.dart new file mode 100644 index 0000000..0f876bc --- /dev/null +++ b/flutter/lib/features/ideas/screens/idea_create_screen.dart @@ -0,0 +1,92 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../models/idea.dart'; +import '../../../core/utils/validators.dart'; + +class IdeaCreateScreen extends ConsumerStatefulWidget { + const IdeaCreateScreen({super.key}); + + @override + ConsumerState createState() => _IdeaCreateScreenState(); +} + +class _IdeaCreateScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _titleController = TextEditingController(); + final _descriptionController = TextEditingController(); + + @override + void dispose() { + _titleController.dispose(); + _descriptionController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final state = ref.watch(ideasProvider); + final notifier = ref.read(ideasProvider.notifier); + + return Scaffold( + appBar: AppBar( + title: const Text('Новая идея'), + actions: [ + TextButton( + onPressed: state.isLoading + ? null + : () async { + if (_formKey.currentState!.validate()) { + final success = await notifier.createIdea( + CreateIdeaRequest( + title: _titleController.text.trim(), + description: _descriptionController.text.trim(), + ), + ); + if (success && mounted) context.pop(); + } + }, + child: state.isLoading + ? const SizedBox( + height: 16, + width: 16, + child: CircularProgressIndicator(strokeWidth: 2), + ) + : const Text('Сохранить'), + ), + ], + ), + body: SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Form( + key: _formKey, + child: Column( + children: [ + TextFormField( + controller: _titleController, + decoration: const InputDecoration( + labelText: 'Название', + hintText: 'О чём ваша идея?', + ), + validator: (v) => Validators.required(v, 'Название'), + textCapitalization: TextCapitalization.sentences, + ), + const SizedBox(height: 16), + TextFormField( + controller: _descriptionController, + decoration: const InputDecoration( + labelText: 'Описание', + hintText: 'Подробно опишите идею...', + alignLabelWithHint: true, + ), + maxLines: 8, + textCapitalization: TextCapitalization.sentences, + ), + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/ideas/screens/idea_edit_screen.dart b/flutter/lib/features/ideas/screens/idea_edit_screen.dart new file mode 100644 index 0000000..b3f93b3 --- /dev/null +++ b/flutter/lib/features/ideas/screens/idea_edit_screen.dart @@ -0,0 +1,104 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../models/idea.dart'; + +class IdeaEditScreen extends ConsumerStatefulWidget { + final String id; + + const IdeaEditScreen({super.key, required this.id}); + + @override + ConsumerState createState() => _IdeaEditScreenState(); +} + +class _IdeaEditScreenState extends ConsumerState { + final _formKey = GlobalKey(); + final _titleController = TextEditingController(); + final _descriptionController = TextEditingController(); + bool _initialized = false; + + @override + void initState() { + super.initState(); + Future.microtask(() { + ref.read(ideasProvider.notifier).loadIdea(widget.id); + }); + } + + @override + void dispose() { + _titleController.dispose(); + _descriptionController.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + final state = ref.watch(ideasProvider); + final notifier = ref.read(ideasProvider.notifier); + + if (!_initialized && state.selectedIdea != null) { + _titleController.text = state.selectedIdea!.title; + _descriptionController.text = state.selectedIdea!.description; + _initialized = true; + } + + return Scaffold( + appBar: AppBar( + title: const Text('Редактировать идею'), + actions: [ + TextButton( + onPressed: state.isLoading + ? null + : () async { + if (_formKey.currentState!.validate()) { + final success = await notifier.updateIdea( + widget.id, + UpdateIdeaRequest( + title: _titleController.text.trim(), + description: _descriptionController.text.trim(), + ), + ); + if (success && mounted) context.pop(); + } + }, + child: state.isLoading + ? const SizedBox( + height: 16, + width: 16, + child: CircularProgressIndicator(strokeWidth: 2), + ) + : const Text('Сохранить'), + ), + ], + ), + body: SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Form( + key: _formKey, + child: Column( + children: [ + TextFormField( + controller: _titleController, + decoration: const InputDecoration(labelText: 'Название'), + textCapitalization: TextCapitalization.sentences, + ), + const SizedBox(height: 16), + TextFormField( + controller: _descriptionController, + decoration: const InputDecoration( + labelText: 'Описание', + alignLabelWithHint: true, + ), + maxLines: 8, + textCapitalization: TextCapitalization.sentences, + ), + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/ideas/screens/idea_list_screen.dart b/flutter/lib/features/ideas/screens/idea_list_screen.dart new file mode 100644 index 0000000..6645edb --- /dev/null +++ b/flutter/lib/features/ideas/screens/idea_list_screen.dart @@ -0,0 +1,90 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/error_display.dart'; +import '../../../widgets/empty_state.dart'; +import '../../../widgets/funnel_status_badge.dart'; +import '../../../core/theme/app_theme.dart'; +import '../widgets/funnel_kanban.dart'; + +class IdeaListScreen extends ConsumerWidget { + const IdeaListScreen({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final state = ref.watch(ideasProvider); + final notifier = ref.read(ideasProvider.notifier); + + return Scaffold( + appBar: AppBar( + title: const Text('Идеи'), + actions: [ + IconButton( + icon: Icon(state.viewMode == 'list' + ? Icons.view_kanban + : Icons.view_list), + onPressed: () { + notifier.setViewMode( + state.viewMode == 'list' ? 'kanban' : 'list'); + }, + ), + IconButton( + icon: const Icon(Icons.add), + onPressed: () => context.push('/ideas/create'), + ), + ], + ), + body: RefreshIndicator( + onRefresh: () => notifier.loadIdeas(), + child: _buildBody(context, state, notifier), + ), + ); + } + + Widget _buildBody( + BuildContext context, IdeasState state, IdeasNotifier notifier) { + if (state.isLoading && state.ideas.isEmpty) { + return const ShimmerList(); + } + if (state.error != null && state.ideas.isEmpty) { + return ErrorDisplay( + message: state.error!, + onRetry: () => notifier.loadIdeas(), + ); + } + if (state.ideas.isEmpty) { + return EmptyState( + icon: Icons.lightbulb_outline, + title: 'Идей пока нет', + actionLabel: 'Создать', + onAction: () => context.push('/ideas/create'), + ); + } + if (state.viewMode == 'kanban') { + return IdeaFunnelKanban(ideas: state.ideas); + } + return ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: state.ideas.length, + itemBuilder: (_, i) { + final idea = state.ideas[i]; + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: ListTile( + title: Text(idea.title, maxLines: 1, + overflow: TextOverflow.ellipsis), + subtitle: Text(idea.description, maxLines: 2, + overflow: TextOverflow.ellipsis), + trailing: idea.funnelStatus != null + ? FunnelStatusBadge(status: idea.funnelStatus) + : null, + onTap: () => context.push('/ideas/${idea.id}'), + ), + ).animate().fadeIn(duration: 200.ms, delay: (i * 50).ms); + }, + ); + } +} diff --git a/flutter/lib/features/ideas/screens/idea_view_screen.dart b/flutter/lib/features/ideas/screens/idea_view_screen.dart new file mode 100644 index 0000000..bea1a4d --- /dev/null +++ b/flutter/lib/features/ideas/screens/idea_view_screen.dart @@ -0,0 +1,411 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:intl/intl.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../models/idea.dart'; +import '../../../models/collaboration.dart'; +import '../../../widgets/vote_buttons.dart'; +import '../../../widgets/comment_thread.dart'; +import '../../../widgets/funnel_status_badge.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/error_display.dart'; +import '../../../core/theme/app_theme.dart'; +import '../../../core/constants/app_constants.dart'; +import '../../../core/api/endpoints.dart'; +import '../../../core/api/client.dart'; +import '../../../providers/disk_provider.dart'; + +class IdeaViewScreen extends ConsumerStatefulWidget { + final String id; + + const IdeaViewScreen({super.key, required this.id}); + + @override + ConsumerState createState() => _IdeaViewScreenState(); +} + +class _IdeaViewScreenState extends ConsumerState { + final _commentController = TextEditingController(); + + @override + void initState() { + super.initState(); + Future.microtask(() { + ref.read(ideasProvider.notifier).loadIdea(widget.id); + ref.read(ideaCommentsProvider(widget.id).notifier).loadComments(); + ref.read(ideaActivityProvider(widget.id).notifier).loadActivities(); + }); + } + + @override + void dispose() { + _commentController.dispose(); + super.dispose(); + } + + void _showPresentationOptions(BuildContext context) { + final diskState = ref.read(diskProvider); + final hasDrive = diskState.connectedProviders.isNotEmpty; + + showModalBottomSheet( + context: context, + builder: (ctx) => SafeArea( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + Text('Создать презентацию', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + )), + const SizedBox(height: 16), + ListTile( + leading: const Icon(Icons.download, color: VoIdeaColors.primary), + title: const Text('Скачать HTML'), + subtitle: const Text('Откроется в браузере'), + onTap: () { + Navigator.pop(ctx); + _generateAndDownload(); + }, + ), + if (hasDrive) + ...diskState.connectedProviders.map((p) { + final provider = p['provider'] as String? ?? ''; + return ListTile( + leading: Icon(_providerIcon(provider), + color: VoIdeaColors.success), + title: Text('Отправить на ${_providerLabel(provider)}'), + subtitle: Text(p['email'] ?? ''), + onTap: () { + Navigator.pop(ctx); + _generateAndUpload(provider); + }, + ); + }), + if (!hasDrive) + const Padding( + padding: EdgeInsets.all(12), + child: Text( + 'Подключите облачный диск в настройках, чтобы сохранять презентации в облако', + style: TextStyle(fontSize: 12, color: VoIdeaColors.muted), + textAlign: TextAlign.center, + ), + ), + ], + ), + ), + ), + ); + } + + IconData _providerIcon(String provider) { + switch (provider) { + case 'google': return Icons.g_mobiledata; + case 'yandex': return Icons.cloud; + case 'apple': return Icons.apple; + default: return Icons.cloud_outlined; + } + } + + String _providerLabel(String provider) { + switch (provider) { + case 'google': return 'Google Диск'; + case 'yandex': return 'Яндекс Диск'; + case 'apple': return 'iCloud'; + default: return provider; + } + } + + Future _generateAndDownload() async { + try { + final api = ref.read(apiClientProvider); + final resp = await api.post( + '${Endpoints.ideaPresentation(widget.id)}?destination=download', + ); + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar(content: Text('Презентация скачана')), + ); + } + } catch (e) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('Ошибка: $e')), + ); + } + } + } + + Future _generateAndUpload(String provider) async { + try { + final api = ref.read(apiClientProvider); + final resp = await api.post( + '${Endpoints.ideaPresentation(widget.id)}?destination=drive&drive_provider=$provider', + ); + if (mounted) { + final data = resp.data as Map; + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text('Презентация отправлена на ${_providerLabel(provider)}'), + ), + ); + } + } catch (e) { + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar(content: Text('Ошибка загрузки: $e')), + ); + } + } + } + + @override + Widget build(BuildContext context) { + final ideaState = ref.watch(ideasProvider); + final commentsState = ref.watch(ideaCommentsProvider(widget.id)); + final activityState = ref.watch(ideaActivityProvider(widget.id)); + final authState = ref.watch(authProvider); + final ideasNotifier = ref.read(ideasProvider.notifier); + final commentsNotifier = + ref.read(ideaCommentsProvider(widget.id).notifier); + final currentUserId = authState.user?.id ?? ''; + + final idea = ideaState.selectedIdea; + + if (ideaState.isLoading && idea == null) { + return Scaffold( + appBar: AppBar(), + body: const LoadingIndicator(), + ); + } + if (idea == null) { + return Scaffold( + appBar: AppBar(), + body: ErrorDisplay( + message: ideaState.error ?? 'Идея не найдена', + onRetry: () => + ref.read(ideasProvider.notifier).loadIdea(widget.id), + ), + ); + } + + final funnelIndex = AppConstants.funnelStates.indexOf(idea.funnelStatus ?? ''); + final prevStatus = funnelIndex > 0 + ? AppConstants.funnelStates[funnelIndex - 1] + : null; + final nextStatus = funnelIndex < AppConstants.funnelStates.length - 1 + ? AppConstants.funnelStates[funnelIndex + 1] + : null; + + return Scaffold( + appBar: AppBar( + title: const Text('Идея'), + actions: [ + if (idea.userId == currentUserId) + IconButton( + icon: const Icon(Icons.edit_outlined), + onPressed: () => context.push('/ideas/${widget.id}/edit'), + ), + ], + ), + body: SingleChildScrollView( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + Expanded( + child: Text( + idea.title, + style: Theme.of(context).textTheme.headlineSmall?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + ), + if (idea.funnelStatus != null) + FunnelStatusBadge(status: idea.funnelStatus), + ], + ).animate().fadeIn(), + const SizedBox(height: 8), + Row( + children: [ + Text( + idea.userName, + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: VoIdeaColors.muted, + ), + ), + const SizedBox(width: 16), + Text( + DateFormat('d MMM yyyy').format(idea.createdAt), + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: VoIdeaColors.muted, + ), + ), + ], + ).animate().fadeIn(delay: 100.ms), + const SizedBox(height: 16), + if (idea.description.isNotEmpty) + Text( + idea.description, + style: Theme.of(context).textTheme.bodyLarge, + ).animate().fadeIn(delay: 200.ms), + const SizedBox(height: 24), + Row( + children: [ + VoteButtons( + upvotes: idea.upvotes, + downvotes: idea.downvotes, + onUpvote: () => + commentsNotifier.toggleVote(widget.id), + onDownvote: () => + commentsNotifier.toggleVote(widget.id), + ), + const Spacer(), + if (prevStatus != null) + IconButton( + icon: const Icon(Icons.arrow_back), + onPressed: () => + ideasNotifier.updateFunnel(widget.id, prevStatus), + tooltip: 'Переместить в ${AppConstants.funnelLabels[prevStatus]}', + ), + if (nextStatus != null) + IconButton( + icon: const Icon(Icons.arrow_forward), + onPressed: () => + ideasNotifier.updateFunnel(widget.id, nextStatus), + tooltip: 'Переместить в ${AppConstants.funnelLabels[nextStatus]}', + ), + ], + ).animate().fadeIn(delay: 300.ms), + const SizedBox(height: 16), + Row( + children: [ + Expanded( + child: OutlinedButton.icon( + icon: const Icon(Icons.slideshow, size: 18), + label: const Text('Презентация'), + onPressed: () => _showPresentationOptions(context), + ), + ), + ], + ), + const Divider(height: 32), + Text( + 'Комментарии', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + ), + ).animate().fadeIn(delay: 400.ms), + const SizedBox(height: 12), + Row( + children: [ + Expanded( + child: TextField( + controller: _commentController, + decoration: const InputDecoration( + hintText: 'Напишите комментарий...', + isDense: true, + ), + textCapitalization: TextCapitalization.sentences, + ), + ), + const SizedBox(width: 8), + IconButton( + icon: const Icon(Icons.send), + color: VoIdeaColors.primary, + onPressed: () { + if (_commentController.text.isNotEmpty) { + commentsNotifier + .addComment(_commentController.text.trim()) + .then((_) => + _commentController.clear()); + } + }, + ), + ], + ), + const SizedBox(height: 16), + if (commentsState.isLoading) + const LoadingIndicator() + else + CommentThread( + comments: commentsState.comments, + currentUserId: currentUserId, + onAddComment: (body, {parentId}) => + commentsNotifier.addComment(body, parentId: parentId), + ).animate().fadeIn(delay: 500.ms), + const Divider(height: 32), + Text( + 'Активность', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + ), + ).animate().fadeIn(delay: 600.ms), + const SizedBox(height: 12), + if (activityState.isLoading) + const LoadingIndicator() + else + ...activityState.activities.map( + (a) => Padding( + padding: const EdgeInsets.only(bottom: 8), + child: Row( + children: [ + CircleAvatar( + radius: 12, + backgroundColor: + VoIdeaColors.primary.withOpacity(0.1), + child: Text( + a.userName.isNotEmpty + ? a.userName[0].toUpperCase() + : '?', + style: const TextStyle( + fontSize: 10, + color: VoIdeaColors.primary), + ), + ), + const SizedBox(width: 8), + Expanded( + child: Text.rich( + TextSpan( + children: [ + TextSpan( + text: a.userName, + style: const TextStyle( + fontWeight: FontWeight.w500), + ), + TextSpan( + text: ' ${a.action}', + ), + if (a.description != null) + TextSpan( + text: ': ${a.description}', + style: TextStyle( + color: VoIdeaColors.muted), + ), + ], + ), + style: const TextStyle(fontSize: 13), + ), + ), + Text( + DateFormat('HH:mm').format(a.createdAt), + style: const TextStyle( + fontSize: 11, color: VoIdeaColors.muted), + ), + ], + ), + ), + ), + ], + ), + ), + ); + } +} diff --git a/flutter/lib/features/ideas/widgets/funnel_kanban.dart b/flutter/lib/features/ideas/widgets/funnel_kanban.dart new file mode 100644 index 0000000..740ab8e --- /dev/null +++ b/flutter/lib/features/ideas/widgets/funnel_kanban.dart @@ -0,0 +1,249 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../../models/idea.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../core/constants/app_constants.dart'; +import '../../../core/theme/app_theme.dart'; +import '../../../widgets/funnel_status_badge.dart'; + +class IdeaFunnelKanban extends ConsumerWidget { + final List ideas; + + const IdeaFunnelKanban({super.key, required this.ideas}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final notifier = ref.read(ideasProvider.notifier); + return SingleChildScrollView( + scrollDirection: Axis.horizontal, + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: AppConstants.funnelStates.map((status) { + final columnIdeas = + ideas.where((i) => i.funnelStatus == status).toList(); + final color = AppConstants.funnelColors[status]!; + final label = AppConstants.funnelLabels[status]!; + return Container( + width: 280, + margin: const EdgeInsets.all(8), + child: Column( + children: [ + Container( + padding: const EdgeInsets.symmetric( + horizontal: 16, vertical: 10), + decoration: BoxDecoration( + color: color.withOpacity(0.1), + borderRadius: + const BorderRadius.vertical(top: Radius.circular(12)), + ), + child: Row( + children: [ + Container( + width: 8, + height: 8, + decoration: BoxDecoration( + color: color, + shape: BoxShape.circle, + ), + ), + const SizedBox(width: 8), + Text(label, + style: TextStyle( + fontWeight: FontWeight.w600, color: color)), + const Spacer(), + Text( + '${columnIdeas.length}', + style: TextStyle(color: color, fontSize: 12), + ), + ], + ), + ), + Expanded( + child: Container( + decoration: BoxDecoration( + color: VoIdeaColors.surface, + border: Border.all(color: color.withOpacity(0.2)), + borderRadius: + const BorderRadius.vertical(bottom: Radius.circular(12)), + ), + child: columnIdeas.isEmpty + ? Center( + child: Text('Нет идей', + style: TextStyle( + color: VoIdeaColors.muted, fontSize: 12)), + ) + : ListView.builder( + padding: const EdgeInsets.all(8), + itemCount: columnIdeas.length, + itemBuilder: (_, i) { + final idea = columnIdeas[i]; + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: InkWell( + borderRadius: BorderRadius.circular(8), + onTap: () => + context.push('/ideas/${idea.id}'), + onLongPress: () => + _showKanbanContextMenu(context, ref, idea), + child: Padding( + padding: const EdgeInsets.all(12), + child: Column( + crossAxisAlignment: + CrossAxisAlignment.start, + children: [ + Text( + idea.title, + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: const TextStyle( + fontWeight: FontWeight.w500, + fontSize: 13), + ), + const SizedBox(height: 8), + Row( + mainAxisAlignment: + MainAxisAlignment.spaceBetween, + children: [ + Row( + children: [ + _iconText( + Icons.thumb_up_outlined, + idea.upvotes.toString()), + const SizedBox(width: 8), + _iconText( + Icons.comment_outlined, + idea.commentCount + .toString()), + ], + ), + Row( + mainAxisSize: MainAxisSize.min, + children: [ + if (i > 0 || + AppConstants.funnelStates + .indexOf(status) > + 0) + InkWell( + onTap: () => notifier + .updateFunnel( + idea.id, + AppConstants + .funnelStates[ + AppConstants + .funnelStates + .indexOf( + status) - + 1]), + child: const Icon( + Icons.chevron_left, + size: 20), + ), + InkWell( + onTap: () => notifier + .updateFunnel( + idea.id, + AppConstants + .funnelStates[ + AppConstants + .funnelStates + .indexOf( + status) + + 1]), + child: const Icon( + Icons.chevron_right, + size: 20), + ), + ], + ), + ], + ), + ], + ), + ), + ), + ).animate().fadeIn( + duration: 200.ms, + delay: (i * 30).ms); + }, + ), + ), + ), + ], + ), + ); + }).toList(), + ), + ); + } + + Widget _iconText(IconData icon, String text) { + return Row( + mainAxisSize: MainAxisSize.min, + children: [ + Icon(icon, size: 12, color: VoIdeaColors.muted), + const SizedBox(width: 2), + Text(text, + style: + const TextStyle(fontSize: 11, color: VoIdeaColors.muted)), + ], + ); + } + + void _showKanbanContextMenu(BuildContext context, WidgetRef ref, Idea idea) { + final notifier = ref.read(ideasProvider.notifier); + final funnelIdx = AppConstants.funnelStates.indexOf(idea.funnelStatus ?? ''); + final canMoveLeft = funnelIdx > 0; + final canMoveRight = + funnelIdx < AppConstants.funnelStates.length - 1; + + showModalBottomSheet( + context: context, + builder: (ctx) => SafeArea( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Text(idea.title, + style: Theme.of(context) + .textTheme + .titleMedium + ?.copyWith(fontWeight: FontWeight.w600)), + const SizedBox(height: 16), + ListTile( + leading: const Icon(Icons.slideshow, color: VoIdeaColors.primary), + title: const Text('Создать презентацию'), + onTap: () { + Navigator.pop(ctx); + context.push('/ideas/${idea.id}'); + }, + ), + if (canMoveLeft) + ListTile( + leading: const Icon(Icons.arrow_back, color: VoIdeaColors.warning), + title: Text( + 'Переместить в "${AppConstants.funnelLabels[AppConstants.funnelStates[funnelIdx - 1]]}"'), + onTap: () { + Navigator.pop(ctx); + notifier.updateFunnel(idea.id, AppConstants.funnelStates[funnelIdx - 1]); + }, + ), + if (canMoveRight) + ListTile( + leading: const Icon(Icons.arrow_forward, color: VoIdeaColors.success), + title: Text( + 'Переместить в "${AppConstants.funnelLabels[AppConstants.funnelStates[funnelIdx + 1]]}"'), + onTap: () { + Navigator.pop(ctx); + notifier.updateFunnel(idea.id, AppConstants.funnelStates[funnelIdx + 1]); + }, + ), + ], + ), + ), + ), + ); + } +} diff --git a/flutter/lib/features/integrations/calendar_integration_screen.dart b/flutter/lib/features/integrations/calendar_integration_screen.dart new file mode 100644 index 0000000..2fe52fa --- /dev/null +++ b/flutter/lib/features/integrations/calendar_integration_screen.dart @@ -0,0 +1,198 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:url_launcher/url_launcher.dart'; +import '../../core/api/client.dart'; +import '../../core/api/endpoints.dart'; +import '../../core/theme/app_theme.dart'; +import '../../models/auth.dart'; +import '../../providers/auth_provider.dart'; + +class CalendarIntegrationScreen extends ConsumerStatefulWidget { + const CalendarIntegrationScreen({super.key}); + + @override + ConsumerState createState() => + _CalendarIntegrationScreenState(); +} + +class _CalendarIntegrationScreenState + extends ConsumerState { + List _providers = []; + Map? _status; + bool _isLoading = true; + + @override + void initState() { + super.initState(); + _loadData(); + } + + Future _loadData() async { + setState(() => _isLoading = true); + try { + final api = ref.read(apiClientProvider); + final providersResp = await api.get(Endpoints.calendarProviders); + final statusResp = await api.get(Endpoints.calendarStatus); + if (mounted) { + setState(() { + _providers = providersResp.data as List? ?? []; + _status = statusResp.data as Map?; + }); + } + } catch (_) {} + if (mounted) setState(() => _isLoading = false); + } + + @override + Widget build(BuildContext context) { + final user = ref.watch(authProvider).user; + final isConnected = user?.calendarProvider != null; + + return Scaffold( + appBar: AppBar(title: const Text('Интеграция календаря')), + body: _isLoading + ? const Center(child: CircularProgressIndicator()) + : ListView( + padding: const EdgeInsets.all(16), + children: [ + if (isConnected) ...[ + Card( + color: VoIdeaColors.success.withOpacity(0.05), + child: Padding( + padding: const EdgeInsets.all(16), + child: Row( + children: [ + const Icon(Icons.check_circle, + color: VoIdeaColors.success), + const SizedBox(width: 12), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text('Календарь подключён', + style: TextStyle( + fontWeight: FontWeight.w600)), + Text( + 'Провайдер: ${user!.calendarProvider}', + style: const TextStyle(fontSize: 12), + ), + ], + ), + ), + TextButton( + onPressed: _disconnectCalendar, + child: const Text('Отключить', + style: TextStyle( + color: VoIdeaColors.error)), + ), + ], + ), + ), + ), + ] else + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + children: [ + const Icon(Icons.calendar_month, + size: 48, color: VoIdeaColors.primary), + const SizedBox(height: 16), + const Text( + 'Подключите календарь для автоматического создания событий из идей', + textAlign: TextAlign.center, + ), + const SizedBox(height: 24), + ...(_providers.map((p) { + final name = p['name'] as String? ?? ''; + final icon = name == 'google' + ? Icons.g_mobiledata + : name == 'yandex' + ? Icons.cloud + : Icons.calendar_today; + return Padding( + padding: + const EdgeInsets.only(bottom: 8), + child: OutlinedButton.icon( + onPressed: () => + _connectProvider(name), + icon: Icon(icon), + label: Text(_providerLabel(name)), + ), + ); + })), + ], + ), + ), + ), + if (_status != null) ...[ + const SizedBox(height: 16), + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text('Статус календаря', + style: TextStyle( + fontWeight: FontWeight.w600)), + const SizedBox(height: 8), + ...(_status!.entries.map((e) => Padding( + padding: + const EdgeInsets.only(bottom: 4), + child: Row( + children: [ + Text('${e.key}: ', + style: const TextStyle( + fontSize: 13, + color: + VoIdeaColors.muted)), + Text('${e.value}', + style: + const TextStyle(fontSize: 13)), + ], + ), + ))), + ], + ), + ), + ), + ], + ], + ), + ); + } + + String _providerLabel(String name) { + switch (name) { + case 'google': + return 'Google Calendar'; + case 'yandex': + return 'Яндекс Календарь'; + case 'apple': + return 'Apple Календарь'; + default: + return name; + } + } + + Future _connectProvider(String provider) async { + try { + final api = ref.read(apiClientProvider); + final response = + await api.get('${Endpoints.calendarProviders}/$provider'); + final url = response.data['url'] as String?; + if (url != null && await canLaunchUrl(Uri.parse(url))) { + await launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication); + } + } catch (_) {} + } + + Future _disconnectCalendar() async { + try { + final api = ref.read(apiClientProvider); + await api.post(Endpoints.calendarDisconnect); + if (mounted) _loadData(); + } catch (_) {} + } +} diff --git a/flutter/lib/features/integrations/disk_integration_screen.dart b/flutter/lib/features/integrations/disk_integration_screen.dart new file mode 100644 index 0000000..acdb04d --- /dev/null +++ b/flutter/lib/features/integrations/disk_integration_screen.dart @@ -0,0 +1,200 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:url_launcher/url_launcher.dart'; +import '../../providers/disk_provider.dart'; +import '../../core/theme/app_theme.dart'; + +class DiskIntegrationScreen extends ConsumerStatefulWidget { + const DiskIntegrationScreen({super.key}); + + @override + ConsumerState createState() => + _DiskIntegrationScreenState(); +} + +class _DiskIntegrationScreenState extends ConsumerState { + @override + void initState() { + super.initState(); + Future.microtask(() => ref.read(diskProvider.notifier).load()); + } + + @override + Widget build(BuildContext context) { + final state = ref.watch(diskProvider); + final notifier = ref.read(diskProvider.notifier); + + return Scaffold( + appBar: AppBar(title: const Text('Облачные диски')), + body: state.isLoading + ? const Center(child: CircularProgressIndicator()) + : ListView( + padding: const EdgeInsets.all(16), + children: [ + Card( + child: Padding( + padding: const EdgeInsets.all(16), + child: Column( + children: [ + const Icon(Icons.cloud, size: 48, + color: VoIdeaColors.primary), + const SizedBox(height: 12), + const Text( + 'Подключите облачный диск для сохранения презентаций и экспорта', + textAlign: TextAlign.center, + ), + ], + ), + ), + ), + const SizedBox(height: 16), + ...state.availableProviders.map((provider) { + final connected = state.isConnected(provider); + final info = connected + ? state.connectedProviders.firstWhere( + (p) => p['provider'] == provider, + orElse: () => {}, + ) + : null; + final icon = _providerIcon(provider); + final label = _providerLabel(provider); + + return Card( + margin: const EdgeInsets.only(bottom: 8), + child: ListTile( + leading: CircleAvatar( + backgroundColor: connected + ? VoIdeaColors.success.withOpacity(0.1) + : VoIdeaColors.muted.withOpacity(0.1), + child: Icon(icon, + color: connected + ? VoIdeaColors.success + : VoIdeaColors.muted), + ), + title: Text(label), + subtitle: connected + ? Text( + info?['email'] ?? 'Подключён', + style: const TextStyle(fontSize: 12), + ) + : const Text('Не подключён', + style: TextStyle(fontSize: 12)), + trailing: connected + ? TextButton( + onPressed: () => + _confirmDisconnect(context, notifier, provider), + child: const Text('Отключить', + style: TextStyle(color: VoIdeaColors.error)), + ) + : ElevatedButton( + onPressed: () => _connect(context, notifier, provider), + child: const Text('Подключить'), + ), + ), + ); + }), + ], + ), + ); + } + + IconData _providerIcon(String provider) { + switch (provider) { + case 'google': + return Icons.g_mobiledata; + case 'yandex': + return Icons.cloud; + case 'apple': + return Icons.apple; + default: + return Icons.drive_file_rename_outline; + } + } + + String _providerLabel(String provider) { + switch (provider) { + case 'google': + return 'Google Диск'; + case 'yandex': + return 'Яндекс Диск'; + case 'apple': + return 'iCloud'; + default: + return provider; + } + } + + Future _connect( + BuildContext context, DiskNotifier notifier, String provider) async { + final url = await notifier.getOAuthUrl(provider); + if (url != null && await canLaunchUrl(Uri.parse(url))) { + await launchUrl(Uri.parse(url), mode: LaunchMode.externalApplication); + // After OAuth callback, app returns with code in URL + // For simplicity, show a dialog to paste the code + if (mounted) _showCodeDialog(context, notifier, provider); + } + } + + void _showCodeDialog( + BuildContext context, DiskNotifier notifier, String provider) { + final controller = TextEditingController(); + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: Text('Подключить ${_providerLabel(provider)}'), + content: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const Text('После авторизации вставьте код из URL-параметра'), + const SizedBox(height: 12), + TextField( + controller: controller, + decoration: const InputDecoration( + labelText: 'Код авторизации', + hintText: 'Вставьте code из URL', + ), + ), + ], + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () async { + if (controller.text.isNotEmpty) { + await notifier.connect(provider, controller.text.trim()); + if (ctx.mounted) Navigator.pop(ctx); + } + }, + child: const Text('Подключить'), + ), + ], + ), + ); + } + + void _confirmDisconnect( + BuildContext context, DiskNotifier notifier, String provider) { + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: Text('Отключить ${_providerLabel(provider)}?'), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () { + notifier.disconnect(provider); + Navigator.pop(ctx); + }, + child: const Text('Отключить'), + ), + ], + ), + ); + } +} diff --git a/flutter/lib/features/notifications/notifications_screen.dart b/flutter/lib/features/notifications/notifications_screen.dart new file mode 100644 index 0000000..7a67487 --- /dev/null +++ b/flutter/lib/features/notifications/notifications_screen.dart @@ -0,0 +1,126 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:intl/intl.dart'; +import '../../providers/notification_provider.dart'; +import '../../widgets/loading_indicator.dart'; +import '../../widgets/empty_state.dart'; +import '../../core/theme/app_theme.dart'; + +class NotificationsScreen extends ConsumerStatefulWidget { + const NotificationsScreen({super.key}); + + @override + ConsumerState createState() => + _NotificationsScreenState(); +} + +class _NotificationsScreenState extends ConsumerState { + @override + void initState() { + super.initState(); + Future.microtask( + () => ref.read(notificationProvider.notifier).loadNotifications()); + } + + @override + Widget build(BuildContext context) { + final state = ref.watch(notificationProvider); + final notifier = ref.read(notificationProvider.notifier); + + return Scaffold( + appBar: AppBar( + title: const Text('Уведомления'), + actions: [ + if (state.unreadCount > 0) + TextButton( + onPressed: notifier.markAllAsRead, + child: const Text('Прочитать все'), + ), + ], + ), + body: state.isLoading + ? const LoadingIndicator() + : state.notifications.isEmpty + ? const EmptyState( + icon: Icons.notifications_none, + title: 'Нет уведомлений', + ) + : RefreshIndicator( + onRefresh: notifier.loadNotifications, + child: ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: state.notifications.length, + itemBuilder: (_, i) { + final n = state.notifications[i]; + return Dismissible( + key: Key(n.id), + direction: DismissDirection.endToStart, + onDismissed: (_) => notifier.markAsRead(n.id), + background: Container( + alignment: Alignment.centerRight, + padding: const EdgeInsets.only(right: 16), + color: VoIdeaColors.primary, + child: const Icon(Icons.check, color: Colors.white), + ), + child: Card( + margin: const EdgeInsets.only(bottom: 8), + color: n.isRead ? null : VoIdeaColors.primary.withOpacity(0.03), + child: ListTile( + leading: CircleAvatar( + radius: 18, + backgroundColor: n.isRead + ? VoIdeaColors.muted.withOpacity(0.1) + : VoIdeaColors.primary.withOpacity(0.1), + child: Icon( + n.isRead + ? Icons.notifications_none + : Icons.notifications_active, + size: 20, + color: n.isRead + ? VoIdeaColors.muted + : VoIdeaColors.primary, + ), + ), + title: Text( + n.title, + style: TextStyle( + fontWeight: n.isRead + ? FontWeight.normal + : FontWeight.w600, + fontSize: 14, + ), + ), + subtitle: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text(n.body, + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: const TextStyle(fontSize: 12)), + const SizedBox(height: 4), + Text( + DateFormat('d MMM HH:mm') + .format(n.createdAt), + style: TextStyle( + fontSize: 11, + color: VoIdeaColors.muted, + ), + ), + ], + ), + onTap: () { + if (!n.isRead) notifier.markAsRead(n.id); + if (n.ideaId != null) { + context.push('/ideas/${n.ideaId}'); + } + }, + ), + ), + ); + }, + ), + ), + ); + } +} diff --git a/flutter/lib/features/onboarding/onboarding_screen.dart b/flutter/lib/features/onboarding/onboarding_screen.dart new file mode 100644 index 0000000..a684884 --- /dev/null +++ b/flutter/lib/features/onboarding/onboarding_screen.dart @@ -0,0 +1,160 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../../core/theme/app_theme.dart'; +import '../../core/constants/app_constants.dart'; + +class OnboardingScreen extends StatefulWidget { + const OnboardingScreen({super.key}); + + @override + State createState() => _OnboardingScreenState(); +} + +class _OnboardingScreenState extends State { + final _pageController = PageController(); + int _currentPage = 0; + final _storage = const FlutterSecureStorage(); + + final _pages = const [ + _OnboardingPageData( + icon: Icons.lightbulb_outline, + title: 'Добро пожаловать в VoIdea', + description: 'Голосовой помощник для управления идеями.\nЗаписывайте, развивайте и запускайте идеи голосом.', + ), + _OnboardingPageData( + icon: Icons.mic, + title: 'Голосовой ввод', + description: 'Говорите — мы записываем.\nРаспознавание речи в реальном времени.', + ), + _OnboardingPageData( + icon: Icons.view_kanban, + title: 'Воронка идей', + description: 'От сырой идеи до запуска.\nУправляйте статусами и трекайте прогресс.', + ), + _OnboardingPageData( + icon: Icons.groups, + title: 'Командная работа', + description: 'Рабочие пространства, голосования, комментарии.\nВсё для совместной работы.', + ), + ]; + + @override + void dispose() { + _pageController.dispose(); + super.dispose(); + } + + Future _complete() async { + await _storage.write(key: AppConstants.onboardingSeenKey, value: 'true'); + if (mounted) context.go('/auth/login'); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: SafeArea( + child: Column( + children: [ + Align( + alignment: Alignment.topRight, + child: TextButton( + onPressed: _complete, + child: const Text('Пропустить'), + ), + ), + Expanded( + child: PageView.builder( + controller: _pageController, + itemCount: _pages.length, + onPageChanged: (i) => setState(() => _currentPage = i), + itemBuilder: (_, i) { + final page = _pages[i]; + return Padding( + padding: const EdgeInsets.all(48), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon(page.icon, + size: 80, color: VoIdeaColors.primary), + const SizedBox(height: 32), + Text( + page.title, + textAlign: TextAlign.center, + style: Theme.of(context) + .textTheme + .headlineSmall + ?.copyWith(fontWeight: FontWeight.bold), + ), + const SizedBox(height: 16), + Text( + page.description, + textAlign: TextAlign.center, + style: Theme.of(context) + .textTheme + .bodyLarge + ?.copyWith(color: VoIdeaColors.muted), + ), + ], + ), + ).animate().fadeIn(duration: 400.ms); + }, + ), + ), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: List.generate( + _pages.length, + (i) => AnimatedContainer( + duration: 200.ms, + margin: const EdgeInsets.symmetric(horizontal: 4), + width: _currentPage == i ? 24 : 8, + height: 8, + decoration: BoxDecoration( + color: _currentPage == i + ? VoIdeaColors.primary + : VoIdeaColors.muted.withOpacity(0.3), + borderRadius: BorderRadius.circular(4), + ), + ), + ), + ), + const SizedBox(height: 24), + Padding( + padding: const EdgeInsets.all(24), + child: SizedBox( + width: double.infinity, + child: ElevatedButton( + onPressed: _currentPage == _pages.length - 1 + ? _complete + : () => _pageController.nextPage( + duration: 300.ms, + curve: Curves.easeInOut, + ), + child: Text( + _currentPage == _pages.length - 1 + ? 'Начать' + : 'Далее', + ), + ), + ), + ), + ], + ), + ), + ); + } +} + +class _OnboardingPageData { + final IconData icon; + final String title; + final String description; + + const _OnboardingPageData({ + required this.icon, + required this.title, + required this.description, + }); +} diff --git a/flutter/lib/features/settings/screens/settings_screen.dart b/flutter/lib/features/settings/screens/settings_screen.dart new file mode 100644 index 0000000..1c18b41 --- /dev/null +++ b/flutter/lib/features/settings/screens/settings_screen.dart @@ -0,0 +1,184 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/auth_provider.dart'; +import '../../../providers/theme_provider.dart'; +import '../../../providers/workspace_provider.dart'; +import '../../../core/theme/app_theme.dart'; +import '../../integrations/calendar_integration_screen.dart'; +import '../../integrations/disk_integration_screen.dart'; + +class SettingsScreen extends ConsumerWidget { + const SettingsScreen({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final authState = ref.watch(authProvider); + final themeMode = ref.watch(themeModeProvider); + final themeNotifier = ref.read(themeModeProvider.notifier); + final user = authState.user; + + return Scaffold( + appBar: AppBar(title: const Text('Настройки')), + body: ListView( + padding: const EdgeInsets.all(16), + children: [ + Card( + child: ListTile( + leading: CircleAvatar( + backgroundColor: VoIdeaColors.primary.withOpacity(0.1), + child: Text( + user?.name.isNotEmpty == true + ? user!.name[0].toUpperCase() + : '?', + style: const TextStyle( + color: VoIdeaColors.primary, + fontWeight: FontWeight.w600, + ), + ), + ), + title: Text(user?.name ?? 'Пользователь'), + subtitle: Text(user?.email ?? ''), + ), + ), + const SizedBox(height: 8), + const _SectionTitle('Внешний вид'), + Card( + child: Column( + children: [ + ListTile( + leading: const Icon(Icons.brightness_6), + title: const Text('Тема'), + trailing: DropdownButton( + value: themeMode, + underline: const SizedBox(), + items: const [ + DropdownMenuItem( + value: ThemeMode.system, child: Text('Системная')), + DropdownMenuItem( + value: ThemeMode.light, child: Text('Светлая')), + DropdownMenuItem( + value: ThemeMode.dark, child: Text('Тёмная')), + ], + onChanged: (mode) { + if (mode != null) themeNotifier.setTheme(mode); + }, + ), + ), + ], + ), + ), + const SizedBox(height: 16), + const _SectionTitle('Рабочие пространства'), + Card( + child: ListTile( + leading: const Icon(Icons.workspaces_outlined), + title: const Text('Управление пространствами'), + trailing: const Icon(Icons.chevron_right), + onTap: () => context.push('/workspaces'), + ), + ), + const SizedBox(height: 16), + const _SectionTitle('Интеграции'), + Card( + child: ListTile( + leading: const Icon(Icons.calendar_month_outlined), + title: const Text('Календарь'), + subtitle: Text( + user?.calendarProvider != null + ? 'Подключён: ${user!.calendarProvider}' + : 'Не подключён', + style: const TextStyle(fontSize: 12), + ), + trailing: const Icon(Icons.chevron_right), + onTap: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => const CalendarIntegrationScreen()), + ), + ), + ), + Card( + child: ListTile( + leading: const Icon(Icons.cloud_outlined), + title: const Text('Облачные диски'), + subtitle: const Text( + 'Google Диск, Яндекс Диск, iCloud', + style: TextStyle(fontSize: 12), + ), + trailing: const Icon(Icons.chevron_right), + onTap: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => const DiskIntegrationScreen()), + ), + ), + ), + const SizedBox(height: 16), + const _SectionTitle('Аккаунт'), + Card( + child: ListTile( + leading: const Icon(Icons.logout, color: VoIdeaColors.error), + title: const Text('Выйти', + style: TextStyle(color: VoIdeaColors.error)), + onTap: () => _showLogoutDialog(context, ref), + ), + ), + const SizedBox(height: 32), + if (user?.isAdmin == true) + Card( + child: ListTile( + leading: const Icon(Icons.admin_panel_settings, + color: VoIdeaColors.secondary), + title: const Text('Админ-панель'), + trailing: const Icon(Icons.chevron_right), + onTap: () => context.push('/admin'), + ), + ), + ], + ), + ); + } + + void _showLogoutDialog(BuildContext context, WidgetRef ref) { + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Выйти'), + content: const Text('Вы уверены?'), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () { + ref.read(authProvider.notifier).logout(); + context.go('/auth/login'); + }, + child: const Text('Выйти'), + ), + ], + ), + ); + } +} + +class _SectionTitle extends StatelessWidget { + final String title; + const _SectionTitle(this.title); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.only(left: 4, bottom: 8), + child: Text( + title, + style: Theme.of(context).textTheme.titleSmall?.copyWith( + color: VoIdeaColors.muted, + fontWeight: FontWeight.w600, + ), + ), + ); + } +} diff --git a/flutter/lib/features/voice/screens/voice_input_screen.dart b/flutter/lib/features/voice/screens/voice_input_screen.dart new file mode 100644 index 0000000..5ab4be6 --- /dev/null +++ b/flutter/lib/features/voice/screens/voice_input_screen.dart @@ -0,0 +1,237 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import 'package:speech_to_text/speech_to_text.dart'; +import 'dart:async'; +import '../../../core/theme/app_theme.dart'; +import '../../../core/api/client.dart'; +import '../../../core/api/endpoints.dart'; +import '../../../core/constants/app_constants.dart'; + +enum VoiceState { idle, listening, processing, error } + +class VoiceInputScreen extends ConsumerStatefulWidget { + const VoiceInputScreen({super.key}); + + @override + ConsumerState createState() => _VoiceInputScreenState(); +} + +class _VoiceInputScreenState extends ConsumerState + with SingleTickerProviderStateMixin { + final SpeechToText _speech = SpeechToText(); + VoiceState _voiceState = VoiceState.idle; + String _recognizedText = ''; + String? _errorMessage; + bool _available = false; + late AnimationController _animController; + + @override + void initState() { + super.initState(); + _animController = AnimationController( + vsync: this, + duration: const Duration(milliseconds: 1500), + )..repeat(reverse: true); + _initSpeech(); + } + + @override + void dispose() { + _animController.dispose(); + _speech.stop(); + super.dispose(); + } + + Future _initSpeech() async { + _available = await _speech.initialize( + onError: (error) => setState(() { + _voiceState = VoiceState.error; + _errorMessage = error.errorMsg; + }), + onStatus: (status) { + if (status == 'done' || status == 'notListening') { + if (_voiceState == VoiceState.listening) { + _stopListening(); + } + } + }, + ); + if (!_available && mounted) { + setState(() { + _errorMessage = 'Распознавание речи недоступно на этом устройстве'; + }); + } + } + + Future _startListening() async { + if (!_available) return; + setState(() { + _voiceState = VoiceState.listening; + _recognizedText = ''; + _errorMessage = null; + }); + await _speech.listen( + onResult: (result) { + setState(() => _recognizedText = result.recognizedWords); + }, + listenFor: const Duration(seconds: AppConstants.maxVoiceDurationSeconds), + pauseFor: const Duration(seconds: 3), + partialResults: true, + localeId: 'ru_RU', + ); + } + + Future _stopListening() async { + await _speech.stop(); + if (_recognizedText.isNotEmpty) { + setState(() => _voiceState = VoiceState.processing); + await _sendToServer(); + } else { + setState(() => _voiceState = VoiceState.idle); + } + } + + Future _sendToServer() async { + try { + final api = ref.read(apiClientProvider); + final response = await api.post( + Endpoints.voiceTranscribe, + data: {'text': _recognizedText}, + ); + if (mounted) { + setState(() { + _voiceState = VoiceState.idle; + if (response.data['response'] != null) { + _recognizedText = response.data['response'] as String; + } + }); + } + } catch (e) { + if (mounted) { + setState(() { + _voiceState = VoiceState.error; + _errorMessage = 'Ошибка отправки'; + }); + } + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Голосовой ввод'), + actions: [ + IconButton( + icon: const Icon(Icons.history), + onPressed: () => context.push('/voice/sessions'), + ), + ], + ), + body: Center( + child: Padding( + padding: const EdgeInsets.all(32), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + GestureDetector( + onTap: _voiceState == VoiceState.listening + ? _stopListening + : _voiceState == VoiceState.idle + ? _startListening + : null, + child: _PulseAnimation( + listenable: _animController, + builder: (context, child) { + final scale = _voiceState == VoiceState.listening + ? 1.0 + (_animController.value * 0.15) + : 1.0; + return Transform.scale( + scale: scale, + child: Container( + width: 120, + height: 120, + decoration: BoxDecoration( + shape: BoxShape.circle, + color: _voiceState == VoiceState.listening + ? VoIdeaColors.error.withOpacity(0.1) + : VoIdeaColors.primary.withOpacity(0.1), + border: Border.all( + color: _voiceState == VoiceState.listening + ? VoIdeaColors.error + : VoIdeaColors.primary, + width: 3, + ), + ), + child: Icon( + _voiceState == VoiceState.listening + ? Icons.mic + : _voiceState == VoiceState.processing + ? Icons.hourglass_top + : Icons.mic_none, + size: 48, + color: _voiceState == VoiceState.listening + ? VoIdeaColors.error + : VoIdeaColors.primary, + ), + ), + ); + }, + ), + ), + const SizedBox(height: 32), + Text( + _voiceState == VoiceState.idle + ? 'Нажмите для начала записи' + : _voiceState == VoiceState.listening + ? 'Говорите...' + : _voiceState == VoiceState.processing + ? 'Обработка...' + : 'Ошибка', + style: Theme.of(context).textTheme.titleMedium, + ), + const SizedBox(height: 24), + if (_recognizedText.isNotEmpty) + Container( + padding: const EdgeInsets.all(16), + decoration: BoxDecoration( + color: VoIdeaColors.surface, + borderRadius: BorderRadius.circular(12), + ), + child: Text( + _recognizedText, + style: Theme.of(context).textTheme.bodyLarge, + textAlign: TextAlign.center, + ), + ), + if (_errorMessage != null) + Padding( + padding: const EdgeInsets.only(top: 16), + child: Text( + _errorMessage!, + style: const TextStyle(color: VoIdeaColors.error), + textAlign: TextAlign.center, + ), + ), + ], + ), + ), + ), + ); + } +} + +class _PulseAnimation extends AnimatedWidget { + final Widget Function(BuildContext context, Widget? child) builder; + + const _PulseAnimation({ + required super.listenable, + required this.builder, + }); + + @override + Widget build(BuildContext context) { + return builder(context, null); + } +} diff --git a/flutter/lib/features/voice/screens/voice_sessions_screen.dart b/flutter/lib/features/voice/screens/voice_sessions_screen.dart new file mode 100644 index 0000000..de15c18 --- /dev/null +++ b/flutter/lib/features/voice/screens/voice_sessions_screen.dart @@ -0,0 +1,89 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:intl/intl.dart'; +import '../../../core/api/client.dart'; +import '../../../core/api/endpoints.dart'; +import '../../../models/voice.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/empty_state.dart'; +import '../../../core/theme/app_theme.dart'; + +class VoiceSessionsScreen extends ConsumerStatefulWidget { + const VoiceSessionsScreen({super.key}); + + @override + ConsumerState createState() => + _VoiceSessionsScreenState(); +} + +class _VoiceSessionsScreenState extends ConsumerState { + List _sessions = []; + bool _isLoading = true; + + @override + void initState() { + super.initState(); + _loadSessions(); + } + + Future _loadSessions() async { + setState(() => _isLoading = true); + try { + final api = ref.read(apiClientProvider); + final response = await api.get(Endpoints.voiceSessions); + final list = (response.data as List) + .map((e) => VoiceSession.fromJson(e as Map)) + .toList(); + if (mounted) setState(() => _sessions = list); + } catch (_) {} + if (mounted) setState(() => _isLoading = false); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text('История сессий')), + body: _isLoading + ? const LoadingIndicator() + : _sessions.isEmpty + ? const EmptyState( + icon: Icons.history, + title: 'Нет сессий', + subtitle: 'Начните голосовой ввод', + ) + : RefreshIndicator( + onRefresh: _loadSessions, + child: ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: _sessions.length, + itemBuilder: (_, i) { + final session = _sessions[i]; + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: ListTile( + leading: CircleAvatar( + backgroundColor: + VoIdeaColors.primary.withOpacity(0.1), + child: const Icon(Icons.mic, + color: VoIdeaColors.primary), + ), + title: Text( + session.title ?? 'Сессия ${i + 1}'), + subtitle: Text( + '${session.messageCount} сообщений · ${DateFormat('d MMM').format(session.createdAt)}', + style: const TextStyle(fontSize: 12), + ), + trailing: Chip( + label: Text( + session.status, + style: const TextStyle(fontSize: 11), + ), + ), + ), + ); + }, + ), + ), + ); + } +} diff --git a/flutter/lib/features/workspaces/screens/workspace_detail_screen.dart b/flutter/lib/features/workspaces/screens/workspace_detail_screen.dart new file mode 100644 index 0000000..4811735 --- /dev/null +++ b/flutter/lib/features/workspaces/screens/workspace_detail_screen.dart @@ -0,0 +1,153 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/workspace_provider.dart'; +import '../../../providers/ideas_provider.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/empty_state.dart'; +import '../../../models/workspace.dart'; +import '../../../core/theme/app_theme.dart'; + +class WorkspaceDetailScreen extends ConsumerStatefulWidget { + final String id; + + const WorkspaceDetailScreen({super.key, required this.id}); + + @override + ConsumerState createState() => + _WorkspaceDetailScreenState(); +} + +class _WorkspaceDetailScreenState + extends ConsumerState { + @override + void initState() { + super.initState(); + Future.microtask(() { + ref.read(workspaceProvider.notifier).loadMembers(widget.id); + }); + } + + @override + Widget build(BuildContext context) { + final wsState = ref.watch(workspaceProvider); + final wsNotifier = ref.read(workspaceProvider.notifier); + final workspace = wsState.workspaces.where((w) => w.id == widget.id).firstOrNull; + + if (workspace == null) { + return Scaffold( + appBar: AppBar(), + body: const LoadingIndicator(), + ); + } + + return Scaffold( + appBar: AppBar( + title: Text(workspace.name), + actions: [ + if (workspace.isTeam) + IconButton( + icon: const Icon(Icons.person_add), + onPressed: () => _showAddMemberDialog(context, wsNotifier), + ), + ], + ), + body: Column( + children: [ + if (workspace.description != null) + Container( + width: double.infinity, + padding: const EdgeInsets.all(16), + color: VoIdeaColors.surface, + child: Text(workspace.description!), + ), + Padding( + padding: const EdgeInsets.all(16), + child: Row( + children: [ + const Icon(Icons.people, size: 20, color: VoIdeaColors.muted), + const SizedBox(width: 8), + Text( + 'Участники (${wsState.members.length})', + style: Theme.of(context).textTheme.titleSmall?.copyWith( + fontWeight: FontWeight.w600, + ), + ), + ], + ), + ), + Expanded( + child: wsState.members.isEmpty + ? const EmptyState( + icon: Icons.people_outline, + title: 'Нет участников', + ) + : ListView.builder( + padding: const EdgeInsets.symmetric(horizontal: 16), + itemCount: wsState.members.length, + itemBuilder: (_, i) { + final member = wsState.members[i]; + return ListTile( + leading: CircleAvatar( + backgroundColor: + VoIdeaColors.primary.withOpacity(0.1), + child: Text( + member.userName.isNotEmpty + ? member.userName[0].toUpperCase() + : '?', + style: const TextStyle( + color: VoIdeaColors.primary), + ), + ), + title: Text(member.userName), + subtitle: Text(member.userEmail, + style: const TextStyle(fontSize: 12)), + trailing: Chip( + label: Text( + member.role, + style: const TextStyle(fontSize: 11), + ), + ), + ); + }, + ), + ), + ], + ), + ); + } + + void _showAddMemberDialog( + BuildContext context, WorkspaceNotifier notifier) { + final emailController = TextEditingController(); + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Добавить участника'), + content: TextField( + controller: emailController, + decoration: const InputDecoration( + labelText: 'Email', + hintText: 'email@example.com', + ), + keyboardType: TextInputType.emailAddress, + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () { + if (emailController.text.isNotEmpty) { + notifier.addMember(widget.id, emailController.text.trim(), 'member'); + Navigator.pop(ctx); + } + }, + child: const Text('Добавить'), + ), + ], + ), + ); + } +} diff --git a/flutter/lib/features/workspaces/screens/workspace_list_screen.dart b/flutter/lib/features/workspaces/screens/workspace_list_screen.dart new file mode 100644 index 0000000..8584aa5 --- /dev/null +++ b/flutter/lib/features/workspaces/screens/workspace_list_screen.dart @@ -0,0 +1,146 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../../../providers/workspace_provider.dart'; +import '../../../widgets/loading_indicator.dart'; +import '../../../widgets/empty_state.dart'; +import '../../../models/workspace.dart'; +import '../../../core/theme/app_theme.dart'; + +class WorkspaceListScreen extends ConsumerStatefulWidget { + const WorkspaceListScreen({super.key}); + + @override + ConsumerState createState() => + _WorkspaceListScreenState(); +} + +class _WorkspaceListScreenState extends ConsumerState { + @override + void initState() { + super.initState(); + Future.microtask( + () => ref.read(workspaceProvider.notifier).loadWorkspaces()); + } + + @override + Widget build(BuildContext context) { + final state = ref.watch(workspaceProvider); + final notifier = ref.read(workspaceProvider.notifier); + + return Scaffold( + appBar: AppBar( + title: const Text('Рабочие пространства'), + actions: [ + IconButton( + icon: const Icon(Icons.add), + onPressed: () => _showCreateDialog(context, notifier), + ), + ], + ), + body: state.isLoading + ? const LoadingIndicator() + : state.workspaces.isEmpty + ? EmptyState( + icon: Icons.workspaces_outline, + title: 'Нет рабочих пространств', + actionLabel: 'Создать', + onAction: () => + _showCreateDialog(context, notifier), + ) + : RefreshIndicator( + onRefresh: notifier.loadWorkspaces, + child: ListView.builder( + padding: const EdgeInsets.all(16), + itemCount: state.workspaces.length, + itemBuilder: (_, i) { + final ws = state.workspaces[i]; + return Card( + margin: const EdgeInsets.only(bottom: 12), + child: ListTile( + leading: CircleAvatar( + backgroundColor: ws.isTeam + ? VoIdeaColors.secondary.withOpacity(0.1) + : VoIdeaColors.primary.withOpacity(0.1), + child: Icon( + ws.isTeam + ? Icons.groups + : Icons.person, + color: ws.isTeam + ? VoIdeaColors.secondary + : VoIdeaColors.primary, + ), + ), + title: Text(ws.name), + subtitle: Text( + '${ws.isTeam ? 'Командное' : 'Личное'} · ${ws.memberCount} участников', + style: const TextStyle(fontSize: 12), + ), + trailing: Chip( + label: Text( + ws.isPersonal ? 'Личное' : 'Команда', + style: const TextStyle(fontSize: 11), + ), + ), + onTap: () async { + await notifier.selectWorkspace(ws); + if (mounted) context.pop(); + }, + ), + ); + }, + ), + ), + ); + } + + void _showCreateDialog( + BuildContext context, WorkspaceNotifier notifier) { + final nameController = TextEditingController(); + final descController = TextEditingController(); + + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Создать пространство'), + content: Column( + mainAxisSize: MainAxisSize.min, + children: [ + TextField( + controller: nameController, + decoration: const InputDecoration( + labelText: 'Название', + ), + ), + const SizedBox(height: 12), + TextField( + controller: descController, + decoration: const InputDecoration( + labelText: 'Описание (необязательно)', + ), + maxLines: 3, + ), + ], + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () async { + if (nameController.text.isNotEmpty) { + await notifier.createWorkspace(CreateWorkspaceRequest( + name: nameController.text.trim(), + description: descController.text.trim(), + )); + if (ctx.mounted) Navigator.pop(ctx); + } + }, + child: const Text('Создать'), + ), + ], + ), + ); + } +} diff --git a/flutter/lib/main.dart b/flutter/lib/main.dart new file mode 100644 index 0000000..7c4c317 --- /dev/null +++ b/flutter/lib/main.dart @@ -0,0 +1,13 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'app.dart'; + +void main() { + WidgetsFlutterBinding.ensureInitialized(); + SystemChrome.setPreferredOrientations([ + DeviceOrientation.portraitUp, + DeviceOrientation.portraitDown, + ]); + runApp(const ProviderScope(child: VoIdeaApp())); +} diff --git a/flutter/lib/models/admin.dart b/flutter/lib/models/admin.dart new file mode 100644 index 0000000..3cd1874 --- /dev/null +++ b/flutter/lib/models/admin.dart @@ -0,0 +1,134 @@ +class AgentConfig { + final String name; + final String description; + final bool isActive; + final String schedule; + final Map config; + + AgentConfig({ + required this.name, + this.description = '', + this.isActive = true, + this.schedule = '', + this.config = const {}, + }); + + factory AgentConfig.fromJson(Map json) => AgentConfig( + name: json['name'] as String? ?? '', + description: json['description'] as String? ?? '', + isActive: json['is_active'] as bool? ?? true, + schedule: json['schedule'] as String? ?? '', + config: json['config'] as Map? ?? {}, + ); +} + +class AgentRunResult { + final String agent; + final String status; + final String? message; + + AgentRunResult({ + required this.agent, + required this.status, + this.message, + }); + + factory AgentRunResult.fromJson(Map json) => AgentRunResult( + agent: json['agent'] as String? ?? '', + status: json['status'] as String? ?? 'error', + message: json['message'] as String?, + ); +} + +class BotCommand { + final String id; + final String command; + final String description; + final bool isEnabled; + + BotCommand({ + required this.id, + required this.command, + this.description = '', + this.isEnabled = true, + }); + + factory BotCommand.fromJson(Map json) => BotCommand( + id: json['id'] as String, + command: json['command'] as String, + description: json['description'] as String? ?? '', + isEnabled: json['is_enabled'] as bool? ?? true, + ); +} + +class LogEntry { + final String id; + final String level; + final String message; + final String? source; + final DateTime createdAt; + + LogEntry({ + required this.id, + required this.level, + required this.message, + this.source, + required this.createdAt, + }); + + factory LogEntry.fromJson(Map json) => LogEntry( + id: json['id'] as String, + level: json['level'] as String? ?? 'INFO', + message: json['message'] as String, + source: json['source'] as String?, + createdAt: DateTime.parse(json['created_at'] as String), + ); +} + +class AdminStats { + final int totalUsers; + final int totalIdeas; + final int totalVoiceSessions; + final int totalWorkspaces; + final int activeAgents; + final int totalNotifications; + + AdminStats({ + this.totalUsers = 0, + this.totalIdeas = 0, + this.totalVoiceSessions = 0, + this.totalWorkspaces = 0, + this.activeAgents = 0, + this.totalNotifications = 0, + }); + + factory AdminStats.fromJson(Map json) => AdminStats( + totalUsers: json['total_users'] as int? ?? 0, + totalIdeas: json['total_ideas'] as int? ?? 0, + totalVoiceSessions: json['total_voice_sessions'] as int? ?? 0, + totalWorkspaces: json['total_workspaces'] as int? ?? 0, + activeAgents: json['active_agents'] as int? ?? 0, + totalNotifications: json['total_notifications'] as int? ?? 0, + ); +} + +class HealthStatus { + final String status; + final String version; + final double uptimeSeconds; + final Map services; + + HealthStatus({ + this.status = 'ok', + this.version = '', + this.uptimeSeconds = 0, + this.services = const {}, + }); + + factory HealthStatus.fromJson(Map json) => HealthStatus( + status: json['status'] as String? ?? 'ok', + version: json['version'] as String? ?? '', + uptimeSeconds: (json['uptime_seconds'] as num?)?.toDouble() ?? 0, + services: json['services'] as Map? ?? {}, + ); +} diff --git a/flutter/lib/models/auth.dart b/flutter/lib/models/auth.dart new file mode 100644 index 0000000..5cac1bd --- /dev/null +++ b/flutter/lib/models/auth.dart @@ -0,0 +1,119 @@ +class LoginRequest { + final String email; + final String password; + + LoginRequest({required this.email, required this.password}); + + Map toJson() => { + 'email': email, + 'password': password, + }; +} + +class RegisterRequest { + final String email; + final String password; + final String name; + + RegisterRequest({ + required this.email, + required this.password, + required this.name, + }); + + Map toJson() => { + 'email': email, + 'password': password, + 'name': name, + }; +} + +class AuthResponse { + final String accessToken; + final String refreshToken; + final User user; + + AuthResponse({ + required this.accessToken, + required this.refreshToken, + required this.user, + }); + + factory AuthResponse.fromJson(Map json) => AuthResponse( + accessToken: json['access_token'] as String, + refreshToken: json['refresh_token'] as String, + user: User.fromJson(json['user'] as Map), + ); +} + +class User { + final String id; + final String email; + final String name; + final bool isAdmin; + final bool isTwoFactorEnabled; + final String? tariffId; + final String? calendarProvider; + final DateTime createdAt; + + User({ + required this.id, + required this.email, + required this.name, + this.isAdmin = false, + this.isTwoFactorEnabled = false, + this.tariffId, + this.calendarProvider, + required this.createdAt, + }); + + factory User.fromJson(Map json) => User( + id: json['id'] as String, + email: json['email'] as String, + name: json['name'] as String? ?? '', + isAdmin: json['is_admin'] as bool? ?? false, + isTwoFactorEnabled: json['is_two_factor_enabled'] as bool? ?? false, + tariffId: json['tariff_id'] as String?, + calendarProvider: json['calendar_provider'] as String?, + createdAt: DateTime.parse(json['created_at'] as String), + ); + + Map toJson() => { + 'id': id, + 'email': email, + 'name': name, + 'is_admin': isAdmin, + 'is_two_factor_enabled': isTwoFactorEnabled, + 'tariff_id': tariffId, + 'calendar_provider': calendarProvider, + 'created_at': createdAt.toIso8601String(), + }; +} + +class TwoFactorRequest { + final String code; + + TwoFactorRequest({required this.code}); + + Map toJson() => {'code': code}; +} + +class ForgotPasswordRequest { + final String email; + + ForgotPasswordRequest({required this.email}); + + Map toJson() => {'email': email}; +} + +class ResetPasswordRequest { + final String token; + final String password; + + ResetPasswordRequest({required this.token, required this.password}); + + Map toJson() => { + 'token': token, + 'password': password, + }; +} diff --git a/flutter/lib/models/collaboration.dart b/flutter/lib/models/collaboration.dart new file mode 100644 index 0000000..ab728e8 --- /dev/null +++ b/flutter/lib/models/collaboration.dart @@ -0,0 +1,134 @@ +class Vote { + final String id; + final String ideaId; + final String userId; + final bool isUpvote; + final DateTime createdAt; + + Vote({ + required this.id, + required this.ideaId, + required this.userId, + required this.isUpvote, + required this.createdAt, + }); + + factory Vote.fromJson(Map json) => Vote( + id: json['id'] as String, + ideaId: json['idea_id'] as String, + userId: json['user_id'] as String, + isUpvote: json['is_upvote'] as bool, + createdAt: DateTime.parse(json['created_at'] as String), + ); +} + +class Comment { + final String id; + final String ideaId; + final String userId; + final String userName; + final String body; + final String? parentId; + final List replies; + final DateTime createdAt; + final DateTime updatedAt; + + Comment({ + required this.id, + required this.ideaId, + required this.userId, + this.userName = '', + required this.body, + this.parentId, + this.replies = const [], + required this.createdAt, + required this.updatedAt, + }); + + factory Comment.fromJson(Map json) => Comment( + id: json['id'] as String, + ideaId: json['idea_id'] as String, + userId: json['user_id'] as String, + userName: json['user_name'] as String? ?? '', + body: json['body'] as String, + parentId: json['parent_id'] as String?, + replies: (json['replies'] as List? ?? []) + .map((e) => Comment.fromJson(e as Map)) + .toList(), + createdAt: DateTime.parse(json['created_at'] as String), + updatedAt: DateTime.parse(json['updated_at'] as String), + ); +} + +class CreateCommentRequest { + final String body; + final String? parentId; + + CreateCommentRequest({required this.body, this.parentId}); + + Map toJson() => { + 'body': body, + if (parentId != null) 'parent_id': parentId, + }; +} + +class Activity { + final String id; + final String ideaId; + final String userId; + final String userName; + final String action; + final String? description; + final DateTime createdAt; + + Activity({ + required this.id, + required this.ideaId, + required this.userId, + this.userName = '', + required this.action, + this.description, + required this.createdAt, + }); + + factory Activity.fromJson(Map json) => Activity( + id: json['id'] as String, + ideaId: json['idea_id'] as String, + userId: json['user_id'] as String, + userName: json['user_name'] as String? ?? '', + action: json['action'] as String, + description: json['description'] as String?, + createdAt: DateTime.parse(json['created_at'] as String), + ); +} + +class AppNotification { + final String id; + final String userId; + final String title; + final String body; + final bool isRead; + final String? ideaId; + final DateTime createdAt; + + AppNotification({ + required this.id, + required this.userId, + required this.title, + required this.body, + this.isRead = false, + this.ideaId, + required this.createdAt, + }); + + factory AppNotification.fromJson(Map json) => + AppNotification( + id: json['id'] as String, + userId: json['user_id'] as String, + title: json['title'] as String, + body: json['body'] as String? ?? '', + isRead: json['is_read'] as bool? ?? false, + ideaId: json['idea_id'] as String?, + createdAt: DateTime.parse(json['created_at'] as String), + ); +} diff --git a/flutter/lib/models/idea.dart b/flutter/lib/models/idea.dart new file mode 100644 index 0000000..a7d56c3 --- /dev/null +++ b/flutter/lib/models/idea.dart @@ -0,0 +1,120 @@ +class Idea { + final String id; + final String title; + final String description; + final String? funnelStatus; + final String? workspaceId; + final String userId; + final String userName; + final int upvotes; + final int downvotes; + final int commentCount; + final DateTime createdAt; + final DateTime updatedAt; + + Idea({ + required this.id, + required this.title, + required this.description, + this.funnelStatus, + this.workspaceId, + required this.userId, + this.userName = '', + this.upvotes = 0, + this.downvotes = 0, + this.commentCount = 0, + required this.createdAt, + required this.updatedAt, + }); + + factory Idea.fromJson(Map json) => Idea( + id: json['id'] as String, + title: json['title'] as String, + description: json['description'] as String? ?? '', + funnelStatus: json['funnel_status'] as String?, + workspaceId: json['workspace_id'] as String?, + userId: json['user_id'] as String? ?? '', + userName: json['user_name'] as String? ?? '', + upvotes: json['upvotes'] as int? ?? 0, + downvotes: json['downvotes'] as int? ?? 0, + commentCount: json['comment_count'] as int? ?? 0, + createdAt: DateTime.parse(json['created_at'] as String), + updatedAt: DateTime.parse(json['updated_at'] as String), + ); + + Map toJson() => { + 'id': id, + 'title': title, + 'description': description, + 'funnel_status': funnelStatus, + 'workspace_id': workspaceId, + 'user_id': userId, + 'user_name': userName, + 'upvotes': upvotes, + 'downvotes': downvotes, + 'comment_count': commentCount, + 'created_at': createdAt.toIso8601String(), + 'updated_at': updatedAt.toIso8601String(), + }; + + Idea copyWith({ + String? title, + String? description, + String? funnelStatus, + int? upvotes, + int? downvotes, + int? commentCount, + }) => + Idea( + id: id, + title: title ?? this.title, + description: description ?? this.description, + funnelStatus: funnelStatus ?? this.funnelStatus, + workspaceId: workspaceId, + userId: userId, + userName: userName, + upvotes: upvotes ?? this.upvotes, + downvotes: downvotes ?? this.downvotes, + commentCount: commentCount ?? this.commentCount, + createdAt: createdAt, + updatedAt: updatedAt, + ); +} + +class CreateIdeaRequest { + final String title; + final String description; + final String? workspaceId; + + CreateIdeaRequest({ + required this.title, + required this.description, + this.workspaceId, + }); + + Map toJson() => { + 'title': title, + 'description': description, + 'workspace_id': workspaceId, + }; +} + +class UpdateIdeaRequest { + final String? title; + final String? description; + + UpdateIdeaRequest({this.title, this.description}); + + Map toJson() => { + if (title != null) 'title': title, + if (description != null) 'description': description, + }; +} + +class FunnelTransitionRequest { + final String status; + + FunnelTransitionRequest({required this.status}); + + Map toJson() => {'status': status}; +} diff --git a/flutter/lib/models/tariff.dart b/flutter/lib/models/tariff.dart new file mode 100644 index 0000000..b607f17 --- /dev/null +++ b/flutter/lib/models/tariff.dart @@ -0,0 +1,39 @@ +class Tariff { + final String id; + final String name; + final double price; + final String currency; + final Map features; + final bool isActive; + final DateTime createdAt; + + Tariff({ + required this.id, + required this.name, + required this.price, + this.currency = 'RUB', + required this.features, + this.isActive = true, + required this.createdAt, + }); + + factory Tariff.fromJson(Map json) => Tariff( + id: json['id'] as String, + name: json['name'] as String, + price: (json['price'] as num).toDouble(), + currency: json['currency'] as String? ?? 'RUB', + features: json['features'] as Map? ?? {}, + isActive: json['is_active'] as bool? ?? true, + createdAt: DateTime.parse(json['created_at'] as String), + ); + + Map toJson() => { + 'id': id, + 'name': name, + 'price': price, + 'currency': currency, + 'features': features, + 'is_active': isActive, + 'created_at': createdAt.toIso8601String(), + }; +} diff --git a/flutter/lib/models/voice.dart b/flutter/lib/models/voice.dart new file mode 100644 index 0000000..df29723 --- /dev/null +++ b/flutter/lib/models/voice.dart @@ -0,0 +1,78 @@ +class VoiceSession { + final String id; + final String userId; + final String? title; + final String status; + final int messageCount; + final DateTime createdAt; + final DateTime updatedAt; + + VoiceSession({ + required this.id, + required this.userId, + this.title, + required this.status, + this.messageCount = 0, + required this.createdAt, + required this.updatedAt, + }); + + factory VoiceSession.fromJson(Map json) => VoiceSession( + id: json['id'] as String, + userId: json['user_id'] as String, + title: json['title'] as String?, + status: json['status'] as String? ?? 'active', + messageCount: json['message_count'] as int? ?? 0, + createdAt: DateTime.parse(json['created_at'] as String), + updatedAt: DateTime.parse(json['updated_at'] as String), + ); +} + +class VoiceCommand { + final String id; + final String sessionId; + final String command; + final String? result; + final DateTime createdAt; + + VoiceCommand({ + required this.id, + required this.sessionId, + required this.command, + this.result, + required this.createdAt, + }); + + factory VoiceCommand.fromJson(Map json) => VoiceCommand( + id: json['id'] as String, + sessionId: json['session_id'] as String, + command: json['command'] as String, + result: json['result'] as String?, + createdAt: DateTime.parse(json['created_at'] as String), + ); +} + +class TranscribeRequest { + final String audioBase64; + final String? sessionId; + + TranscribeRequest({required this.audioBase64, this.sessionId}); + + Map toJson() => { + 'audio_base64': audioBase64, + if (sessionId != null) 'session_id': sessionId, + }; +} + +class TranscribeResponse { + final String text; + final String? sessionId; + + TranscribeResponse({required this.text, this.sessionId}); + + factory TranscribeResponse.fromJson(Map json) => + TranscribeResponse( + text: json['text'] as String, + sessionId: json['session_id'] as String?, + ); +} diff --git a/flutter/lib/models/workspace.dart b/flutter/lib/models/workspace.dart new file mode 100644 index 0000000..b75749d --- /dev/null +++ b/flutter/lib/models/workspace.dart @@ -0,0 +1,84 @@ +class Workspace { + final String id; + final String name; + final String type; + final String? description; + final String ownerId; + final int memberCount; + final DateTime createdAt; + + Workspace({ + required this.id, + required this.name, + required this.type, + this.description, + required this.ownerId, + this.memberCount = 0, + required this.createdAt, + }); + + factory Workspace.fromJson(Map json) => Workspace( + id: json['id'] as String, + name: json['name'] as String, + type: json['type'] as String? ?? 'personal', + description: json['description'] as String?, + ownerId: json['owner_id'] as String? ?? '', + memberCount: json['member_count'] as int? ?? 0, + createdAt: DateTime.parse(json['created_at'] as String), + ); + + Map toJson() => { + 'id': id, + 'name': name, + 'type': type, + 'description': description, + 'owner_id': ownerId, + 'member_count': memberCount, + 'created_at': createdAt.toIso8601String(), + }; + + bool get isPersonal => type == 'personal'; + bool get isTeam => type == 'team'; +} + +class WorkspaceMember { + final String id; + final String userId; + final String userName; + final String userEmail; + final String role; + final DateTime joinedAt; + + WorkspaceMember({ + required this.id, + required this.userId, + this.userName = '', + this.userEmail = '', + required this.role, + required this.joinedAt, + }); + + factory WorkspaceMember.fromJson(Map json) => + WorkspaceMember( + id: json['id'] as String, + userId: json['user_id'] as String? ?? '', + userName: json['user_name'] as String? ?? '', + userEmail: json['user_email'] as String? ?? '', + role: json['role'] as String? ?? 'member', + joinedAt: json['created_at'] != null + ? DateTime.parse(json['created_at'] as String) + : DateTime.now(), + ); +} + +class CreateWorkspaceRequest { + final String name; + final String? description; + + CreateWorkspaceRequest({required this.name, this.description}); + + Map toJson() => { + 'name': name, + 'description': description, + }; +} diff --git a/flutter/lib/providers/auth_provider.dart b/flutter/lib/providers/auth_provider.dart new file mode 100644 index 0000000..7b45beb --- /dev/null +++ b/flutter/lib/providers/auth_provider.dart @@ -0,0 +1,176 @@ +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../core/api/client.dart'; +import '../core/api/endpoints.dart'; +import '../core/api/exceptions.dart'; +import '../models/auth.dart'; + +enum AuthStatus { initial, authenticated, unauthenticated, loading } + +class AuthState { + final AuthStatus status; + final User? user; + final String? error; + final bool needsTwoFactor; + + AuthState({ + this.status = AuthStatus.initial, + this.user, + this.error, + this.needsTwoFactor = false, + }); + + AuthState copyWith({ + AuthStatus? status, + User? user, + String? error, + bool? needsTwoFactor, + }) => + AuthState( + status: status ?? this.status, + user: user ?? this.user, + error: error, + needsTwoFactor: needsTwoFactor ?? this.needsTwoFactor, + ); +} + +class AuthNotifier extends StateNotifier { + final ApiClient _api; + + AuthNotifier(this._api) : super(AuthState()) { + _checkAuth(); + } + + Future _checkAuth() async { + final token = await _api.getAccessToken(); + if (token != null) { + state = state.copyWith(status: AuthStatus.authenticated); + } else { + state = state.copyWith(status: AuthStatus.unauthenticated); + } + } + + Future login(String email, String password) async { + state = state.copyWith(status: AuthStatus.loading, error: null); + try { + final response = await _api.post(Endpoints.login, data: { + 'email': email, + 'password': password, + }); + final authResponse = AuthResponse.fromJson( + response.data as Map); + if (authResponse.user.isTwoFactorEnabled) { + state = state.copyWith( + status: AuthStatus.unauthenticated, + needsTwoFactor: true, + ); + return; + } + await _api.saveTokens( + authResponse.accessToken, authResponse.refreshToken); + state = state.copyWith( + status: AuthStatus.authenticated, + user: authResponse.user, + ); + } on ApiException catch (e) { + state = state.copyWith( + status: AuthStatus.unauthenticated, + error: e.message, + ); + } + } + + Future register(String email, String password, String name) async { + state = state.copyWith(status: AuthStatus.loading, error: null); + try { + final response = await _api.post(Endpoints.register, data: { + 'email': email, + 'password': password, + 'name': name, + }); + final authResponse = AuthResponse.fromJson( + response.data as Map); + await _api.saveTokens( + authResponse.accessToken, authResponse.refreshToken); + state = state.copyWith( + status: AuthStatus.authenticated, + user: authResponse.user, + ); + } on ApiException catch (e) { + state = state.copyWith( + status: AuthStatus.unauthenticated, + error: e.message, + ); + } + } + + Future verifyTwoFactor(String code) async { + state = state.copyWith(status: AuthStatus.loading, error: null); + try { + final response = await _api.post(Endpoints.twoFactor, data: { + 'code': code, + }); + final authResponse = AuthResponse.fromJson( + response.data as Map); + await _api.saveTokens( + authResponse.accessToken, authResponse.refreshToken); + state = state.copyWith( + status: AuthStatus.authenticated, + user: authResponse.user, + needsTwoFactor: false, + ); + } on ApiException catch (e) { + state = state.copyWith( + status: AuthStatus.unauthenticated, + error: e.message, + ); + } + } + + Future logout() async { + await _api.clearTokens(); + state = AuthState(status: AuthStatus.unauthenticated); + } + + Future forgotPassword(String email) async { + state = state.copyWith(status: AuthStatus.loading, error: null); + try { + await _api.post(Endpoints.forgotPassword, data: {'email': email}); + state = state.copyWith(status: AuthStatus.unauthenticated); + } on ApiException catch (e) { + state = state.copyWith( + status: AuthStatus.unauthenticated, error: e.message); + } + } + + Future resetPassword(String token, String password) async { + state = state.copyWith(status: AuthStatus.loading, error: null); + try { + await _api.post(Endpoints.resetPassword, data: { + 'token': token, + 'password': password, + }); + state = state.copyWith(status: AuthStatus.unauthenticated); + } on ApiException catch (e) { + state = state.copyWith( + status: AuthStatus.unauthenticated, error: e.message); + } + } + + Future getOAuthUrl(String provider) async { + try { + final response = await _api.get('${Endpoints.oauth}/$provider'); + return response.data['url'] as String?; + } catch (_) { + return null; + } + } + + void clearError() { + state = state.copyWith(error: null); + } +} + +final authProvider = StateNotifierProvider((ref) { + final api = ref.read(apiClientProvider); + return AuthNotifier(api); +}); diff --git a/flutter/lib/providers/disk_provider.dart b/flutter/lib/providers/disk_provider.dart new file mode 100644 index 0000000..5977738 --- /dev/null +++ b/flutter/lib/providers/disk_provider.dart @@ -0,0 +1,83 @@ +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../api/disk.dart'; +import '../core/api/client.dart'; + +class DiskState { + final List availableProviders; + final List> connectedProviders; + final bool isLoading; + final String? error; + + DiskState({ + this.availableProviders = const [], + this.connectedProviders = const [], + this.isLoading = false, + this.error, + }); + + DiskState copyWith({ + List? availableProviders, + List>? connectedProviders, + bool? isLoading, + String? error, + }) => + DiskState( + availableProviders: availableProviders ?? this.availableProviders, + connectedProviders: connectedProviders ?? this.connectedProviders, + isLoading: isLoading ?? this.isLoading, + error: error, + ); + + bool isConnected(String provider) => + connectedProviders.any((p) => p['provider'] == provider); +} + +class DiskNotifier extends StateNotifier { + final DiskApi _api; + + DiskNotifier(this._api) : super(DiskState()); + + Future load() async { + state = state.copyWith(isLoading: true, error: null); + try { + final providers = await _api.getProviders(); + final status = await _api.getStatus(); + final connected = (status['connected'] as List? ?? []) + .map((e) => e as Map) + .toList(); + state = state.copyWith( + availableProviders: providers, + connectedProviders: connected, + isLoading: false, + ); + } catch (e) { + state = state.copyWith(isLoading: false, error: e.toString()); + } + } + + Future connect(String provider, String code) async { + final ok = await _api.connect(provider, code); + if (ok) await load(); + return ok; + } + + Future disconnect(String provider) async { + final ok = await _api.disconnect(provider); + if (ok) { + state = state.copyWith( + connectedProviders: state.connectedProviders + .where((p) => p['provider'] != provider) + .toList(), + ); + } + return ok; + } + + Future getOAuthUrl(String provider) => + _api.getOAuthUrl(provider); +} + +final diskProvider = StateNotifierProvider((ref) { + final api = ref.read(apiClientProvider); + return DiskNotifier(DiskApi(api)); +}); diff --git a/flutter/lib/providers/ideas_provider.dart b/flutter/lib/providers/ideas_provider.dart new file mode 100644 index 0000000..e854c88 --- /dev/null +++ b/flutter/lib/providers/ideas_provider.dart @@ -0,0 +1,269 @@ +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../core/api/client.dart'; +import '../core/api/endpoints.dart'; +import '../core/api/exceptions.dart'; +import '../models/idea.dart'; +import '../models/collaboration.dart'; + +class IdeasState { + final List ideas; + final Idea? selectedIdea; + final bool isLoading; + final String? error; + final String viewMode; + + IdeasState({ + this.ideas = const [], + this.selectedIdea, + this.isLoading = false, + this.error, + this.viewMode = 'list', + }); + + IdeasState copyWith({ + List? ideas, + Idea? selectedIdea, + bool? isLoading, + String? error, + String? viewMode, + }) => + IdeasState( + ideas: ideas ?? this.ideas, + selectedIdea: selectedIdea ?? this.selectedIdea, + isLoading: isLoading ?? this.isLoading, + error: error, + viewMode: viewMode ?? this.viewMode, + ); +} + +class IdeasNotifier extends StateNotifier { + final ApiClient _api; + + IdeasNotifier(this._api) : super(IdeasState()); + + Future loadIdeas({String? workspaceId}) async { + state = state.copyWith(isLoading: true, error: null); + try { + final params = {}; + if (workspaceId != null) params['workspace_id'] = workspaceId; + final response = await _api.get(Endpoints.ideas, params: params); + final list = (response.data as List) + .map((e) => Idea.fromJson(e as Map)) + .toList(); + state = state.copyWith(ideas: list, isLoading: false); + } on ApiException catch (e) { + state = state.copyWith(isLoading: false, error: e.message); + } + } + + Future loadIdea(String id) async { + state = state.copyWith(isLoading: true, error: null); + try { + final response = await _api.get(Endpoints.idea(id)); + final idea = + Idea.fromJson(response.data as Map); + state = state.copyWith(selectedIdea: idea, isLoading: false); + } on ApiException catch (e) { + state = state.copyWith(isLoading: false, error: e.message); + } + } + + Future createIdea(CreateIdeaRequest request) async { + try { + final response = await _api.post(Endpoints.ideas, data: request.toJson()); + final idea = + Idea.fromJson(response.data as Map); + state = state.copyWith( + ideas: [idea, ...state.ideas], + selectedIdea: idea, + ); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + Future updateIdea(String id, UpdateIdeaRequest request) async { + try { + final response = + await _api.patch(Endpoints.idea(id), data: request.toJson()); + final updated = + Idea.fromJson(response.data as Map); + state = state.copyWith( + ideas: state.ideas.map((i) => i.id == id ? updated : i).toList(), + selectedIdea: updated, + ); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + Future deleteIdea(String id) async { + try { + await _api.delete(Endpoints.idea(id)); + state = state.copyWith( + ideas: state.ideas.where((i) => i.id != id).toList(), + selectedIdea: null, + ); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + Future updateFunnel(String ideaId, String status) async { + try { + final response = await _api.post(Endpoints.ideaFunnel(ideaId), data: { + 'status': status, + }); + final updated = + Idea.fromJson(response.data as Map); + state = state.copyWith( + ideas: state.ideas.map((i) => i.id == ideaId ? updated : i).toList(), + selectedIdea: updated, + ); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + void setViewMode(String mode) { + state = state.copyWith(viewMode: mode); + } + + void clearError() { + state = state.copyWith(error: null); + } +} + +final ideasProvider = + StateNotifierProvider((ref) { + final api = ref.read(apiClientProvider); + return IdeasNotifier(api); +}); + +class IdeaCommentsState { + final List comments; + final bool isLoading; + final String? error; + + IdeaCommentsState({ + this.comments = const [], + this.isLoading = false, + this.error, + }); + + IdeaCommentsState copyWith({ + List? comments, + bool? isLoading, + String? error, + }) => + IdeaCommentsState( + comments: comments ?? this.comments, + isLoading: isLoading ?? this.isLoading, + error: error, + ); +} + +class IdeaCommentsNotifier extends StateNotifier { + final ApiClient _api; + final String ideaId; + + IdeaCommentsNotifier(this._api, this.ideaId) : super(IdeaCommentsState()); + + Future loadComments() async { + state = state.copyWith(isLoading: true); + try { + final response = await _api.get(Endpoints.ideaComments(ideaId)); + final list = (response.data as List) + .map((e) => Comment.fromJson(e as Map)) + .toList(); + state = state.copyWith(comments: list, isLoading: false); + } on ApiException catch (e) { + state = state.copyWith(isLoading: false, error: e.message); + } + } + + Future addComment(String body, {String? parentId}) async { + try { + final response = await _api.post(Endpoints.ideaComments(ideaId), data: { + 'body': body, + if (parentId != null) 'parent_id': parentId, + }); + final comment = + Comment.fromJson(response.data as Map); + state = state.copyWith(comments: [...state.comments, comment]); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + Future toggleVote(String ideaId) async { + try { + await _api.post(Endpoints.ideaVote(ideaId)); + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + } + } +} + +final ideaCommentsProvider = + StateNotifierProvider.family( + (ref, ideaId) { + final api = ref.read(apiClientProvider); + return IdeaCommentsNotifier(api, ideaId); +}); + +class IdeaActivityState { + final List activities; + final bool isLoading; + + IdeaActivityState({ + this.activities = const [], + this.isLoading = false, + }); + + IdeaActivityState copyWith({ + List? activities, + bool? isLoading, + }) => + IdeaActivityState( + activities: activities ?? this.activities, + isLoading: isLoading ?? this.isLoading, + ); +} + +class IdeaActivityNotifier extends StateNotifier { + final ApiClient _api; + final String ideaId; + + IdeaActivityNotifier(this._api, this.ideaId) : super(IdeaActivityState()); + + Future loadActivities() async { + state = state.copyWith(isLoading: true); + try { + final response = await _api.get(Endpoints.ideaActivity(ideaId)); + final list = (response.data as List) + .map((e) => Activity.fromJson(e as Map)) + .toList(); + state = state.copyWith(activities: list, isLoading: false); + } catch (_) { + state = state.copyWith(isLoading: false); + } + } +} + +final ideaActivityProvider = + StateNotifierProvider.family( + (ref, ideaId) { + final api = ref.read(apiClientProvider); + return IdeaActivityNotifier(api, ideaId); +}); diff --git a/flutter/lib/providers/notification_provider.dart b/flutter/lib/providers/notification_provider.dart new file mode 100644 index 0000000..87620b5 --- /dev/null +++ b/flutter/lib/providers/notification_provider.dart @@ -0,0 +1,120 @@ +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../core/api/client.dart'; +import '../core/api/endpoints.dart'; +import '../core/api/exceptions.dart'; +import '../models/collaboration.dart'; + +class NotificationState { + final List notifications; + final int unreadCount; + final bool isLoading; + final String? error; + + NotificationState({ + this.notifications = const [], + this.unreadCount = 0, + this.isLoading = false, + this.error, + }); + + NotificationState copyWith({ + List? notifications, + int? unreadCount, + bool? isLoading, + String? error, + }) => + NotificationState( + notifications: notifications ?? this.notifications, + unreadCount: unreadCount ?? this.unreadCount, + isLoading: isLoading ?? this.isLoading, + error: error, + ); +} + +class NotificationNotifier extends StateNotifier { + final ApiClient _api; + + NotificationNotifier(this._api) : super(NotificationState()); + + Future loadNotifications() async { + state = state.copyWith(isLoading: true); + try { + final response = await _api.get(Endpoints.notifications); + final list = (response.data as List) + .map((e) => + AppNotification.fromJson(e as Map)) + .toList(); + state = state.copyWith(notifications: list, isLoading: false); + _updateUnreadCount(); + } on ApiException catch (e) { + state = state.copyWith(isLoading: false, error: e.message); + } + } + + Future loadUnreadCount() async { + try { + final response = + await _api.get(Endpoints.notificationsUnreadCount); + state = state.copyWith( + unreadCount: response.data['count'] as int? ?? 0); + } catch (_) {} + } + + Future markAsRead(String id) async { + try { + await _api.patch(Endpoints.notification(id)); + state = state.copyWith( + notifications: state.notifications.map((n) { + if (n.id == id) { + return AppNotification( + id: n.id, + userId: n.userId, + title: n.title, + body: n.body, + isRead: true, + ideaId: n.ideaId, + createdAt: n.createdAt, + ); + } + return n; + }).toList(), + ); + _updateUnreadCount(); + } catch (_) {} + } + + Future markAllAsRead() async { + try { + await _api.post(Endpoints.notificationsReadAll); + state = state.copyWith( + notifications: state.notifications + .map((n) => AppNotification( + id: n.id, + userId: n.userId, + title: n.title, + body: n.body, + isRead: true, + ideaId: n.ideaId, + createdAt: n.createdAt, + )) + .toList(), + unreadCount: 0, + ); + } catch (_) {} + } + + void _updateUnreadCount() { + state = state.copyWith( + unreadCount: state.notifications.where((n) => !n.isRead).length, + ); + } +} + +final notificationProvider = StateNotifierProvider((ref) { + final api = ref.read(apiClientProvider); + return NotificationNotifier(api); +}); + +final unreadCountProvider = Provider((ref) { + return ref.watch(notificationProvider).unreadCount; +}); diff --git a/flutter/lib/providers/theme_provider.dart b/flutter/lib/providers/theme_provider.dart new file mode 100644 index 0000000..04c9821 --- /dev/null +++ b/flutter/lib/providers/theme_provider.dart @@ -0,0 +1,33 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; + +final themeModeProvider = + StateNotifierProvider((ref) { + return ThemeModeNotifier(); +}); + +class ThemeModeNotifier extends StateNotifier { + ThemeModeNotifier() : super(ThemeMode.system) { + _load(); + } + + final _storage = const FlutterSecureStorage(); + static const _key = 'theme_mode'; + + Future _load() async { + final value = await _storage.read(key: _key); + if (value == 'light') state = ThemeMode.light; + if (value == 'dark') state = ThemeMode.dark; + } + + Future setTheme(ThemeMode mode) async { + state = mode; + final value = mode == ThemeMode.light + ? 'light' + : mode == ThemeMode.dark + ? 'dark' + : 'system'; + await _storage.write(key: _key, value: value); + } +} diff --git a/flutter/lib/providers/workspace_provider.dart b/flutter/lib/providers/workspace_provider.dart new file mode 100644 index 0000000..2577cdb --- /dev/null +++ b/flutter/lib/providers/workspace_provider.dart @@ -0,0 +1,124 @@ +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import '../core/api/client.dart'; +import '../core/api/endpoints.dart'; +import '../core/api/exceptions.dart'; +import '../models/workspace.dart'; + +class WorkspaceState { + final List workspaces; + final Workspace? selectedWorkspace; + final List members; + final bool isLoading; + final String? error; + + WorkspaceState({ + this.workspaces = const [], + this.selectedWorkspace, + this.members = const [], + this.isLoading = false, + this.error, + }); + + WorkspaceState copyWith({ + List? workspaces, + Workspace? selectedWorkspace, + List? members, + bool? isLoading, + String? error, + }) => + WorkspaceState( + workspaces: workspaces ?? this.workspaces, + selectedWorkspace: selectedWorkspace ?? this.selectedWorkspace, + members: members ?? this.members, + isLoading: isLoading ?? this.isLoading, + error: error, + ); +} + +class WorkspaceNotifier extends StateNotifier { + final ApiClient _api; + + WorkspaceNotifier(this._api) : super(WorkspaceState()); + + Future loadWorkspaces() async { + state = state.copyWith(isLoading: true, error: null); + try { + final response = await _api.get(Endpoints.workspaces); + final list = (response.data as List) + .map((e) => Workspace.fromJson(e as Map)) + .toList(); + state = state.copyWith(workspaces: list, isLoading: false); + } on ApiException catch (e) { + state = state.copyWith(isLoading: false, error: e.message); + } + } + + Future createWorkspace(CreateWorkspaceRequest request) async { + try { + final response = + await _api.post(Endpoints.workspaces, data: request.toJson()); + final ws = + Workspace.fromJson(response.data as Map); + state = state.copyWith(workspaces: [...state.workspaces, ws]); + return ws; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return null; + } + } + + Future selectWorkspace(Workspace workspace) async { + state = state.copyWith(selectedWorkspace: workspace); + await loadMembers(workspace.id); + } + + Future loadMembers(String workspaceId) async { + try { + final response = + await _api.get(Endpoints.workspaceMembers(workspaceId)); + final list = (response.data as List) + .map((e) => WorkspaceMember.fromJson(e as Map)) + .toList(); + state = state.copyWith(members: list); + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + } + } + + Future addMember(String workspaceId, String email, String role) async { + try { + await _api.post(Endpoints.workspaceMembers(workspaceId), data: { + 'email': email, + 'role': role, + }); + await loadMembers(workspaceId); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + Future removeMember(String workspaceId, String userId) async { + try { + await _api.delete(Endpoints.workspaceMember(workspaceId, userId)); + state = state.copyWith( + members: state.members.where((m) => m.userId != userId).toList(), + ); + return true; + } on ApiException catch (e) { + state = state.copyWith(error: e.message); + return false; + } + } + + void clearError() { + state = state.copyWith(error: null); + } +} + +final workspaceProvider = + StateNotifierProvider((ref) { + final api = ref.read(apiClientProvider); + return WorkspaceNotifier(api); +}); diff --git a/flutter/lib/widgets/comment_thread.dart b/flutter/lib/widgets/comment_thread.dart new file mode 100644 index 0000000..d8ee3cb --- /dev/null +++ b/flutter/lib/widgets/comment_thread.dart @@ -0,0 +1,159 @@ +import 'package:flutter/material.dart'; +import 'package:intl/intl.dart'; +import '../models/collaboration.dart'; +import '../core/theme/app_theme.dart'; + +class CommentThread extends StatelessWidget { + final List comments; + final String currentUserId; + final Future Function(String body, {String? parentId}) onAddComment; + + const CommentThread({ + super.key, + required this.comments, + required this.currentUserId, + required this.onAddComment, + }); + + @override + Widget build(BuildContext context) { + final topLevel = comments.where((c) => c.parentId == null).toList(); + return Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + ...topLevel.map((comment) => _CommentCard( + comment: comment, + currentUserId: currentUserId, + onReply: (parentId, body) => onAddComment(body, parentId: parentId), + )), + ], + ); + } +} + +class _CommentCard extends StatelessWidget { + final Comment comment; + final String currentUserId; + final Future Function(String parentId, String body) onReply; + + const _CommentCard({ + required this.comment, + required this.currentUserId, + required this.onReply, + }); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.only(bottom: 12), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Container( + padding: const EdgeInsets.all(12), + decoration: BoxDecoration( + color: VoIdeaColors.surface, + borderRadius: BorderRadius.circular(12), + ), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Row( + children: [ + CircleAvatar( + radius: 14, + backgroundColor: VoIdeaColors.primary.withOpacity(0.1), + child: Text( + comment.userName.isNotEmpty + ? comment.userName[0].toUpperCase() + : '?', + style: const TextStyle( + color: VoIdeaColors.primary, + fontSize: 12, + fontWeight: FontWeight.w600, + ), + ), + ), + const SizedBox(width: 8), + Text( + comment.userName, + style: const TextStyle(fontWeight: FontWeight.w500), + ), + const Spacer(), + Text( + DateFormat('d MMM').format(comment.createdAt), + style: TextStyle( + color: VoIdeaColors.muted, + fontSize: 12, + ), + ), + ], + ), + const SizedBox(height: 8), + Text(comment.body), + if (comment.userId != currentUserId) + Padding( + padding: const EdgeInsets.only(top: 8), + child: GestureDetector( + onTap: () => _showReplyDialog(context), + child: Text( + 'Ответить', + style: TextStyle( + color: VoIdeaColors.primary, + fontSize: 12, + fontWeight: FontWeight.w500, + ), + ), + ), + ), + ], + ), + ), + if (comment.replies.isNotEmpty) + Padding( + padding: const EdgeInsets.only(left: 24, top: 8), + child: Column( + children: comment.replies.map((reply) => _CommentCard( + comment: reply, + currentUserId: currentUserId, + onReply: onReply, + )).toList(), + ), + ), + ], + ), + ); + } + + void _showReplyDialog(BuildContext context) { + final controller = TextEditingController(); + showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('Ответить'), + content: TextField( + controller: controller, + maxLines: 3, + decoration: const InputDecoration( + hintText: 'Напишите ответ...', + ), + ), + actions: [ + TextButton( + onPressed: () => Navigator.pop(ctx), + child: const Text('Отмена'), + ), + ElevatedButton( + onPressed: () { + if (controller.text.isNotEmpty) { + onReply(comment.id, controller.text); + Navigator.pop(ctx); + } + }, + child: const Text('Отправить'), + ), + ], + ), + ); + } +} diff --git a/flutter/lib/widgets/empty_state.dart b/flutter/lib/widgets/empty_state.dart new file mode 100644 index 0000000..fc4497f --- /dev/null +++ b/flutter/lib/widgets/empty_state.dart @@ -0,0 +1,60 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../core/theme/app_theme.dart'; + +class EmptyState extends StatelessWidget { + final IconData icon; + final String title; + final String? subtitle; + final String? actionLabel; + final VoidCallback? onAction; + + const EmptyState({ + super.key, + required this.icon, + required this.title, + this.subtitle, + this.actionLabel, + this.onAction, + }); + + @override + Widget build(BuildContext context) { + return Center( + child: Padding( + padding: const EdgeInsets.all(32), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Icon(icon, size: 64, color: VoIdeaColors.muted), + const SizedBox(height: 16), + Text( + title, + style: Theme.of(context).textTheme.titleMedium?.copyWith( + color: VoIdeaColors.muted, + ), + textAlign: TextAlign.center, + ), + if (subtitle != null) ...[ + const SizedBox(height: 8), + Text( + subtitle!, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: VoIdeaColors.muted, + ), + textAlign: TextAlign.center, + ), + ], + if (actionLabel != null && onAction != null) ...[ + const SizedBox(height: 24), + ElevatedButton( + onPressed: onAction, + child: Text(actionLabel!), + ), + ], + ], + ), + ), + ).animate().fadeIn(duration: 300.ms).slideY(begin: 0.2); + } +} diff --git a/flutter/lib/widgets/error_display.dart b/flutter/lib/widgets/error_display.dart new file mode 100644 index 0000000..9f18980 --- /dev/null +++ b/flutter/lib/widgets/error_display.dart @@ -0,0 +1,43 @@ +import 'package:flutter/material.dart'; +import '../core/theme/app_theme.dart'; + +class ErrorDisplay extends StatelessWidget { + final String message; + final VoidCallback? onRetry; + + const ErrorDisplay({ + super.key, + required this.message, + this.onRetry, + }); + + @override + Widget build(BuildContext context) { + return Center( + child: Padding( + padding: const EdgeInsets.all(32), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Icon(Icons.error_outline, + size: 48, color: VoIdeaColors.error), + const SizedBox(height: 16), + Text( + message, + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.bodyLarge, + ), + if (onRetry != null) ...[ + const SizedBox(height: 16), + ElevatedButton.icon( + onPressed: onRetry, + icon: const Icon(Icons.refresh), + label: const Text('Повторить'), + ), + ], + ], + ), + ), + ); + } +} diff --git a/flutter/lib/widgets/funnel_status_badge.dart b/flutter/lib/widgets/funnel_status_badge.dart new file mode 100644 index 0000000..49116e0 --- /dev/null +++ b/flutter/lib/widgets/funnel_status_badge.dart @@ -0,0 +1,40 @@ +import 'package:flutter/material.dart'; +import '../core/constants/app_constants.dart'; + +class FunnelStatusBadge extends StatelessWidget { + final String? status; + final double fontSize; + + const FunnelStatusBadge({ + super.key, + required this.status, + this.fontSize = 12, + }); + + @override + Widget build(BuildContext context) { + final color = status != null + ? AppConstants.funnelColors[status] ?? AppConstants.funnelColors['raw']! + : AppConstants.funnelColors['raw']!; + final label = status != null + ? AppConstants.funnelLabels[status] ?? status + : 'Без статуса'; + + return Container( + padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4), + decoration: BoxDecoration( + color: color.withOpacity(0.1), + borderRadius: BorderRadius.circular(12), + border: Border.all(color: color.withOpacity(0.3)), + ), + child: Text( + label!, + style: TextStyle( + color: color, + fontSize: fontSize, + fontWeight: FontWeight.w500, + ), + ), + ); + } +} diff --git a/flutter/lib/widgets/loading_indicator.dart b/flutter/lib/widgets/loading_indicator.dart new file mode 100644 index 0000000..d780358 --- /dev/null +++ b/flutter/lib/widgets/loading_indicator.dart @@ -0,0 +1,53 @@ +import 'package:flutter/material.dart'; +import 'package:shimmer/shimmer.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../core/theme/app_theme.dart'; + +class LoadingIndicator extends StatelessWidget { + final String? message; + + const LoadingIndicator({super.key, this.message}); + + @override + Widget build(BuildContext context) { + return Center( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + const CircularProgressIndicator(), + if (message != null) ...[ + const SizedBox(height: 16), + Text(message!, style: Theme.of(context).textTheme.bodyMedium), + ], + ], + ), + ).animate().fadeIn(duration: 200.ms); + } +} + +class ShimmerList extends StatelessWidget { + final int itemCount; + + const ShimmerList({super.key, this.itemCount = 5}); + + @override + Widget build(BuildContext context) { + return Shimmer.fromColors( + baseColor: VoIdeaColors.muted.withOpacity(0.1), + highlightColor: VoIdeaColors.muted.withOpacity(0.05), + child: ListView.builder( + itemCount: itemCount, + itemBuilder: (_, __) => Padding( + padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), + child: Container( + height: 80, + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular(12), + ), + ), + ), + ), + ); + } +} diff --git a/flutter/lib/widgets/notification_bell.dart b/flutter/lib/widgets/notification_bell.dart new file mode 100644 index 0000000..b027094 --- /dev/null +++ b/flutter/lib/widgets/notification_bell.dart @@ -0,0 +1,106 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; +import '../providers/notification_provider.dart'; +import '../models/collaboration.dart'; +import '../core/theme/app_theme.dart'; + +class NotificationBell extends ConsumerWidget { + const NotificationBell({super.key}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final unreadCount = ref.watch(unreadCountProvider); + return Stack( + children: [ + IconButton( + icon: const Icon(Icons.notifications_outlined), + onPressed: () => context.push('/notifications'), + ), + if (unreadCount > 0) + Positioned( + right: 6, + top: 6, + child: Container( + padding: const EdgeInsets.all(4), + decoration: const BoxDecoration( + color: VoIdeaColors.error, + shape: BoxShape.circle, + ), + constraints: const BoxConstraints(minWidth: 18, minHeight: 18), + child: Text( + unreadCount > 99 ? '99+' : unreadCount.toString(), + style: const TextStyle( + color: Colors.white, + fontSize: 10, + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + ), + ), + ], + ); + } +} + +class NotificationDropdown extends ConsumerStatefulWidget { + const NotificationDropdown({super.key}); + + @override + ConsumerState createState() => + _NotificationDropdownState(); +} + +class _NotificationDropdownState + extends ConsumerState { + @override + Widget build(BuildContext context) { + final state = ref.watch(notificationProvider); + final notifier = ref.read(notificationProvider.notifier); + + return PopupMenuButton( + icon: const NotificationBell(), + onOpened: () => notifier.loadNotifications(), + itemBuilder: (context) { + final items = state.notifications.take(5).toList(); + if (items.isEmpty) { + return [ + const PopupMenuItem( + enabled: false, + child: Text('Нет уведомлений'), + ), + ]; + } + return [ + ...items.map((n) => PopupMenuItem( + child: ListTile( + title: Text( + n.title, + style: TextStyle( + fontWeight: n.isRead ? FontWeight.normal : FontWeight.w600, + fontSize: 13, + ), + ), + subtitle: Text(n.body, maxLines: 1, overflow: TextOverflow.ellipsis), + dense: true, + onTap: () { + notifier.markAsRead(n.id); + if (n.ideaId != null) { + context.push('/ideas/${n.ideaId}'); + } + }, + ), + )), + const PopupMenuDivider(), + PopupMenuItem( + child: TextButton( + onPressed: () => context.push('/notifications'), + child: const Text('Все уведомления'), + ), + ), + ]; + }, + ); + } +} diff --git a/flutter/lib/widgets/shell.dart b/flutter/lib/widgets/shell.dart new file mode 100644 index 0000000..08324e1 --- /dev/null +++ b/flutter/lib/widgets/shell.dart @@ -0,0 +1,82 @@ +import 'package:flutter/material.dart'; +import 'package:go_router/go_router.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../providers/notification_provider.dart'; +import '../core/constants/app_constants.dart'; + +class Shell extends ConsumerWidget { + final Widget child; + + const Shell({super.key, required this.child}); + + @override + Widget build(BuildContext context, WidgetRef ref) { + final unreadCount = ref.watch(unreadCountProvider); + final colorScheme = Theme.of(context).colorScheme; + + final currentLocation = GoRouterState.of(context).matchedLocation; + + int currentIndex = _navIndex(currentLocation); + + return Scaffold( + body: child, + bottomNavigationBar: BottomNavigationBar( + currentIndex: currentIndex, + onTap: (index) => _onTap(context, index), + items: [ + const BottomNavigationBarItem( + icon: Icon(Icons.dashboard_outlined), + activeIcon: Icon(Icons.dashboard), + label: 'Дашборд', + ), + const BottomNavigationBarItem( + icon: Icon(Icons.lightbulb_outline), + activeIcon: Icon(Icons.lightbulb), + label: 'Идеи', + ), + const BottomNavigationBarItem( + icon: Icon(Icons.mic_outlined), + activeIcon: Icon(Icons.mic), + label: 'Голос', + ), + const BottomNavigationBarItem( + icon: Icon(Icons.notifications_outlined), + activeIcon: Icon(Icons.notifications), + label: 'Уведомления', + ), + const BottomNavigationBarItem( + icon: Icon(Icons.settings_outlined), + activeIcon: Icon(Icons.settings), + label: 'Настройки', + ), + ], + ), + ).animate().fadeIn(duration: 200.ms); + } + + int _navIndex(String location) { + if (location.startsWith('/ideas')) return 1; + if (location.startsWith('/voice')) return 2; + if (location.startsWith('/notifications')) return 3; + if (location.startsWith('/settings') || + location.startsWith('/admin') || + location.startsWith('/workspaces')) return 4; + return 0; + } + + void _onTap(BuildContext context, int index) { + switch (index) { + case 0: + context.go('/'); + case 1: + context.go('/ideas'); + case 2: + context.go('/voice'); + case 3: + context.go('/notifications'); + case 4: + context.go('/settings'); + } + } +} diff --git a/flutter/lib/widgets/vote_buttons.dart b/flutter/lib/widgets/vote_buttons.dart new file mode 100644 index 0000000..0175015 --- /dev/null +++ b/flutter/lib/widgets/vote_buttons.dart @@ -0,0 +1,115 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_animate/flutter_animate.dart'; +import '../core/theme/app_theme.dart'; + +class VoteButtons extends StatefulWidget { + final int upvotes; + final int downvotes; + final bool? userVote; + final VoidCallback onUpvote; + final VoidCallback onDownvote; + + const VoteButtons({ + super.key, + required this.upvotes, + required this.downvotes, + this.userVote, + required this.onUpvote, + required this.onDownvote, + }); + + @override + State createState() => _VoteButtonsState(); +} + +class _VoteButtonsState extends State { + bool _animatingUp = false; + bool _animatingDown = false; + + @override + Widget build(BuildContext context) { + return Row( + mainAxisSize: MainAxisSize.min, + children: [ + _buildButton( + icon: Icons.thumb_up_outlined, + activeIcon: Icons.thumb_up, + count: widget.upvotes, + isActive: widget.userVote == true, + color: VoIdeaColors.success, + onTap: () { + setState(() => _animatingUp = true); + widget.onUpvote(); + Future.delayed(300.ms, () { + if (mounted) setState(() => _animatingUp = false); + }); + }, + animating: _animatingUp, + ), + const SizedBox(width: 16), + _buildButton( + icon: Icons.thumb_down_outlined, + activeIcon: Icons.thumb_down, + count: widget.downvotes, + isActive: widget.userVote == false, + color: VoIdeaColors.error, + onTap: () { + setState(() => _animatingDown = true); + widget.onDownvote(); + Future.delayed(300.ms, () { + if (mounted) setState(() => _animatingDown = false); + }); + }, + animating: _animatingDown, + ), + ], + ); + } + + Widget _buildButton({ + required IconData icon, + required IconData activeIcon, + required int count, + required bool isActive, + required Color color, + required VoidCallback onTap, + required bool animating, + }) { + return GestureDetector( + onTap: onTap, + child: AnimatedContainer( + duration: 200.ms, + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 6), + decoration: BoxDecoration( + color: isActive ? color.withOpacity(0.1) : Colors.transparent, + borderRadius: BorderRadius.circular(20), + border: Border.all( + color: isActive ? color : VoIdeaColors.muted.withOpacity(0.3), + ), + ), + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + Icon( + isActive ? activeIcon : icon, + size: 18, + color: isActive ? color : VoIdeaColors.muted, + ).animate(target: animating ? 1 : 0).scale( + begin: const Offset(1, 1), + end: const Offset(1.3, 1.3), + duration: 200.ms, + ), + const SizedBox(width: 4), + Text( + count.toString(), + style: TextStyle( + color: isActive ? color : VoIdeaColors.muted, + fontWeight: isActive ? FontWeight.w600 : FontWeight.normal, + ), + ), + ], + ), + ), + ); + } +} diff --git a/flutter/pubspec.lock b/flutter/pubspec.lock new file mode 100644 index 0000000..d99b3a6 --- /dev/null +++ b/flutter/pubspec.lock @@ -0,0 +1,1338 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f + url: "https://pub.dev" + source: hosted + version: "85.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: f4ad0fea5f102201015c9aae9d93bc02f75dd9491529a8c21f88d17a8523d44c + url: "https://pub.dev" + source: hosted + version: "7.6.0" + analyzer_plugin: + dependency: transitive + description: + name: analyzer_plugin + sha256: a5ab7590c27b779f3d4de67f31c4109dbe13dd7339f86461a6f2a8ab2594d8ce + url: "https://pub.dev" + source: hosted + version: "0.13.4" + ansicolor: + dependency: transitive + description: + name: ansicolor + sha256: "50e982d500bc863e1d703448afdbf9e5a72eb48840a4f766fa361ffd6877055f" + url: "https://pub.dev" + source: hosted + version: "2.0.3" + archive: + dependency: transitive + description: + name: archive + sha256: a96e8b390886ee8abb49b7bd3ac8df6f451c621619f52a26e815fdcf568959ff + url: "https://pub.dev" + source: hosted + version: "4.0.9" + args: + dependency: transitive + description: + name: args + sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04 + url: "https://pub.dev" + source: hosted + version: "2.7.0" + async: + dependency: transitive + description: + name: async + sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37 + url: "https://pub.dev" + source: hosted + version: "2.13.1" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + build: + dependency: transitive + description: + name: build + sha256: "51dc711996cbf609b90cbe5b335bbce83143875a9d58e4b5c6d3c4f684d3dda7" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + build_config: + dependency: transitive + description: + name: build_config + sha256: "4ae2de3e1e67ea270081eaee972e1bd8f027d459f249e0f1186730784c2e7e33" + url: "https://pub.dev" + source: hosted + version: "1.1.2" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: bf05f6e12cfea92d3c09308d7bcdab1906cd8a179b023269eed00c071004b957 + url: "https://pub.dev" + source: hosted + version: "4.1.1" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: ee4257b3f20c0c90e72ed2b57ad637f694ccba48839a821e87db762548c22a62 + url: "https://pub.dev" + source: hosted + version: "2.5.4" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "382a4d649addbfb7ba71a3631df0ec6a45d5ab9b098638144faf27f02778eb53" + url: "https://pub.dev" + source: hosted + version: "2.5.4" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: "85fbbb1036d576d966332a3f5ce83f2ce66a40bea1a94ad2d5fc29a19a0d3792" + url: "https://pub.dev" + source: hosted + version: "9.1.2" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56" + url: "https://pub.dev" + source: hosted + version: "8.12.6" + cached_network_image: + dependency: "direct main" + description: + name: cached_network_image + sha256: "7c1183e361e5c8b0a0f21a28401eecdbde252441106a9816400dd4c2b2424916" + url: "https://pub.dev" + source: hosted + version: "3.4.1" + cached_network_image_platform_interface: + dependency: transitive + description: + name: cached_network_image_platform_interface + sha256: "35814b016e37fbdc91f7ae18c8caf49ba5c88501813f73ce8a07027a395e2829" + url: "https://pub.dev" + source: hosted + version: "4.1.1" + cached_network_image_web: + dependency: transitive + description: + name: cached_network_image_web + sha256: "980842f4e8e2535b8dbd3d5ca0b1f0ba66bf61d14cc3a17a9b4788a3685ba062" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + characters: + dependency: transitive + description: + name: characters + sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b + url: "https://pub.dev" + source: hosted + version: "1.4.1" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: "959525d3162f249993882720d52b7e0c833978df229be20702b33d48d91de70f" + url: "https://pub.dev" + source: hosted + version: "2.0.4" + clock: + dependency: transitive + description: + name: clock + sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b + url: "https://pub.dev" + source: hosted + version: "1.1.2" + code_assets: + dependency: transitive + description: + name: code_assets + sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: "6a6cab2ba4680d6423f34a9b972a4c9a94ebe1b62ecec4e1a1f2cba91fd1319d" + url: "https://pub.dev" + source: hosted + version: "4.11.1" + collection: + dependency: transitive + description: + name: collection + sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76" + url: "https://pub.dev" + source: hosted + version: "1.19.1" + connectivity_plus: + dependency: "direct main" + description: + name: connectivity_plus + sha256: b5e72753cf63becce2c61fd04dfe0f1c430cc5278b53a1342dc5ad839eab29ec + url: "https://pub.dev" + source: hosted + version: "6.1.5" + connectivity_plus_platform_interface: + dependency: transitive + description: + name: connectivity_plus_platform_interface + sha256: "3c09627c536d22fd24691a905cdd8b14520de69da52c7a97499c8be5284a32ed" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + convert: + dependency: transitive + description: + name: convert + sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68 + url: "https://pub.dev" + source: hosted + version: "3.1.2" + cross_file: + dependency: transitive + description: + name: cross_file + sha256: "28bb3ae56f117b5aec029d702a90f57d285cd975c3c5c281eaca38dbc47c5937" + url: "https://pub.dev" + source: hosted + version: "0.3.5+2" + crypto: + dependency: transitive + description: + name: crypto + sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf + url: "https://pub.dev" + source: hosted + version: "3.0.7" + csslib: + dependency: transitive + description: + name: csslib + sha256: "09bad715f418841f976c77db72d5398dc1253c21fb9c0c7f0b0b985860b2d58e" + url: "https://pub.dev" + source: hosted + version: "1.0.2" + custom_lint_core: + dependency: transitive + description: + name: custom_lint_core + sha256: "31110af3dde9d29fb10828ca33f1dce24d2798477b167675543ce3d208dee8be" + url: "https://pub.dev" + source: hosted + version: "0.7.5" + custom_lint_visitor: + dependency: transitive + description: + name: custom_lint_visitor + sha256: "4a86a0d8415a91fbb8298d6ef03e9034dc8e323a599ddc4120a0e36c433983a2" + url: "https://pub.dev" + source: hosted + version: "1.0.0+7.7.0" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "8a0e5fba27e8ee025d2ffb4ee820b4e6e2cf5e4246a6b1a477eb66866947e0bb" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + dbus: + dependency: transitive + description: + name: dbus + sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270 + url: "https://pub.dev" + source: hosted + version: "0.7.12" + dio: + dependency: "direct main" + description: + name: dio + sha256: aff32c08f92787a557dd5c0145ac91536481831a01b4648136373cddb0e64f8c + url: "https://pub.dev" + source: hosted + version: "5.9.2" + dio_web_adapter: + dependency: transitive + description: + name: dio_web_adapter + sha256: "2f9e64323a7c3c7ef69567d5c800424a11f8337b8b228bad02524c9fb3c1f340" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44" + url: "https://pub.dev" + source: hosted + version: "1.3.3" + ffi: + dependency: transitive + description: + name: ffi + sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + file: + dependency: transitive + description: + name: file + sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4 + url: "https://pub.dev" + source: hosted + version: "7.0.1" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be + url: "https://pub.dev" + source: hosted + version: "1.1.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_animate: + dependency: "direct main" + description: + name: flutter_animate + sha256: "7befe2d3252728afb77aecaaea1dec88a89d35b9b1d2eea6d04479e8af9117b5" + url: "https://pub.dev" + source: hosted + version: "4.5.2" + flutter_cache_manager: + dependency: transitive + description: + name: flutter_cache_manager + sha256: "400b6592f16a4409a7f2bb929a9a7e38c72cceb8ffb99ee57bbf2cb2cecf8386" + url: "https://pub.dev" + source: hosted + version: "3.4.1" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_local_notifications: + dependency: "direct main" + description: + name: flutter_local_notifications + sha256: ef41ae901e7529e52934feba19ed82827b11baa67336829564aeab3129460610 + url: "https://pub.dev" + source: hosted + version: "18.0.1" + flutter_local_notifications_linux: + dependency: transitive + description: + name: flutter_local_notifications_linux + sha256: "8f685642876742c941b29c32030f6f4f6dacd0e4eaecb3efbb187d6a3812ca01" + url: "https://pub.dev" + source: hosted + version: "5.0.0" + flutter_local_notifications_platform_interface: + dependency: transitive + description: + name: flutter_local_notifications_platform_interface + sha256: "6c5b83c86bf819cdb177a9247a3722067dd8cc6313827ce7c77a4b238a26fd52" + url: "https://pub.dev" + source: hosted + version: "8.0.0" + flutter_native_splash: + dependency: "direct main" + description: + name: flutter_native_splash + sha256: "4fb9f4113350d3a80841ce05ebf1976a36de622af7d19aca0ca9a9911c7ff002" + url: "https://pub.dev" + source: hosted + version: "2.4.7" + flutter_riverpod: + dependency: "direct main" + description: + name: flutter_riverpod + sha256: "9532ee6db4a943a1ed8383072a2e3eeda041db5657cdf6d2acecf3c21ecbe7e1" + url: "https://pub.dev" + source: hosted + version: "2.6.1" + flutter_secure_storage: + dependency: "direct main" + description: + name: flutter_secure_storage + sha256: "9cad52d75ebc511adfae3d447d5d13da15a55a92c9410e50f67335b6d21d16ea" + url: "https://pub.dev" + source: hosted + version: "9.2.4" + flutter_secure_storage_linux: + dependency: transitive + description: + name: flutter_secure_storage_linux + sha256: be76c1d24a97d0b98f8b54bce6b481a380a6590df992d0098f868ad54dc8f688 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + flutter_secure_storage_macos: + dependency: transitive + description: + name: flutter_secure_storage_macos + sha256: "6c0a2795a2d1de26ae202a0d78527d163f4acbb11cde4c75c670f3a0fc064247" + url: "https://pub.dev" + source: hosted + version: "3.1.3" + flutter_secure_storage_platform_interface: + dependency: transitive + description: + name: flutter_secure_storage_platform_interface + sha256: cf91ad32ce5adef6fba4d736a542baca9daf3beac4db2d04be350b87f69ac4a8 + url: "https://pub.dev" + source: hosted + version: "1.1.2" + flutter_secure_storage_web: + dependency: transitive + description: + name: flutter_secure_storage_web + sha256: f4ebff989b4f07b2656fb16b47852c0aab9fed9b4ec1c70103368337bc1886a9 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + flutter_secure_storage_windows: + dependency: transitive + description: + name: flutter_secure_storage_windows + sha256: b20b07cb5ed4ed74fc567b78a72936203f587eba460af1df11281c9326cd3709 + url: "https://pub.dev" + source: hosted + version: "3.1.2" + flutter_shaders: + dependency: transitive + description: + name: flutter_shaders + sha256: "34794acadd8275d971e02df03afee3dee0f98dbfb8c4837082ad0034f612a3e2" + url: "https://pub.dev" + source: hosted + version: "0.1.3" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + sha256: "35882981abcbfb8c15b286f0cd690ff25bac12d95eff3e25ee207f37d4c42e7f" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + freezed: + dependency: "direct dev" + description: + name: freezed + sha256: "59a584c24b3acdc5250bb856d0d3e9c0b798ed14a4af1ddb7dc1c7b41df91c9c" + url: "https://pub.dev" + source: hosted + version: "2.5.8" + freezed_annotation: + dependency: "direct main" + description: + name: freezed_annotation + sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2 + url: "https://pub.dev" + source: hosted + version: "2.4.4" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 + url: "https://pub.dev" + source: hosted + version: "4.0.0" + glob: + dependency: transitive + description: + name: glob + sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de + url: "https://pub.dev" + source: hosted + version: "2.1.3" + go_router: + dependency: "direct main" + description: + name: go_router + sha256: f02fd7d2a4dc512fec615529824fdd217fecb3a3d3de68360293a551f21634b3 + url: "https://pub.dev" + source: hosted + version: "14.8.1" + graphs: + dependency: transitive + description: + name: graphs + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + hooks: + dependency: transitive + description: + name: hooks + sha256: "025f060e86d2d4c3c47b56e33caf7f93bf9283340f26d23424ebcfccf34f621e" + url: "https://pub.dev" + source: hosted + version: "1.0.3" + html: + dependency: transitive + description: + name: html + sha256: "6d1264f2dffa1b1101c25a91dff0dc2daee4c18e87cd8538729773c073dbf602" + url: "https://pub.dev" + source: hosted + version: "0.15.6" + http: + dependency: transitive + description: + name: http + sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" + url: "https://pub.dev" + source: hosted + version: "1.6.0" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8 + url: "https://pub.dev" + source: hosted + version: "3.2.2" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" + url: "https://pub.dev" + source: hosted + version: "4.1.2" + image: + dependency: transitive + description: + name: image + sha256: f9881ff4998044947ec38d098bc7c8316ae1186fa786eddffdb867b9bc94dfce + url: "https://pub.dev" + source: hosted + version: "4.8.0" + intl: + dependency: "direct main" + description: + name: intl + sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf + url: "https://pub.dev" + source: hosted + version: "0.19.0" + io: + dependency: transitive + description: + name: io + sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b + url: "https://pub.dev" + source: hosted + version: "1.0.5" + jni: + dependency: transitive + description: + name: jni + sha256: c2230682d5bc2362c1c9e8d3c7f406d9cbba23ab3f2e203a025dd47e0fb2e68f + url: "https://pub.dev" + source: hosted + version: "1.0.0" + jni_flutter: + dependency: transitive + description: + name: jni_flutter + sha256: "8b59e590786050b1cd866677dddaf76b1ade5e7bc751abe04b86e84d379d3ba6" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + js: + dependency: transitive + description: + name: js + sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 + url: "https://pub.dev" + source: hosted + version: "0.6.7" + json_annotation: + dependency: "direct main" + description: + name: json_annotation + sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" + url: "https://pub.dev" + source: hosted + version: "4.9.0" + json_serializable: + dependency: "direct dev" + description: + name: json_serializable + sha256: c50ef5fc083d5b5e12eef489503ba3bf5ccc899e487d691584699b4bdefeea8c + url: "https://pub.dev" + source: hosted + version: "6.9.5" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de" + url: "https://pub.dev" + source: hosted + version: "11.0.2" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + url: "https://pub.dev" + source: hosted + version: "3.0.10" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + lints: + dependency: transitive + description: + name: lints + sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7 + url: "https://pub.dev" + source: hosted + version: "5.1.1" + logging: + dependency: transitive + description: + name: logging + sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61 + url: "https://pub.dev" + source: hosted + version: "1.3.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 + url: "https://pub.dev" + source: hosted + version: "0.12.19" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" + url: "https://pub.dev" + source: hosted + version: "0.13.0" + meta: + dependency: transitive + description: + name: meta + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" + url: "https://pub.dev" + source: hosted + version: "1.17.0" + mime: + dependency: transitive + description: + name: mime + sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + native_toolchain_c: + dependency: transitive + description: + name: native_toolchain_c + sha256: "6ba77bb18063eebe9de401f5e6437e95e1438af0a87a3a39084fbd37c90df572" + url: "https://pub.dev" + source: hosted + version: "0.17.6" + nm: + dependency: transitive + description: + name: nm + sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" + url: "https://pub.dev" + source: hosted + version: "0.5.0" + objective_c: + dependency: transitive + description: + name: objective_c + sha256: "100a1c87616ab6ed41ec263b083c0ef3261ee6cd1dc3b0f35f8ddfa4f996fe52" + url: "https://pub.dev" + source: hosted + version: "9.3.0" + octo_image: + dependency: transitive + description: + name: octo_image + sha256: "34faa6639a78c7e3cbe79be6f9f96535867e879748ade7d17c9b1ae7536293bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc + url: "https://pub.dev" + source: hosted + version: "2.2.0" + package_info_plus: + dependency: "direct main" + description: + name: package_info_plus + sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968" + url: "https://pub.dev" + source: hosted + version: "8.3.1" + package_info_plus_platform_interface: + dependency: transitive + description: + name: package_info_plus_platform_interface + sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + path: + dependency: transitive + description: + name: path + sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5" + url: "https://pub.dev" + source: hosted + version: "1.9.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + path_provider: + dependency: "direct main" + description: + name: path_provider + sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd" + url: "https://pub.dev" + source: hosted + version: "2.1.5" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + sha256: "69cbd515a62b94d32a7944f086b2f82b4ac40a1d45bebfc00813a430ab2dabcd" + url: "https://pub.dev" + source: hosted + version: "2.3.1" + path_provider_foundation: + dependency: transitive + description: + name: path_provider_foundation + sha256: "2a376b7d6392d80cd3705782d2caa734ca4727776db0b6ec36ef3f1855197699" + url: "https://pub.dev" + source: hosted + version: "2.6.0" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + pedantic: + dependency: transitive + description: + name: pedantic + sha256: "67fc27ed9639506c856c840ccce7594d0bdcd91bc8d53d6e52359449a1d50602" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: "91bd59303e9f769f108f8df05e371341b15d59e995e6806aefab827b58336675" + url: "https://pub.dev" + source: hosted + version: "7.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984" + url: "https://pub.dev" + source: hosted + version: "3.1.6" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + pool: + dependency: transitive + description: + name: pool + sha256: "978783255c543aa3586a1b3c21f6e9d720eb315376a915872c61ef8b5c20177d" + url: "https://pub.dev" + source: hosted + version: "1.5.2" + posix: + dependency: transitive + description: + name: posix + sha256: "185ef7606574f789b40f289c233efa52e96dead518aed988e040a10737febb07" + url: "https://pub.dev" + source: hosted + version: "6.5.0" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082" + url: "https://pub.dev" + source: hosted + version: "1.5.0" + record_use: + dependency: transitive + description: + name: record_use + sha256: "2551bd8eecfe95d14ae75f6021ad0248be5c27f138c2ec12fcb52b500b3ba1ed" + url: "https://pub.dev" + source: hosted + version: "0.6.0" + riverpod: + dependency: transitive + description: + name: riverpod + sha256: "59062512288d3056b2321804332a13ffdd1bf16df70dcc8e506e411280a72959" + url: "https://pub.dev" + source: hosted + version: "2.6.1" + riverpod_analyzer_utils: + dependency: transitive + description: + name: riverpod_analyzer_utils + sha256: "837a6dc33f490706c7f4632c516bcd10804ee4d9ccc8046124ca56388715fdf3" + url: "https://pub.dev" + source: hosted + version: "0.5.9" + riverpod_annotation: + dependency: "direct main" + description: + name: riverpod_annotation + sha256: e14b0bf45b71326654e2705d462f21b958f987087be850afd60578fcd502d1b8 + url: "https://pub.dev" + source: hosted + version: "2.6.1" + riverpod_generator: + dependency: "direct dev" + description: + name: riverpod_generator + sha256: "120d3310f687f43e7011bb213b90a436f1bbc300f0e4b251a72c39bccb017a4f" + url: "https://pub.dev" + source: hosted + version: "2.6.4" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" + url: "https://pub.dev" + source: hosted + version: "0.28.0" + share_plus: + dependency: "direct main" + description: + name: share_plus + sha256: fce43200aa03ea87b91ce4c3ac79f0cecd52e2a7a56c7a4185023c271fbfa6da + url: "https://pub.dev" + source: hosted + version: "10.1.4" + share_plus_platform_interface: + dependency: transitive + description: + name: share_plus_platform_interface + sha256: cc012a23fc2d479854e6c80150696c4a5f5bb62cb89af4de1c505cf78d0a5d0b + url: "https://pub.dev" + source: hosted + version: "5.0.2" + shelf: + dependency: transitive + description: + name: shelf + sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12 + url: "https://pub.dev" + source: hosted + version: "1.4.2" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + shimmer: + dependency: "direct main" + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + source_gen: + dependency: transitive + description: + name: source_gen + sha256: "35c8150ece9e8c8d263337a265153c3329667640850b9304861faea59fc98f6b" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + source_helper: + dependency: transitive + description: + name: source_helper + sha256: a447acb083d3a5ef17f983dd36201aeea33fedadb3228fa831f2f0c92f0f3aca + url: "https://pub.dev" + source: hosted + version: "1.3.7" + source_span: + dependency: transitive + description: + name: source_span + sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab" + url: "https://pub.dev" + source: hosted + version: "1.10.2" + speech_to_text: + dependency: "direct main" + description: + name: speech_to_text + sha256: c07557664974afa061f221d0d4186935bea4220728ea9446702825e8b988db04 + url: "https://pub.dev" + source: hosted + version: "7.3.0" + speech_to_text_platform_interface: + dependency: transitive + description: + name: speech_to_text_platform_interface + sha256: a1935847704e41ee468aad83181ddd2423d0833abe55d769c59afca07adb5114 + url: "https://pub.dev" + source: hosted + version: "2.3.0" + speech_to_text_windows: + dependency: transitive + description: + name: speech_to_text_windows + sha256: "2c9846d18253c7bbe059a276297ef9f27e8a2745dead32192525beb208195072" + url: "https://pub.dev" + source: hosted + version: "1.0.0+beta.8" + sqflite: + dependency: transitive + description: + name: sqflite + sha256: "564cfed0746fe53140c23b70b308e045c3b31f17778f2f326ccb7d804ea0250a" + url: "https://pub.dev" + source: hosted + version: "2.4.2+1" + sqflite_android: + dependency: transitive + description: + name: sqflite_android + sha256: "881e28efdcc9950fd8e9bb42713dcf1103e62a2e7168f23c9338d82db13dec40" + url: "https://pub.dev" + source: hosted + version: "2.4.2+3" + sqflite_common: + dependency: transitive + description: + name: sqflite_common + sha256: f8a08a13fb8f0f8c590df89d745000bed44a673ed94bac846739e1a016875c21 + url: "https://pub.dev" + source: hosted + version: "2.5.7" + sqflite_darwin: + dependency: transitive + description: + name: sqflite_darwin + sha256: "279832e5cde3fe99e8571879498c9211f3ca6391b0d818df4e17d9fff5c6ccb3" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + sqflite_platform_interface: + dependency: transitive + description: + name: sqflite_platform_interface + sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920" + url: "https://pub.dev" + source: hosted + version: "2.4.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1" + url: "https://pub.dev" + source: hosted + version: "1.12.1" + state_notifier: + dependency: transitive + description: + name: state_notifier + sha256: b8677376aa54f2d7c58280d5a007f9e8774f1968d1fb1c096adcb4792fba29bb + url: "https://pub.dev" + source: hosted + version: "1.0.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871 + url: "https://pub.dev" + source: hosted + version: "2.1.1" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43" + url: "https://pub.dev" + source: hosted + version: "1.4.1" + synchronized: + dependency: transitive + description: + name: synchronized + sha256: "63896c27e81b28f8cb4e69ead0d3e8f03f1d1e5fc531a3e579cabed6a2c7c9e5" + url: "https://pub.dev" + source: hosted + version: "3.4.0+1" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + test_api: + dependency: transitive + description: + name: test_api + sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a" + url: "https://pub.dev" + source: hosted + version: "0.7.10" + timezone: + dependency: transitive + description: + name: timezone + sha256: dd14a3b83cfd7cb19e7888f1cbc20f258b8d71b54c06f79ac585f14093a287d1 + url: "https://pub.dev" + source: hosted + version: "0.10.1" + timing: + dependency: transitive + description: + name: timing + sha256: "62ee18aca144e4a9f29d212f5a4c6a053be252b895ab14b5821996cff4ed90fe" + url: "https://pub.dev" + source: hosted + version: "1.0.2" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006 + url: "https://pub.dev" + source: hosted + version: "1.4.0" + universal_io: + dependency: transitive + description: + name: universal_io + sha256: f63cbc48103236abf48e345e07a03ce5757ea86285ed313a6a032596ed9301e2 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + url_launcher: + dependency: "direct main" + description: + name: url_launcher + sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8 + url: "https://pub.dev" + source: hosted + version: "6.3.2" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: "3bb000251e55d4a209aa0e2e563309dc9bb2befea2295fd0cec1f51760aac572" + url: "https://pub.dev" + source: hosted + version: "6.3.29" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "580fe5dfb51671ae38191d316e027f6b76272b026370708c2d898799750a02b0" + url: "https://pub.dev" + source: hosted + version: "6.4.1" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: d5e14138b3bc193a0f63c10a53c94b91d399df0512b1f29b94a043db7482384a + url: "https://pub.dev" + source: hosted + version: "3.2.2" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: "368adf46f71ad3c21b8f06614adb38346f193f3a59ba8fe9a2fd74133070ba18" + url: "https://pub.dev" + source: hosted + version: "3.2.5" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "85c81589622fbc87c1c683aaea164d3604a7777495a79d91e39ffcdec39ddb34" + url: "https://pub.dev" + source: hosted + version: "2.4.3" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: "712c70ab1b99744ff066053cbe3e80c73332b38d46e5e945c98689b2e66fc15f" + url: "https://pub.dev" + source: hosted + version: "3.1.5" + uuid: + dependency: transitive + description: + name: uuid + sha256: "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489" + url: "https://pub.dev" + source: hosted + version: "4.5.3" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "4d35a36400983c3457c289d4d553b5308f506ea84f7e51c7a564651b5525209a" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146" + url: "https://pub.dev" + source: hosted + version: "1.1.13" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "98e7e94de127b46a86ef46197fff84ff99f3d3b80a708390d717ad731efef598" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + url: "https://pub.dev" + source: hosted + version: "2.2.0" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: "0016aef94fc66495ac78af5859181e3f3bf2026bd8eecc72b9565601e19ab360" + url: "https://pub.dev" + source: hosted + version: "15.2.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" + web_socket: + dependency: transitive + description: + name: web_socket + sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8 + url: "https://pub.dev" + source: hosted + version: "3.0.3" + win32: + dependency: transitive + description: + name: win32 + sha256: d7cb55e04cd34096cd3a79b3330245f54cb96a370a1c27adb3c84b917de8b08e + url: "https://pub.dev" + source: hosted + version: "5.15.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + xml: + dependency: transitive + description: + name: xml + sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025" + url: "https://pub.dev" + source: hosted + version: "6.6.1" + yaml: + dependency: transitive + description: + name: yaml + sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce + url: "https://pub.dev" + source: hosted + version: "3.1.3" +sdks: + dart: ">=3.11.0 <4.0.0" + flutter: ">=3.38.4" diff --git a/flutter/pubspec.yaml b/flutter/pubspec.yaml new file mode 100644 index 0000000..476368d --- /dev/null +++ b/flutter/pubspec.yaml @@ -0,0 +1,45 @@ +name: voidea_app +description: VoIdea mobile app — voice-powered idea management. +publish_to: none +version: 1.0.0+1 + +environment: + sdk: ^3.4.0 + +dependencies: + flutter: + sdk: flutter + flutter_riverpod: ^2.6.1 + riverpod_annotation: ^2.6.1 + go_router: ^14.8.1 + dio: ^5.7.0 + freezed_annotation: ^2.4.4 + json_annotation: ^4.9.0 + flutter_secure_storage: ^9.2.4 + speech_to_text: ^7.0.0 + share_plus: ^10.1.4 + flutter_local_notifications: ^18.0.1 + intl: ^0.19.0 + cached_network_image: ^3.4.1 + flutter_animate: ^4.5.2 + shimmer: ^3.0.0 + flutter_native_splash: ^2.4.4 + url_launcher: ^6.3.1 + path_provider: ^2.1.5 + connectivity_plus: ^6.1.1 + package_info_plus: ^8.1.3 + flutter_svg: ^2.0.17 + +dev_dependencies: + flutter_test: + sdk: flutter + freezed: ^2.5.7 + json_serializable: ^6.9.4 + riverpod_generator: ^2.6.3 + build_runner: ^2.4.14 + flutter_lints: ^5.0.0 + +flutter: + uses-material-design: true + assets: + - assets/ diff --git a/flutter/test/widget_test.dart b/flutter/test/widget_test.dart new file mode 100644 index 0000000..c519900 --- /dev/null +++ b/flutter/test/widget_test.dart @@ -0,0 +1,15 @@ +import 'package:flutter_test/flutter_test.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; +import 'package:go_router/go_router.dart'; + +import '../lib/app.dart'; + +void main() { + testWidgets('App renders MaterialApp.router', (tester) async { + await tester.pumpWidget(const ProviderScope(child: VoIdeaApp())); + await tester.pumpAndSettle(); + + expect(find.byType(MaterialApp), findsOneWidget); + }); +} diff --git a/flutter/web/favicon.png b/flutter/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/flutter/web/favicon.png differ diff --git a/flutter/web/icons/Icon-192.png b/flutter/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/flutter/web/icons/Icon-192.png differ diff --git a/flutter/web/icons/Icon-512.png b/flutter/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/flutter/web/icons/Icon-512.png differ diff --git a/flutter/web/icons/Icon-maskable-192.png b/flutter/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/flutter/web/icons/Icon-maskable-192.png differ diff --git a/flutter/web/icons/Icon-maskable-512.png b/flutter/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/flutter/web/icons/Icon-maskable-512.png differ diff --git a/flutter/web/index.html b/flutter/web/index.html new file mode 100644 index 0000000..c07c4e9 --- /dev/null +++ b/flutter/web/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + voidea_app + + + + + + + diff --git a/flutter/web/manifest.json b/flutter/web/manifest.json new file mode 100644 index 0000000..4da8f56 --- /dev/null +++ b/flutter/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "voidea_app", + "short_name": "voidea_app", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/old/00-rules.md b/old/00-rules.md deleted file mode 100644 index b7a2ef2..0000000 --- a/old/00-rules.md +++ /dev/null @@ -1,467 +0,0 @@ -# Block 0: Rules & Conventions — VoIdea - -Конституция проекта VoIdea. Применяется ко всем блокам. -Если в специфичном блоке нет явного описания ситуации — решение принимается по правилам Block 0. - ---- - -## 1. Code Style Standards - -**Python (PEP8 + автоматизация):** -- Кодировка UTF-8, отступы 4 пробела -- Максимальная длина строки: 88 символов ( uff format / lack) -- Именование: переменные/функции — snake_case, классы — PascalCase, константы — UPPER_SNAKE_CASE -- Аннотации типов — обязательны для аргументов и возвращаемых значений всех функций -- Строки: двойные кавычки " для данных, одинарные ' для docstrings -- Импорты: stdlib → third-party → local (алфавитный порядок внутри групп). Абсолютные импорты, относительные запрещены -- Пробелы: вокруг операторов, не внутри скобок - -**SQL:** -- Ключевые слова — UPPERCASE (SELECT, FROM, WHERE) -- Имена таблиц и полей — snake_case -- Сложные запросы разбивать на строки, выравнивать JOIN и WHERE - -**Оптимальный размер файла:** -- Если файл маршрутов/контроллеров превышает 500 строк — разбить на модули - -**JavaScript/TypeScript (Web/PWA):** -- Formatter: Prettier (100 символов) -- Linter: ESLint с правилами irbnb + eact -- Типы: strict TypeScript, any запрещён -- Импорты: абсолютные через @/ alias -- Стили: Tailwind CSS -- Состояние: zustand или RTK -- Асинхронность: sync/await вместо .then() - ---- - -## 2. Documentation - -- Docstrings: Google-формат для всех публичных классов, функций, методов -- TODO/FIXME: с указанием причины и планируемого срока. # TODO(#TASK-N): причина -- Предупреждения о рисках: если код затрагивает безопасность, производительность или совместимость -- README.md: в каждой папке pp/* — краткое описание файлов внутри - ---- - -## 3. Naming Conventions - -**Переменные окружения:** -` -PROJECT_NAME=VoIdea -PROJECT_VERSION=X.Y.Z -PROJECT_ENV=local|development|staging|production -SERVER_HOST=X.X.X.X -SERVER_PORT=8020 -SERVER_EXTERNAL_URL=http://X.X.X.X:8020 -DB_HOST=localhost -DB_PORT=5432 -DB_NAME=voidea -DB_USER=voidea -DB_PASS= -REDIS_HOST=localhost -REDIS_PORT=6379 -AI_YANDEX_KEY= -AI_GIGACHAT_KEY= -AI_FALLBACK_MODEL=yandex_gpt -AI_TIMEOUT=10 -OAUTH_YANDEX_ID= -OAUTH_YANDEX_SECRET= -OAUTH_GOOGLE_ID= -OAUTH_GOOGLE_SECRET= -SMTP_HOST= -SMTP_PORT= -SMTP_USER= -SMTP_PASS= -` - -**Индексы БД:** -` -ix_tablename_column -uq_tablename_column -fk_tablename_column -` - -**Ветки Git:** -` -main → стабильная, продакшен -develop → интеграция фич -feature/* → новая функция -hotfix/* → срочное исправление -release/* → подготовка релиза -` - -**Миграции Alembic:** -` -{действие}_{таблица} -` - ---- - -## 4. Git & Versioning - -### 4.1 Формат -SemVer: MAJOR.MINOR.PATCH - -### 4.2 CHANGELOG -Формат: единый файл CHANGELOG.md с разделами по MINOR-версисиям -Новый файл создаётся при смене X (major) или Y (minor): -` -CHANGELOG/ -├── v1.0.md # 1.0.0 → 1.0.n (патчи добавляются в этот файл) -├── v1.1.md # 1.1.0 → 1.1.n (новый файл) -└── v2.0.md # 2.0.0 → ... -` - -### 4.3 Conventional Commits -` -<тип>[optional scope]: <описание> -` -- eat: новая функция → MINOR -- ix: исправление → PATCH -- BREAKING: в теле коммита → MAJOR -- docs, efactor, est, chore: не влияют на версию - -### 4.4 Agent Versioning - -Агенты версионируются независимо от проекта по SemVer (A.B.C). - -**Правила бампа:** -- **A (major)**: breaking change в публичном интерфейсе агента -- **B (minor)**: новая capability (метод, роль, prompt) -- **C (patch)**: внутренние правки без изменения поведения - -**Механика:** -- Каждый агент после `run()` вычисляет SHA256 checksum своего файла -- Сравнивает с `AgentConfig.checksum` в БД -- Не совпал → авто-бамп patch, запись в `CHANGELOG/agents/.md` -- EvolutionAgent управляет minor/major бампами - -**Формат changelog:** -```markdown -CHANGELOG/agents/ -├── doc_agent.md -├── audit_agent.md -└── ... -``` - ---- - -## 5. Code Review - -- Обязателен для всех PR в main и develop -- Минимум 1 апрув от admin/owner -- Чеклист ревью: - - [ ] Нет секретов в коде - - [ ] Нет сырых Exception в API ответах - - [ ] Есть тесты (или TODO с причиной) - - [ ] docs/blocks/*.md обновлён - - [ ] ADR создан при архитектурных изменениях - ---- - -## 6. Definition of Done (DoD) - -- [ ] Код написан (соответствует стилю §1) -- [ ] Линт проходит ( uff check — 0 errors) -- [ ] Тесты написаны (минимум 1 smoke) -- [ ] Тесты проходят (pytest — green) -- [ ] Документация блока обновлена -- [ ] .env.example обновлён (если новая переменная) -- [ ] Миграция написана (если менялась БД) - ---- - -## 7. Architecture (SOLID + слоистая) - -**Слои (зависимости только внутрь):** -` -API → Services → Integrations → Data Layer → Core -` - -**SOLID:** -- S: каждый блок — одна доменная область -- O: новые интеграции — новые классы -- L: сервисы подчиняются общему интерфейсу -- I: сервис принимает только нужные зависимости -- D: API зависит от абстракции Service - ---- - -## 8. Error Handling - -| Слой | Действие | -|------|---------| -| API | HTTPException с detail и status_code | -| Services | Бизнес-исключения без HTTP-статусов | -| Integrations | ry/except с fallback | -| DB | Ошибки БД не всплывают выше | -| WebUI | Flash-сообщение пользователю | - ---- - -## 9. Security Base - -- .env — всегда в .gitignore -- JWT: алгоритм HS256, expire = 60 минут, refresh = 30 дней -- Пароли: bcrypt через passlib -- Pydantic валидация на всех входах -- RBAC: роли user, dmin, owner - ---- - -## 10. Logging Standards - -**Формат строки лога:** -` -[ISO8601] [LEVEL] [component] message key=val -2026-05-10T14:30:00.000Z INFO [auth] User logged in user_id=abc -` - -**Уровни по слоям:** - -| Слой | DEBUG | INFO | WARNING | ERROR | -|------|-------|------|---------|-------| -| API | Параметры | Request | — | 5xx | -| Service | Входные | Операция | Превышен лимит | Ошибка БД | -| Integration | Raw ответ | Успех | Timeout | Внешний API | - -**Запрещено:** f-строки в logger. Только %s (lazy evaluation). -**Разрешено:** f-строки в logging_service.log(). - ---- - -## 11. Sensitive Data Policy - -**Никогда не логировать:** -- Пароли (даже хэш) -- JWT токены -- API keys и секреты -- Email в открытом виде (логировать user_id) - -**Маскировать в логах:** -- Email: u***@mail.ru -- IP: 195.208.*.* - ---- - -## 12. Third-party Call Fallback Pattern - -` -1. Попытка (timeout: 10s) -2. Успех → return data -3. Таймаут → retry 1 (через 2s) -4. Таймаут → retry 2 (через 5s) -5. 4xx → WARNING, return None/fallback -6. 5xx → ERROR, retry → если снова 5xx → return None/fallback -7. Все retry исчерпаны → CRITICAL в SystemLog, возврат fallback -` - ---- - -## 13. Performance Budgets - -| Метрика | Лимит (p95) | -|---------|-------------| -| API response (без GPT) | < 500ms | -| DB query (одиночный) | < 100ms | -| DB query (агрегатный) | < 300ms | -| GPT call | < 5s (иначе fallback) | -| WebUI page load | < 2s | - ---- - -## 14. Data Retention Policy - -| Данные | Срок хранения | -|--------|---------------| -| SystemLog | 90 дней | -| SecurityEvent | 1 год | -| Notification | 30 дней | -| PaymentTransaction | 5 лет | -| User data | До удаления + 30 дней | -| Session (JWT) | 24 часа | - ---- - -## 15. Dependency Management - -- **patch**: в любой момент (bugfix, security) -- **minor**: не чаще 1 раза в спринт -- **major**: только с полным регрессом - ---- - -## 16. Async/Sync Decision Matrix - -| Сценарий | Механизм | -|----------|----------| -| GET-запросы, CRUD | sync (await) | -| Отправка email | Celery async | -| GPT вызовы | Celery async | -| Бэкапы | Celery async | -| WebSocket / SSE | Не используется | - ---- - -## 17. Architecture Decision Records (ADR) - -Любое значимое архитектурное решение фиксируется в docs/adr/NNN-title.md. - -Формат: -`markdown -# ADR-001: Название решения - -Статус: принято -Контекст: описание проблемы -Решение: что выбрано -Последствия: плюсы и минусы -` - ---- - -## 18. Tooling - -| Инструмент | Назначение | -|------------|------------| -| ruff | Линтер (E, F, W, I, N, UP) | -| ruff format | Форматтер (line-length=88) | -| mypy | Type checker | -| pytest | Тесты (asyncio_mode=auto) | -| pre-commit | Хуки (ruff, ruff-format, trailing-whitespace) | - ---- - -## 19. AI Agents (11 ролей) - -| Роль | Провайдер | Описание | -|------|-----------|----------| -| Координатор | Yandex GPT | Управляет диалогом, обобщает результаты | -| Организатор задач | Yandex GPT | Разбивает идею на шаги | -| Бизнес-аналитик | Yandex GPT | Оценивает ROI, сроки, аудиторию | -| Юрист | GigaChat | Проверяет соответствие законам РФ | -| Финансовый консультант | Yandex GPT | Составляет смету, прогноз доходов | -| Архитектор решений | Yandex GPT | Проектирует архитектуру | -| Тестировщик | Yandex GPT | Составляет тест-кейсы | -| UI-дизайнер | Yandex GPT | Прорабатывает интерфейс | -| SMM-специалист | Yandex GPT | Планирует продвижение | -| Лайф-коуч | Yandex GPT | Помогает ставить цели | -| Эксперт по доступности | Yandex GPT | Проверяет инклюзивность | - -**Промпты хранятся в:** docs/agent_prompts.yaml (TDC) - ---- - -## 20. System Agents (11 агентов) - -| Агент | Назначение | -|-------|-----------| -| DocAgent | Документация, комментарии, Runbook | -| AuditAgent | Соблюдение правил, прогресс проекта | -| SecurityAgent | Безопасность, уязвимости, 152-ФЗ | -| SpecAgent | Спецификации, версионирование **проекта**, CHANGELOG | -| ObserverAgent | Наблюдение за пользователями, генерация идей | -| QATesterAgent | Функциональное тестирование, временные аккаунты | -| FixAgent | Исправление багов, анализ логов | -| UITestAgent | Визуальное тестирование | -| RolloutAgent | Постепенное развёртывание (3→1%→5%→15%→100%) | -| EvolutionAgent | Саморазвитие и **версионирование агентов** | -| BacklogAgent | Управление отложенными задачами | - -**Триггеры запуска:** -- Автоматически: pre-commit, push, daily cron -- Вручную: кнопка в админ-панели - ---- - -## 21. Design System - -Единый источник истины: docs/design-system/tokens.json - -| Файл | Назначение | -|------|------------| -| tokens.json | Единый источник (JSON) | -| tokens.yaml | YAML версия для документации | -| generators/*.py | Генераторы для платформ (CSS, Swift, Kotlin) | - -**Темы:** system (auto), dark, light -**Форматы:** CSS Variables, Swift, Kotlin XML - ---- - -## 22. Testing Standards - -- Модульные тесты — в ests/unit/ -- Интеграционные тесты — в ests/integration/ -- E2E сценарии — в docs/specs/e2e/ -- Минимум: 1 smoke-тест на endpoint -- Фикстуры: conftest.py в корне ests/ - ---- - -## 23. Migration Policy - -- Alembic, async, одна миграция на одно изменение -- Обратно совместимы (без breaking changes) -- Название: {revision}_{action}_{table}.py - ---- - -## 24. API Version Lifecycle - -` -Текущая: /api/v1/* — стабильная -Deprecation: 3 месяца после выхода новой версии -Отключение: 410 Gone -` - ---- - -## 25. Module Public API Convention - -__init__.py содержит ТОЛЬКО публичный API модуля: -`python -from app.models.user import User -__all__ = ["User", ...] -` - ---- - -## 26. Project Glossary - -Глоссарий: docs/blocks/GLOSSARY.md - -| Термин | Значение | -|--------|----------| -| Idea | Основная сущность проекта (записанная пользователем) | -| Agent | ИИ-агент для анализа идей (11 ролей) | -| System Agent | Автоматический агент для поддержки проекта (11 штук) | -| Backlog | Система отложенных задач/идей | -| Rollout | Постепенное развёртывание | -| Design Tokens | Единый источник стилей | - ---- - -## 27. OAuth & Auth - -**Провайдеры:** -- Email + пароль (классика) -- Яндекс OAuth -- Google OAuth -- Apple OAuth (отложено) - -**Схема:** Один пользователь = один провайдер (нельзя привязать Google если уже есть Яндекс) - ---- - -## 28. Car Integration (Roadmap) - -ГУ автомобиля — изучить и добавить в будущем: -- Android Auto / Apple CarPlay -- Bluetooth HID -- Подключение кнопок руля - ---- - -*Документ создан: 2026-05-10* -*Обновлён системными агентами автоматически* diff --git a/old/PLAN.md b/old/PLAN.md deleted file mode 100644 index f0964a8..0000000 --- a/old/PLAN.md +++ /dev/null @@ -1,312 +0,0 @@ -# VoIdea — План реализации - -**Версия:** 1.0.0 -**Дата:** 2026-05-10 -**Статус:** Черновик - ---- - -## Содержание - -1. [Обзор проекта](#1-обзор-проекта) -2. [Фазы разработки](#2-фазы-разработки) -3. [Детальный план по блокам](#3-детальный-план-по-блокам) -4. [Агенты](#4-агенты) -5. [Инфраструктура](#5-инфраструктура) -6. [Приоритеты](#6-приоритеты) - ---- - -## 1. Обзор проекта - -### Описание - -**VoIdea** — гибридное приложение (мобильное + веб) для фиксации и проработки идей с помощью группового ИИ-анализа. - -### Ключевые требования - -- Работа в условиях нестабильного интернета или оффлайн -- Максимальная защита данных пользователя -- Гибкий выбор ИИ-моделей (локальных и облачных) -- Синхронизация данных между устройствами через VPS - -### Технологический стек - -| Компонент | Технология | -|-----------|------------| -| Backend | Python FastAPI | -| Database | PostgreSQL | -| Cache/Queue | Redis + Celery | -| Frontend | React + TypeScript + Tailwind CSS (PWA) | -| Mobile | iOS/Android (параллельно с вебом) | -| Server | VPS Ubuntu, Port 8020 | - ---- - -## 2. Фазы разработки - -` -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 1: FOUNDATION ║ -║ (2-3 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 00-rules.md — Адаптация правил VoIdea ║ -║ ✓ 01-core — Конфиги, модели, base классы ║ -║ ✓ 02-data — PostgreSQL миграции, модели БД ║ -║ ✓ 08-devops — CI/CD, контейнеры ║ -║ ✓ PROJECT_GUIDE.md — Корневой файл ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 2: API & AUTH ║ -║ (2-3 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 03-api — Endpoints (users, ideas, agents) ║ -║ ✓ OAuth — Яндекс, Google ║ -║ ✓ JWT — Аутентификация ║ -║ ✓ 05-services — Бизнес-логика ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 3: AI AGENTS ║ -║ (3-4 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 05-bis-ai-agents — Спецификация агентов ║ -║ ✓ app/agents/ — Код 11 агентов ║ -║ ✓ Prompt templates — agent_prompts.yaml ║ -║ ✓ Fallback chain — Yandex → GigaChat → error ║ -║ ✓ SpecAgent, EvolutionAgent ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 4: FRONTEND ║ -║ (3-4 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 04-webui — React/Tailwind приложение ║ -║ ✓ Design system — 3 темы (system/dark/light) ║ -║ ✓ PWA — Service Worker, оффлайн ║ -║ ✓ Hotkeys — Настраиваемые горячие клавиши ║ -║ ✓ Admin panel — Управление, логи, статусы агентов ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 5: INTEGRATION ║ -║ (2-3 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 05-ter-voice — Web Speech API, Whisper ║ -║ ✓ 05-quater-sync — Синхронизация устройств ║ -║ ✓ 06-security — Шифрование, SecurityAgent ║ -║ ✓ Backlog заметки — rate limiting (позже) ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 6: TESTING & AGENTS ║ -║ (2-3 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ 07-testing — Методология тестирования ║ -║ ✓ QATesterAgent — Функциональное тестирование ║ -║ ✓ FixAgent — Исправление багов ║ -║ ✓ UITestAgent — Визуальное тестирование ║ -║ ✓ ObserverAgent — Наблюдение за пользователями ║ -║ ✓ RolloutAgent — Постепенное развёртывание ║ -║ ✓ AuditAgent, BacklogAgent, DocAgent, SecurityAgent ║ -╚═══════════════════════════════════════════════════════════════════╝ - ↓ -╔═══════════════════════════════════════════════════════════════════╗ -║ ФАЗА 7: DEPLOYMENT ║ -║ (1-2 недели) ║ -╠═══════════════════════════════════════════════════════════════════╣ -║ ✓ Установка на VPS: Ubuntu + PostgreSQL + Redis + Nginx ║ -║ ✓ SSL (Let's Encrypt) — после получения домена ║ -║ ✓ Постепенное развёртывание: 3→1%→5%→15%→100% ║ -║ ✓ Runbook, мониторинг ║ -╚═══════════════════════════════════════════════════════════════════╝ -` - ---- - -## 3. Детальный план по блокам - -### Block 0: Rules & Conventions - -- [x] Адаптация под VoIdea -- [ ] Интеграция с AI-агентами -- [ ] Автоматическое обновление при изменениях - -### Block 1: Core - -- [ ] pp/core/config.py — Конфигурация из переменных окружения -- [ ] pp/core/base.py — Базовые классы (BaseModel, BaseService) -- [ ] pp/core/exceptions.py — Исключения приложения -- [ ] pp/core/dependencies.py — FastAPI dependencies -- [ ] pp/core/security.py — JWT, password hashing - -### Block 2: Data - -- [ ] pp/models/user.py — Модель пользователя -- [ ] pp/models/idea.py — Модель идеи -- [ ] pp/models/agent.py — Настройки агентов -- [ ] pp/models/backlog.py — Отложенные задачи -- [ ] pp/models/log.py — Логи -- [ ] Миграции Alembic - -### Block 3: API - -- [ ] /api/v1/auth/ — Авторизация, OAuth -- [ ] /api/v1/users/ — CRUD пользователей -- [ ] /api/v1/ideas/ — CRUD идей -- [ ] /api/v1/agents/ — Управление агентами -- [ ] /api/v1/sync/ — Синхронизация -- [ ] /api/v1/admin/ — Админ-панель - -### Block 4: WebUI - -- [ ] React приложение (Vite) -- [ ] Tailwind CSS + дизайн-система -- [ ] Компоненты: IdeaCard, AgentPanel, SettingsPage, AdminPanel -- [ ] PWA: Service Worker, IndexedDB -- [ ] Hotkeys система -- [ ] Темы: system/dark/light - -### Block 5: Services - -- [ ] pp/services/idea_service.py — Логика идей -- [ ] pp/services/agent_service.py — Работа с ИИ-агентами -- [ ] pp/services/sync_service.py — Синхронизация -- [ ] pp/services/notification_service.py — Email уведомления -- [ ] pp/services/logging_service.py — Логирование - -### Block 5-bis: AI Agents - -- [ ] Унифицированный интерфейс pp/integrations/ai/base.py -- [ ] Yandex GPT интеграция -- [ ] GigaChat интеграция -- [ ] Fallback chain -- [ ] 11 ролей с промптами - -### Block 5-ter: Voice - -- [ ] Web Speech API integration -- [ ] Whisper API (опционально) -- [ ] Оффлайн режим (Vosk — roadmap) - -### Block 5-quater: Sync - -- [ ] Кросс-платформенная синхронизация -- [ ] Brotli сжатие -- [ ] Разрешение конфликтов -- [ ] Очередь задач (Celery) - -### Block 6: Security - -- [ ] AES-256 шифрование (roadmap) -- [ ] SecurityAgent -- [ ] Rate limiting -- [ ] WAF правила - -### Block 7: Testing - -- [ ] Методология -- [ ] QATesterAgent -- [ ] FixAgent -- [ ] UITestAgent - -### Block 8: DevOps - -- [ ] Docker (для VPS) -- [ ] CI/CD (GitHub Actions) -- [ ] Мониторинг -- [ ] Бэкапы - ---- - -## 4. Агенты - -### Системные агенты (11) - -| Агент | Файл | Статус | -|-------|------|--------| -| DocAgent | pp/agents/doc_agent.py | Roadmap | -| AuditAgent | pp/agents/audit_agent.py | Roadmap | -| SecurityAgent | pp/agents/security_agent.py | Roadmap | -| SpecAgent | pp/agents/spec_agent.py | Roadmap | -| ObserverAgent | pp/agents/observer_agent.py | Roadmap | -| QATesterAgent | pp/agents/qa_tester_agent.py | Roadmap | -| FixAgent | pp/agents/fix_agent.py | Roadmap | -| UITestAgent | pp/agents/ui_test_agent.py | Roadmap | -| RolloutAgent | pp/agents/rollout_agent.py | Roadmap | -| EvolutionAgent | pp/agents/evolution_agent.py | Roadmap | -| BacklogAgent | pp/agents/backlog_agent.py | Roadmap | - -### ИИ-агенты (11 ролей) - -| Роль | Промпт | Статус | -|------|--------|--------| -| Координатор | ✓ | | -| Организатор задач | ✓ | | -| Бизнес-аналитик | ✓ | | -| Юрист | ✓ | | -| Финансовый консультант | ✓ | | -| Архитектор решений | ✓ | | -| Тестировщик | ✓ | | -| UI-дизайнер | ✓ | | -| SMM-специалист | ✓ | | -| Лайф-коуч | ✓ | | -| Эксперт по доступности | ✓ | | - ---- - -## 5. Инфраструктура - -### Локальная разработка (Windows) - -` -Python 3.12+ -PostgreSQL (установлен локально) -Redis (Windows compatible) -` - -### VPS (Ubuntu) - -` -Server: 0.0.0.0:8020 (временно IP:8020) -PostgreSQL: localhost:5432 -Redis: localhost:6379 -Nginx: порт 80/443 (после домена) -SSL: Let's Encrypt (после домена) -` - ---- - -## 6. Приоритеты - -### Критический путь (MVP) - -1. Block 0 (Rules) — завершён -2. Block 1 (Core) — начать сразу -3. Block 2 (Data) — модели БД -4. Block 3 (API) — базовые endpoints -5. Block 5 (Services + AI) — ядро функционала -6. Block 4 (WebUI) — интерфейс - -### Roadmap (после MVP) - -- Мобильные приложения (iOS/Android) -- Car integration (ГУ автомобиля) -- Локальные ИИ-модели -- Расширенная аналитика - ---- - -## Чеклист начала работ - -- [ ] Установить PostgreSQL локально -- [ ] Создать виртуальное окружение Python -- [ ] Настроить requirements.txt -- [ ] Запустить Block 1: Core -- [ ] Проверить работу API - ---- - -*Документ создан: 2026-05-10* -*Обновляется системными агентами автоматически* diff --git a/old/docker-compose.yml b/old/docker-compose.yml deleted file mode 100644 index 6ad1e1b..0000000 --- a/old/docker-compose.yml +++ /dev/null @@ -1,41 +0,0 @@ -services: - app: - build: . - ports: - - "8020:8020" - env_file: .env - depends_on: - db: - condition: service_healthy - redis: - condition: service_started - volumes: - - ./logs:/app/logs - - worker: - build: . - command: celery -A app.tasks worker -l info - env_file: .env - depends_on: - - db - - redis - - db: - image: postgres:14 - environment: - POSTGRES_DB: voidea - POSTGRES_USER: voidea - POSTGRES_PASSWORD: ${DB_PASS} - volumes: - - pgdata:/var/lib/postgresql/data - healthcheck: - test: ["CMD-SHELL", "pg_isready -U voidea"] - interval: 5s - timeout: 5s - retries: 5 - - redis: - image: redis:7 - -volumes: - pgdata: diff --git a/old/full.md b/old/full.md deleted file mode 100644 index 81cab74..0000000 --- a/old/full.md +++ /dev/null @@ -1,300 +0,0 @@ -**Роль:** ты — старший архитектор ПО и продуктовый аналитик с опытом в создании гибридных ИИ-систем и кросс-платформенных приложений. Твоя задача — подготовить детальный план реализации приложения «Голос Идеи» (торговое название Voidea) с учётом требований безопасности, мультиплатформенности и отказоустойчивости. Проект будет реализован в OpenCode. - -**Цель:** создать гибридное приложение (мобильное + веб) для фиксации и проработки идей с помощью группового ИИ-анализа. Приложение должно: - -- работать в условиях нестабильного интернета или его полного отсутствия; - -- обеспечивать максимальную защиту данных пользователя; - -- предоставлять гибкий выбор ИИ-моделей (локальных и облачных); - -- синхронизировать данные между устройствами через VPS с доменом voidea.ru. - - -#### Ключевые требования - -1. **Гибридная архитектура:** приоритет локальных вычислений с возможностью подключения платных облачных моделей. - -2. **Отказоустойчивость:** автоматическое переключение на резервные модели при сбоях, работа в оффлайн-режиме. - -3. **Безопасность:** шифрование AES-256, минимизация данных, контроль доступа. - -4. **Мультиплатформенность:** поддержка iOS, Android, веб-версии (PWA). - -5. **Гибкость настройки:** пользователь может выбирать модели для каждой роли ИИ-агента. - -6. **Централизованная синхронизация:** использование VPS с доменом voidea.ru для хранения зашифрованных данных и управления API. - - -#### Функциональные блоки для реализации - -**1. Модуль голосового ввода** - -- распознавание речи в реальном времени (онлайн и оффлайн); - -- поддержка локальных моделей распознавания; - -- сжатие аудио перед отправкой в облако (опционально). - - -**2. Модуль управления ИИ-агентами** - -- унифицированный интерфейс для всех моделей (локальных и облачных); - -- цепочка приоритетов для выбора модели (основная платная → резервная платная → локальная по умолчанию → минимальная локальная); - -- механизм автоматического переключения при сбоях; - -- очередь отложенных задач (до 100 запросов, срок хранения — 7 дней). - - -**3. Модуль синхронизации** - -- кросс-платформенная синхронизация (iOS, Android, веб); - -- алгоритм разрешения конфликтов (сохранение обеих версий при одновременном редактировании); - -- выборочная синхронизация (пользователь может отключить передачу аудиозаписей); - -- сжатие данных перед отправкой (алгоритм Brotli). - - -**4. Модуль безопасности** - -- шифрование AES-256 на устройстве и в облаке; - -- TLS 1.3 при передаче данных; - -- двухфакторная аутентификация (2FA) для доступа к API-ключам; - -- биометрическая аутентификация (Face ID/Touch ID); - -- политика хранения данных (голосовые записи — 1/7/30 дней по выбору пользователя). - - -**5. Пользовательский интерфейс** - -- **мобильные приложения** (iOS/Android): основной интерфейс для голосового ввода, работы в офлайн и с локальными ИИ-моделями; - -- **веб-версия** (PWA): просмотр и редактирование заметок на ПК, управление настройками, синхронизация; - -- раздел **«Настройки ИИ-агентов»**: таблица ролей с выпадающими списками моделей, индикатор статуса подключения, кнопка «Тест модели», переключатель «Автовыбор лучшей модели»; - -- раздел **«Очередь запросов»**: просмотр и управление отложенными задачами; - -- панель уведомлений с настройками каналов (push, email, Telegram) и режимом «тихих часов». - - -#### Роли ИИ-агентов и их промпты - -|Роль|Задача|Пример промта для ИИ| -|---|---|---| -|**Координатор**|Управляет диалогом, распределяет задачи, обобщает результаты|«Ты — координатор. Запусти обсуждение идеи с агентами, следи за логикой, обобщи результаты в структурированный текст. Отвечай кратко»| -|**Организатор задач**|Разбивает идею на шаги, выстраивает план реализации|«Разбей идею на 5–7 последовательных шагов. Для каждого укажи срок (часы/дни) и ответственного (если применимо)»| -|**Бизнес-аналитик**|Оценивает идею с точки зрения бизнес-показателей|«Оцени идею по критериям: ROI (%), срок окупаемости (месяцы), целевая аудитория (тыс. чел.), конкурентные преимущества. Кратко обоснуй»| -|**Юрист**|Проверяет на соответствие законам РФ, выявляет риски|«Проанализируй идею на соответствие законодательству РФ (44-ФЗ, 152-ФЗ и т.д.). Укажи потенциальные риски и способы их минимизации»| -|**Финансовый консультант**|Рассчитывает бюджет, прогнозирует доходы|«Составь смету реализации идеи: разработка, маркетинг, поддержка. Прогнозируй доход за год. Укажи точку безубыточности»| -|**Архитектор решений**|Проектирует архитектуру системы|«Предложи 2 варианта архитектуры для реализации идеи (монолит/микросервисы). Укажи технологии (БД, бэкенд, фронтенд). Оцени сложность»| -|**Тестировщик**|Предлагает сценарии тестирования|«Составь 5–10 тест-кейсов для проверки идеи. Укажи позитивные и негативные сценарии. Предложи инструменты автоматизации»| -|**UI-дизайнер**|Прорабатывает внешний вид интерфейса|«Опиши 2 варианта дизайна главного экрана для идеи. Укажи цвета, шрифты, расположение элементов. Обоснуй выбор с точки зрения UX»| -|**SMM-специалист**|Планирует продвижение в соцсетях|«Составь контент-план на месяц для продвижения идеи. Укажи платформы (ВК, Telegram и т.п.), форматы постов, хештеги, частоту публикаций»| -|**Лайф-коуч**|Помогает ставить личные цели|«Помоги сформулировать цель по SMART на основе идеи. Разбей на квартальные этапы. Предложи метрики прогресса»| -|**Эксперт по доступности**|Проверяет решения на инклюзивность|«Проанализируй идею с точки зрения доступности для людей с ОВЗ (слабовидящие, глухие и т.д.). Предложи доработки для соответствия WCAG 2.1»| - -#### ИИ-модели для использования - -**Бесплатные (локальные или с открытым API):** Llama 3, Mistral 7B, CodeLlama, OpenHermes 2.5, Phi-3, Yandex GPT (бесплатный тариф), Google Gemma, Qwen 2, DeepSeek, GigaChat. - -**Платные (требуют API-ключа):** OpenAI GPT-4 Turbo, Anthropic Claude 3 Opus, Google Gemini Pro 1.5, Microsoft Copilot, Cohere Command R+, Perplexity AI, Yandex GPT Pro. - -#### Архитектура системы - -``` -Пользовательские устройства (iOS, Android, браузер) - ↓ (HTTPS через TLS 1.3) -Домен voidea.ru (DNS-запись указывает на VPS) - ↓ -VPS-сервер (бэкенд + API) - ├── База данных (PostgreSQL/MongoDB) — зашифрованные заметки, настройки - ├── API-шлюз — обработка запросов от клиентов - ├── Модуль синхронизации — разрешение конфликтов, очередь задач - └── Веб-интерфейс (React/Vue) — PWA для ПК - └── Статические файлы (HTML, CSS, JS) -``` - -**Компоненты VPS:** - -- бэкенд-сервер (Node.js, Python FastAPI, Go); - -- база данных (PostgreSQL с шифрованием); - -- веб-сервер (Nginx/Apache) для статических файлов веб-версии; - -- SSL-сертификат (Let’s Encrypt) для HTTPS; - -- система резервного копирования (ежедневно в облако); - -- мониторинг (Uptime Robot, Prometheus). - - ---- - -### Общий план пошаговой реализации - -**Этап 1. Исследование и проектирование** - -- анализ аналогов и конкурентов; - -- проектирование архитектуры системы; - -- выбор стека технологий; - -- разработка UI/UX-прототипа; - -- составление детального ТЗ. - - -**Этап 2. Разработка MVP** - -- реализация модуля голосового ввода (с поддержкой оффлайн); - -- создание базового модуля управления ИИ-агентами (поддержка 2–3 бесплатных моделей); - -- разработка модуля синхронизации (базовая версия); - -- внедрение основных функций безопасности (шифрование, авторизация); - -- сборка прототипа интерфейса для мобильных платформ и веб-версии. - - -**Этап 3. Расширение функционала** - -- добавление всех ролей ИИ-агентов; - -- интеграция платных моделей через API; - -- реализация механизма резервирования и очереди отложенных задач; - -- доработка модуля синхронизации (алгоритм разрешения конфликтов); - -- улучшение интерфейса (настройки ИИ, очередь запросов, уведомления). - - -**Этап 4. Тестирование и оптимизация** - -- юнит-тесты для каждого модуля; - -- нагрузочное тестирование (проверка работы при 100+ одновременных пользователей); - -- тестирование сценариев отказа (отключение интернета, сбои API); - -- оптимизация производительности (квантование моделей, сжатие данных); - -- сбор обратной связи от тестовой группы. - - -### Этап 5. Запуск и поддержка (постоянно) - - -**1. Релиз бета-версии (ограниченный круг пользователей)** -* запуск закрытой бета-версии для тестовой группы (50–100 первых пользователей); -* настройка системы сбора обратной связи (встроенные формы, чат поддержки); -* развёртывание мониторинга ошибок и производительности (Sentry, Prometheus + Grafana); -* подготовка документации для бета-тестеров: руководство пользователя, FAQ, контакты поддержки; -* настройка A/B-тестирования ключевых функций (например, сравнение разных алгоритмов синхронизации). - -**2. Мониторинг стабильности и производительности** -* отслеживание ключевых метрик: - * время ответа сервера (целевое: < 500 мс); - * доступность API (целевое: 99,9 % uptime); - * скорость распознавания речи (онлайн/офлайн); - * время обработки запросов ИИ-агентами; - * потребление памяти и CPU на мобильных устройствах; -* мониторинг ошибок в реальном времени (логирование без персональных данных); -* анализ нагрузки на VPS (CPU, RAM, дисковое пространство, трафик); -* автоматическое оповещение команды при превышении пороговых значений (например, задержка ответа > 2 с). - -**3. Сбор и анализ обратной связи** -* проведение опросов пользователей (NPS, оценка удобства интерфейса); -* анализ сценариев использования (какие функции востребованы, какие — нет); -* сбор предложений по улучшению функционала; -* выявление «узких мест» (сложные настройки, непонятные уведомления); -* создание публичного roadmap с приоритетами на основе отзывов. - -**4. Итеративные обновления** -* выпуск патчей для исправления критических ошибок (в течение 24 часов); -* регулярные обновления (каждые 2–4 недели): - * добавление новых ИИ-моделей; - * улучшение алгоритмов синхронизации; - * оптимизация производительности; - * расширение списка ролей ИИ-агентов; -* внедрение фич из roadmap (по приоритету). - -**5. Техническая поддержка** -* организация каналов поддержки: - * чат в приложении; - * Telegram-бот для быстрых вопросов; - * email для сложных запросов; -* база знаний (FAQ, видеоуроки, инструкции); -* SLA (соглашение об уровне обслуживания): - * ответ на запрос — в течение 4 часов; - * решение критической ошибки — в течение 24 часов. - -**6. Безопасность и соответствие нормам** -* регулярный аудит безопасности (ежеквартально): - * проверка SSL-сертификатов; - * тестирование на уязвимости (OWASP Top 10); - * анализ логов на подозрительную активность; -* обновление политик конфиденциальности и пользовательского соглашения; -* обеспечение соответствия 152-ФЗ (защита персональных данных в РФ); -* резервное копирование данных (ежедневно, хранение копий 30 дней). - -**7. Масштабирование инфраструктуры** -* мониторинг ресурсов VPS: - * при достижении 80 % загрузки — апгрейд сервера или переход на кластер; -* оптимизация базы данных: - * индексация часто запрашиваемых полей; - * архивирование старых заметок (старше 1 года); -* кэширование «горячих» данных (Redis/Memcached); -* балансировка нагрузки между серверами (при росте аудитории). - -**8. Маркетинг и рост аудитории** -* запуск открытой бета-версии (регистрация через voidea.ru); -* продвижение в соцсетях (Telegram, VK, YouTube): - * кейсы пользователей («Как Voidea помог реализовать идею»); - * обзоры функционала; -* партнёрства с сообществами разработчиков, стартапов, фрилансеров; -* реферальная программа (бонусы за приглашение друзей); -* участие в профильных конференциях и хакатонах. - -**9. Монетизация (поэтапное внедрение)** -* freemium-модель: - * базовый функционал — бесплатно (локальные модели, ограниченная синхронизация); - * премиум-тариф — доступ к платным ИИ-моделям, расширенная синхронизация, приоритетная поддержка; -* корпоративные тарифы (для команд): - * совместный доступ к заметкам; - * админ-панель управления пользователями; - * кастомные роли ИИ-агентов. - -**10. Долгосрочное развитие** -* интеграция с внешними сервисами: - * Trello, Notion, Jira (экспорт задач); - * Google Calendar (напоминания); - * Miro (визуализация идей); -* развитие голосового интерфейса: - * поддержка многоязычного ввода; - * распознавание акцентов; -* исследование новых ИИ-технологий (например, мультимодальные модели); -* локализация приложения на другие языки (английский, испанский и т.д.). - ---- - -### Ключевые показатели успеха (KPI) для этапа запуска и поддержки - -* **активные пользователи:** 1 000+ MAU через 3 месяца после открытого релиза; -* **удержание:** 40 % пользователей возвращаются в приложение 2+ раза в неделю; -* **оценка в магазинах:** ≥ 4,5 звезды в App Store и Google Play; -* **NPS:** ≥ 50 (индекс лояльности); -* **время решения проблемы:** среднее время ответа поддержки ≤ 4 часов; -* **стабильность:** uptime API ≥ 99,9 %; -* **безопасность:** отсутствие утечек данных за период эксплуатации. \ No newline at end of file diff --git a/webui/public/version.json b/webui/public/version.json index c82233f..3081b92 100644 Binary files a/webui/public/version.json and b/webui/public/version.json differ diff --git a/webui/src/api/admin.ts b/webui/src/api/admin.ts index 4c72ea4..0e637f7 100644 --- a/webui/src/api/admin.ts +++ b/webui/src/api/admin.ts @@ -29,12 +29,14 @@ export interface AgentInfo { description: string; is_enabled: boolean; version: string; + config: string | null; last_run_at: string | null; } export interface AgentUpdate { description?: string; is_enabled?: boolean; + config?: string; } export interface LogEntry { @@ -380,3 +382,28 @@ export function adminToggleBotCommand(id: string, enabled: boolean): Promise { return apiFetch("/admin/bot/sync", { method: "POST" }); } + +// ── Agent Execution ── + +export interface AgentRunResult { + success: boolean; + message: string; + data: Record; + errors: string[]; + duration_ms: number; + timestamp: string; +} + +export function adminRunAgent(name: string, context?: Record): Promise { + return apiFetch(`/admin/agents/${encodeURIComponent(name)}/run`, { + method: "POST", + body: JSON.stringify({ context }), + }); +} + +export function adminRunAllAgents(context?: Record): Promise> { + return apiFetch("/admin/agents/run-all", { + method: "POST", + body: JSON.stringify({ context }), + }); +} diff --git a/webui/src/api/calendar.ts b/webui/src/api/calendar.ts new file mode 100644 index 0000000..9ee736f --- /dev/null +++ b/webui/src/api/calendar.ts @@ -0,0 +1,20 @@ +import { apiFetch } from "./client"; + +export function addIdeaToCalendar(ideaId: string): Promise<{ success: boolean; message: string }> { + return apiFetch(`/ideas/${ideaId}/calendar`, { method: "POST" }); +} + +export function getCalendarStatus(): Promise<{ + connected: boolean; + provider: string | null; +}> { + return apiFetch("/calendar/status"); +} + +export function disconnectCalendar(): Promise<{ success: boolean }> { + return apiFetch("/calendar/disconnect", { method: "POST" }); +} + +export function listCalendarProviders(): Promise<{ providers: string[] }> { + return apiFetch("/calendar/providers"); +} diff --git a/webui/src/api/collaboration.ts b/webui/src/api/collaboration.ts new file mode 100644 index 0000000..a4ed269 --- /dev/null +++ b/webui/src/api/collaboration.ts @@ -0,0 +1,101 @@ +import { apiFetch } from "./client"; + +// ── Voting ── + +export interface VoteCount { + up: number; + down: number; + user_vote: string | null; +} + +export function toggleVote(ideaId: string, vote: "up" | "down"): Promise { + return apiFetch(`/ideas/${ideaId}/vote`, { + method: "POST", + body: JSON.stringify({ vote }), + }); +} + +export function getVotes(ideaId: string): Promise { + return apiFetch(`/ideas/${ideaId}/votes`); +} + +// ── Comments ── + +export interface Comment { + id: string; + idea_id: string; + user_id: string; + content: string; + parent_id: string | null; + display_name: string; + avatar_url: string | null; + created_at: string; + updated_at: string; + replies: Comment[]; +} + +export function listComments(ideaId: string): Promise { + return apiFetch(`/ideas/${ideaId}/comments`); +} + +export function createComment( + ideaId: string, + content: string, + parentId?: string, +): Promise { + return apiFetch(`/ideas/${ideaId}/comments`, { + method: "POST", + body: JSON.stringify({ content, parent_id: parentId }), + }); +} + +export function deleteComment(ideaId: string, commentId: string): Promise { + return apiFetch(`/ideas/${ideaId}/comments/${commentId}`, { + method: "DELETE", + }); +} + +// ── Activity ── + +export interface Activity { + id: string; + idea_id: string; + user_id: string | null; + action: string; + details: Record | null; + display_name: string; + created_at: string; +} + +export function listActivity(ideaId: string, limit = 50): Promise { + return apiFetch(`/ideas/${ideaId}/activity?limit=${limit}`); +} + +// ── Notifications ── + +export interface Notification { + id: string; + type: string; + title: string; + body: string; + link: string | null; + is_read: boolean; + created_at: string; +} + +export function listNotifications(unreadOnly = false): Promise { + const params = unreadOnly ? "?unread_only=true" : ""; + return apiFetch(`/notifications${params}`); +} + +export function getUnreadCount(): Promise<{ count: number }> { + return apiFetch("/notifications/unread-count"); +} + +export function markNotificationRead(id: string): Promise { + return apiFetch(`/notifications/${id}/read`, { method: "POST" }); +} + +export function markAllNotificationsRead(): Promise<{ count: number }> { + return apiFetch("/notifications/read-all", { method: "POST" }); +} diff --git a/webui/src/api/ideas.ts b/webui/src/api/ideas.ts index 72f2808..5798abb 100644 --- a/webui/src/api/ideas.ts +++ b/webui/src/api/ideas.ts @@ -8,10 +8,22 @@ export interface Idea { status: string; tags: string[] | null; is_public: boolean; + funnel_status: string | null; created_at: string; updated_at: string; } +export type FunnelStatus = "raw" | "validated" | "backlog" | "in_progress" | "launched" | "retrospective"; + +export const FUNNEL_LABELS: Record = { + raw: "Сырая", + validated: "Подтверждённая", + backlog: "Бэклог", + in_progress: "В работе", + launched: "Запущена", + retrospective: "Ретроспектива", +}; + export interface IdeaCreatePayload { title: string; content: string; @@ -84,3 +96,13 @@ export function getAnalysisResults( const params = role ? `?role=${role}` : ""; return apiFetch(`/ideas/${id}/analysis${params}`); } + +export function updateIdeaFunnel( + id: string, + targetStatus: string, +): Promise { + return apiFetch(`/ideas/${id}/funnel`, { + method: "POST", + body: JSON.stringify({ target_status: targetStatus }), + }); +} diff --git a/webui/src/api/workspaces.ts b/webui/src/api/workspaces.ts new file mode 100644 index 0000000..ca30071 --- /dev/null +++ b/webui/src/api/workspaces.ts @@ -0,0 +1,80 @@ +import { apiFetch } from "./client"; + +export interface Workspace { + id: string; + name: string; + type: "personal" | "team"; + owner_id: string; + description: string | null; + member_count: number; + created_at: string; + updated_at: string; +} + +export interface WorkspaceCreatePayload { + name: string; + type?: string; +} + +export interface WorkspaceUpdatePayload { + name?: string; + description?: string; +} + +export interface Member { + id: string; + user_id: string; + workspace_id: string; + role: string; + email: string; + display_name: string; + joined_at: string; +} + +export interface AddMemberPayload { + user_id: string; + role?: string; +} + +export function listWorkspaces(): Promise { + return apiFetch("/workspaces"); +} + +export function getWorkspace(id: string): Promise { + return apiFetch(`/workspaces/${id}`); +} + +export function createWorkspace(data: WorkspaceCreatePayload): Promise { + return apiFetch("/workspaces", { + method: "POST", + body: JSON.stringify(data), + }); +} + +export function updateWorkspace(id: string, data: WorkspaceUpdatePayload): Promise { + return apiFetch(`/workspaces/${id}`, { + method: "PATCH", + body: JSON.stringify(data), + }); +} + +export function deleteWorkspace(id: string): Promise { + return apiFetch(`/workspaces/${id}`, { method: "DELETE" }); +} + +export function listMembers(workspaceId: string): Promise { + return apiFetch(`/workspaces/${workspaceId}/members`); +} + +export function addMember(workspaceId: string, data: AddMemberPayload): Promise { + return apiFetch(`/workspaces/${workspaceId}/members`, { + method: "POST", + body: JSON.stringify(data), + }); +} + +export function removeMember(workspaceId: string, memberId: string): Promise { + return apiFetch(`/workspaces/${workspaceId}/members/${memberId}`, { + method: "DELETE", + }); +} diff --git a/webui/src/components/ActivityFeed.tsx b/webui/src/components/ActivityFeed.tsx new file mode 100644 index 0000000..5849f2f --- /dev/null +++ b/webui/src/components/ActivityFeed.tsx @@ -0,0 +1,61 @@ +import { useEffect, useState } from "react"; +import { listActivity, type Activity } from "../api/collaboration"; + +interface Props { + ideaId: string; +} + +const ACTION_LABELS: Record = { + comment: "оставил(а) комментарий", + vote_up: "оценил(а) идею", + vote_down: "отклонил(а) идею", + status_change: "изменил(а) статус", + funnel: "переместил(а) в воронке", + share: "поделился(ась) идеей", + analyze: "запустил(а) анализ", +}; + +export default function ActivityFeed({ ideaId }: Props) { + const [activities, setActivities] = useState([]); + const [loading, setLoading] = useState(true); + + useEffect(() => { + listActivity(ideaId) + .then(setActivities) + .catch(console.error) + .finally(() => setLoading(false)); + }, [ideaId]); + + if (loading) { + return

Загрузка активности…

; + } + + return ( +
+

Активность

+ {activities.length === 0 && ( +

Нет активности

+ )} +
+ {activities.map((a) => ( +
+
+ {a.display_name.charAt(0).toUpperCase()} +
+
+

+ {a.display_name}{" "} + + {ACTION_LABELS[a.action] || a.action} + +

+

+ {new Date(a.created_at).toLocaleString("ru-RU")} +

+
+
+ ))} +
+
+ ); +} diff --git a/webui/src/components/CommentThread.tsx b/webui/src/components/CommentThread.tsx new file mode 100644 index 0000000..a53ddf6 --- /dev/null +++ b/webui/src/components/CommentThread.tsx @@ -0,0 +1,192 @@ +import { useEffect, useState } from "react"; +import { + listComments, + createComment, + deleteComment, + type Comment, +} from "../api/collaboration"; +import { useAuth } from "../auth/AuthContext"; + +interface Props { + ideaId: string; +} + +export default function CommentThread({ ideaId }: Props) { + const { user } = useAuth(); + const [comments, setComments] = useState([]); + const [newComment, setNewComment] = useState(""); + const [replyTo, setReplyTo] = useState(null); + const [replyText, setReplyText] = useState(""); + const [sending, setSending] = useState(false); + + useEffect(() => { + loadComments(); + }, [ideaId]); + + async function loadComments() { + try { + const items = await listComments(ideaId); + // Build threaded structure + const topLevel = items.filter((c) => !c.parent_id); + const byParent: Record = {}; + for (const c of items) { + if (c.parent_id) { + if (!byParent[c.parent_id]) byParent[c.parent_id] = []; + byParent[c.parent_id].push(c); + } + } + setComments( + topLevel.map((c) => ({ ...c, replies: byParent[c.id] || [] })), + ); + } catch (e) { + console.error(e); + } + } + + async function handleSubmit() { + if (!newComment.trim() || sending) return; + setSending(true); + try { + await createComment(ideaId, newComment.trim()); + setNewComment(""); + await loadComments(); + } catch (e) { + console.error(e); + } finally { + setSending(false); + } + } + + async function handleReply(parentId: string) { + if (!replyText.trim() || sending) return; + setSending(true); + try { + await createComment(ideaId, replyText.trim(), parentId); + setReplyTo(null); + setReplyText(""); + await loadComments(); + } catch (e) { + console.error(e); + } finally { + setSending(false); + } + } + + async function handleDelete(commentId: string) { + if (!confirm("Удалить комментарий?")) return; + try { + await deleteComment(ideaId, commentId); + await loadComments(); + } catch (e) { + console.error(e); + } + } + + function renderComment(c: Comment, depth = 0) { + const isOwner = user?.id === c.user_id; + return ( +
0 ? "ml-6 border-l-2 pl-4 dark:border-gray-700" : ""} ${ + depth > 0 ? "" : "border-b pb-3 dark:border-gray-700" + }`} + > +
+
+
+ {c.display_name} + + {new Date(c.created_at).toLocaleString("ru-RU")} + +
+

+ {c.content} +

+
+ {isOwner && ( + + )} +
+ +
+ +
+ + {replyTo === c.id && ( +
{ + e.preventDefault(); + handleReply(c.id); + }} + className="mt-2 flex gap-2" + > + setReplyText(e.target.value)} + placeholder="Написать ответ…" + className="flex-1 rounded-lg border border-gray-300 bg-gray-50 px-3 py-1.5 text-sm dark:border-gray-600 dark:bg-gray-800" + autoFocus + /> + +
+ )} + + {c.replies.map((r) => renderComment(r, depth + 1))} +
+ ); + } + + return ( +
+

Комментарии ({comments.length})

+ + {/* New comment form */} +
{ + e.preventDefault(); + handleSubmit(); + }} + className="flex gap-2" + > + setNewComment(e.target.value)} + placeholder="Написать комментарий…" + className="flex-1 rounded-lg border border-gray-300 bg-gray-50 px-3 py-2 text-sm dark:border-gray-600 dark:bg-gray-800" + /> + +
+ + {/* Comments list */} +
+ {comments.length === 0 && ( +

Нет комментариев

+ )} + {comments.map((c) => renderComment(c))} +
+
+ ); +} diff --git a/webui/src/components/IdeaFunnelKanban.tsx b/webui/src/components/IdeaFunnelKanban.tsx new file mode 100644 index 0000000..643b807 --- /dev/null +++ b/webui/src/components/IdeaFunnelKanban.tsx @@ -0,0 +1,139 @@ +import { useEffect, useState } from "react"; +import { Link } from "react-router-dom"; +import { + listIdeas, + updateIdeaFunnel, + type Idea, + type FunnelStatus, + FUNNEL_LABELS, +} from "../api/ideas"; + +const FUNNEL_ORDER: FunnelStatus[] = [ + "raw", "validated", "backlog", "in_progress", "launched", "retrospective", +]; + +export default function IdeaFunnelKanban() { + const [ideas, setIdeas] = useState([]); + const [loading, setLoading] = useState(true); + const [moving, setMoving] = useState(null); + + useEffect(() => { + listIdeas() + .then(setIdeas) + .catch(console.error) + .finally(() => setLoading(false)); + }, []); + + async function handleMove(ideaId: string, direction: "prev" | "next") { + const idea = ideas.find((i) => i.id === ideaId); + if (!idea) return; + const currentIdx = FUNNEL_ORDER.indexOf( + (idea.funnel_status as FunnelStatus) || "raw", + ); + const nextIdx = + direction === "next" + ? Math.min(currentIdx + 1, FUNNEL_ORDER.length - 1) + : Math.max(currentIdx - 1, 0); + if (nextIdx === currentIdx) return; + + setMoving(ideaId); + try { + const updated = await updateIdeaFunnel(ideaId, FUNNEL_ORDER[nextIdx]); + setIdeas((prev) => + prev.map((i) => (i.id === ideaId ? updated : i)), + ); + } catch (e) { + console.error(e); + } finally { + setMoving(null); + } + } + + if (loading) { + return ( +
+
+
+ ); + } + + const columns: Record = {}; + for (const s of FUNNEL_ORDER) { + columns[s] = []; + } + for (const idea of ideas) { + const status = (idea.funnel_status as FunnelStatus) || "raw"; + if (columns[status]) columns[status].push(idea); + } + + return ( +
+ {FUNNEL_ORDER.map((status) => ( +
+

+ {FUNNEL_LABELS[status]} + + ({columns[status].length}) + +

+
+ {columns[status].length === 0 && ( +

+ Нет идей +

+ )} + {columns[status].map((idea) => ( +
+ + {idea.title} + +

+ {idea.content} +

+
+ + {new Date(idea.created_at).toLocaleDateString("ru-RU")} + +
+ + +
+
+
+ ))} +
+
+ ))} +
+ ); +} diff --git a/webui/src/components/Layout.tsx b/webui/src/components/Layout.tsx index 16c4ba1..e7a2cb9 100644 --- a/webui/src/components/Layout.tsx +++ b/webui/src/components/Layout.tsx @@ -3,6 +3,8 @@ import { Link, useNavigate } from "react-router-dom"; import { useAuth } from "../auth/AuthContext"; import T from "./T"; import HelpFAB from "./HelpFAB"; +import WorkspaceSwitcher from "./WorkspaceSwitcher"; +import NotificationBell from "./NotificationBell"; function GitHubIcon() { return ( @@ -46,6 +48,9 @@ export default function Layout({ children }: { children: React.ReactNode }) { VoIdea +
+ +
+ ); +} diff --git a/webui/src/components/VoteButtons.tsx b/webui/src/components/VoteButtons.tsx new file mode 100644 index 0000000..63895ae --- /dev/null +++ b/webui/src/components/VoteButtons.tsx @@ -0,0 +1,66 @@ +import { useEffect, useState } from "react"; +import { getVotes, toggleVote, type VoteCount } from "../api/collaboration"; + +interface Props { + ideaId: string; +} + +export default function VoteButtons({ ideaId }: Props) { + const [votes, setVotes] = useState({ up: 0, down: 0, user_vote: null }); + const [sending, setSending] = useState(false); + + useEffect(() => { + getVotes(ideaId).then(setVotes).catch(console.error); + }, [ideaId]); + + async function handleVote(vote: "up" | "down") { + if (sending) return; + setSending(true); + try { + const updated = await toggleVote(ideaId, vote); + setVotes(updated); + } catch (e) { + console.error(e); + } finally { + setSending(false); + } + } + + const upActive = votes.user_vote === "up"; + const downActive = votes.user_vote === "down"; + + return ( +
+ + +
+ ); +} diff --git a/webui/src/components/WorkspaceSwitcher.tsx b/webui/src/components/WorkspaceSwitcher.tsx new file mode 100644 index 0000000..dfa6e66 --- /dev/null +++ b/webui/src/components/WorkspaceSwitcher.tsx @@ -0,0 +1,99 @@ +import { useEffect, useState } from "react"; +import { useWorkspaceStore } from "../stores/workspace"; +import { createWorkspace } from "../api/workspaces"; + +export default function WorkspaceSwitcher() { + const { + workspaces, currentWorkspace, loading, + loadWorkspaces, switchWorkspace, + } = useWorkspaceStore(); + const [open, setOpen] = useState(false); + const [creating, setCreating] = useState(false); + const [newName, setNewName] = useState(""); + + useEffect(() => { + loadWorkspaces(); + }, []); + + async function handleCreate() { + if (!newName.trim()) return; + setCreating(true); + try { + await createWorkspace({ name: newName.trim(), type: "team" }); + setNewName(""); + await loadWorkspaces(); + } catch (e) { + console.error(e); + } finally { + setCreating(false); + } + } + + if (loading) return null; + + return ( +
+ + + {open && ( +
+
+ {workspaces.map((ws) => ( + + ))} +
+ +
+
{ e.preventDefault(); handleCreate(); }} + className="flex gap-2" + > + setNewName(e.target.value)} + placeholder="Новое рабочее пространство" + className="flex-1 rounded-lg border border-gray-300 bg-gray-50 px-2 py-1.5 text-xs dark:border-gray-600 dark:bg-gray-800" + /> + +
+
+
+ )} +
+ ); +} diff --git a/webui/src/pages/AdminPage.tsx b/webui/src/pages/AdminPage.tsx index 3ebe07e..566977d 100644 --- a/webui/src/pages/AdminPage.tsx +++ b/webui/src/pages/AdminPage.tsx @@ -51,6 +51,7 @@ import { adminListBotCommands, adminToggleBotCommand, adminSyncBotCommands, + adminRunAgent, type BotCommand, type PipelineConfig, type PipelineStageConfig, @@ -262,11 +263,28 @@ function UsersTab() { function AgentsTab() { const [agents, setAgents] = useState([]); + const [selectedAgent, setSelectedAgent] = useState(null); + const [metaConfig, setMetaConfig] = useState(""); + const [runResult, setRunResult] = useState(null); + const [running, setRunning] = useState(false); useEffect(() => { - adminListAgents().then(setAgents).catch(console.error); + loadAgents(); }, []); + async function loadAgents() { + try { + const list = await adminListAgents(); + setAgents(list); + const meta = list.find(a => a.agent_name === "meta_agent"); + if (meta?.config) { + try { + setMetaConfig(JSON.stringify(JSON.parse(meta.config), null, 2)); + } catch { setMetaConfig(meta.config); } + } + } catch (e) { console.error(e); } + } + async function toggleAgent(name: string, is_enabled: boolean) { try { const updated = await adminUpdateAgent(name, { is_enabled }); @@ -274,41 +292,127 @@ function AgentsTab() { } catch (e) { console.error(e); } } + async function saveMetaConfig() { + try { + JSON.parse(metaConfig); + const updated = await adminUpdateAgent("meta_agent", { config: metaConfig }); + setAgents(prev => prev.map(a => a.agent_name === "meta_agent" ? updated : a)); + } catch (e) { + alert("Invalid JSON: " + (e instanceof Error ? e.message : String(e))); + } + } + + async function runAgent(name: string) { + setRunning(true); + setRunResult(null); + try { + const result = await adminRunAgent(name); + setRunResult(JSON.stringify(result, null, 2)); + } catch (e) { + setRunResult("Error: " + (e instanceof Error ? e.message : String(e))); + } finally { setRunning(false); } + } + return ( -
- - - - - - - - - - - - {agents.map((a) => ( - - - - - - +
+
+
АгентОписаниеВерсияСтатусДействие
{a.agent_name}{a.description || "—"}{a.version} - - {a.is_enabled ? "Вкл" : "Выкл"} - - - -
+ + + + + + + - ))} - -
АгентОписаниеВерсияСтатусДействие
+ + + {agents.map((a) => ( + + {a.agent_name} + {a.description || "—"} + {a.version} + + + {a.is_enabled ? "Вкл" : "Выкл"} + + + +
+ + + +
+ + + ))} + + +
+ + {/* Meta-agent config panel */} + {selectedAgent === "meta_agent" && ( +
+

Мета-агент: Конфигурация

+

+ JSON-конфигурация: cron_schedule, weights (агент → вес), sources_count, auto_create +

+