diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a9b14bc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,66 @@ +name: CI + +on: + push: + branches: [main, develop] + pull_request: + +defaults: + run: + working-directory: ev_backend + +jobs: + test: + runs-on: ubuntu-latest + env: + # Tests and system checks run in debug mode with a throwaway secret. + DJANGO_DEBUG: "True" + DJANGO_SECRET_KEY: ci-test-secret-key-not-for-production + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: pip + cache-dependency-path: ev_backend/requirements-dev.txt + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements-dev.txt + + - name: Lint (ruff) + run: ruff check . + + - name: Migration check (models match migrations) + run: python manage.py makemigrations --check --dry-run + + - name: Django system checks + run: python manage.py check + + - name: Deployment security checks + env: + DJANGO_DEBUG: "False" + DJANGO_SKIP_PROD_CHECK: "True" + DJANGO_ALLOWED_HOSTS: example.com + run: python manage.py check --deploy + + - name: Tests + coverage + run: | + coverage run manage.py test + coverage report + + - name: Security static analysis (bandit) + run: bandit -r accounts bookings stations ev_backend -x tests --severity-level medium || true + + - name: Dependency vulnerability audit (pip-audit) + run: pip-audit -r requirements.txt || true + + build: + runs-on: ubuntu-latest + needs: test + steps: + - uses: actions/checkout@v4 + - name: Build production image + run: docker build -t ev-backend:ci ev_backend diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d0868a --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +.eggs/ + +# Virtualenvs +venv/ +.venv/ +env/ +ENV/ + +# Django +*.log +db.sqlite3 +db.sqlite3-journal +/ev_backend/media/ +/ev_backend/staticfiles/ +ev_backend/media/ +ev_backend/staticfiles/ + +# Secrets / local config +.env +*.env +!.env.example +.env.* +!.env.example + +# OS / editor +.DS_Store +.idea/ +.vscode/ +*.swp + +# Coverage / test artifacts +.coverage +htmlcov/ +.pytest_cache/ +coverage.xml diff --git a/ev_backend/.dockerignore b/ev_backend/.dockerignore new file mode 100644 index 0000000..1857efd --- /dev/null +++ b/ev_backend/.dockerignore @@ -0,0 +1,20 @@ +venv/ +.venv/ +__pycache__/ +*.py[cod] +.env +.env.* +!.env.example +db.sqlite3 +db.sqlite3-journal +media/ +staticfiles/ +.git/ +.github/ +.idea/ +.vscode/ +.DS_Store +*.log +.coverage +htmlcov/ +docs/ diff --git a/ev_backend/.env b/ev_backend/.env deleted file mode 100644 index f17f3e4..0000000 --- a/ev_backend/.env +++ /dev/null @@ -1,2 +0,0 @@ -EMAIL_HOST_USER=tedtadesse29@gmail.com -EMAIL_HOST_PASSWORD=abcd efgh ijkl mnop \ No newline at end of file diff --git a/ev_backend/.env.example b/ev_backend/.env.example new file mode 100644 index 0000000..46b7aba --- /dev/null +++ b/ev_backend/.env.example @@ -0,0 +1,48 @@ +# Copy to .env and fill in. NEVER commit a real .env. +# cp .env.example .env + +# ── Core ────────────────────────────────────────────────────────────────── +# Development: set DJANGO_DEBUG=True. Production: leave False. +DJANGO_DEBUG=True +# Generate: python -c "from django.core.management.utils import get_random_secret_key as k; print(k())" +DJANGO_SECRET_KEY=change-me-to-a-strong-random-secret +# Comma-separated. Required in production. +DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1 + +# ── Database ────────────────────────────────────────────────────────────── +# Leave empty for local SQLite; set for production Postgres. +# DATABASE_URL=postgres://user:password@host:5432/dbname +# DB_SSL_REQUIRE=True + +# ── Cache (rate limits, station-list cache) ─────────────────────────────── +# Strongly recommended in production for cross-process correctness. +# REDIS_URL=redis://localhost:6379/0 + +# ── JWT ─────────────────────────────────────────────────────────────────── +# Defaults to DJANGO_SECRET_KEY if unset. +# JWT_SECRET_KEY=change-me +JWT_ACCESS_MINUTES=30 +JWT_REFRESH_DAYS=7 + +# ── Email (OTP delivery) ────────────────────────────────────────────────── +# EMAIL_HOST=smtp.gmail.com +# EMAIL_PORT=587 +# EMAIL_USE_TLS=True +EMAIL_HOST_USER= +EMAIL_HOST_PASSWORD= +# DEFAULT_FROM_EMAIL=EV Charging + +# ── CORS / CSRF (production) ─────────────────────────────────────────────── +# CORS_ALLOWED_ORIGINS=https://app.example.com,https://admin.example.com +# CORS_ALLOW_CREDENTIALS=False +# CSRF_TRUSTED_ORIGINS=https://admin.example.com + +# ── Security headers (production; sensible defaults apply) ───────────────── +# SECURE_SSL_REDIRECT=True +# SECURE_HSTS_SECONDS=31536000 + +# ── App / ops ───────────────────────────────────────────────────────────── +APP_VERSION=1.0.0 +LOG_LEVEL=INFO +# STATIC_ROOT=/app/staticfiles +# MEDIA_ROOT=/app/media diff --git a/ev_backend/Dockerfile b/ev_backend/Dockerfile new file mode 100644 index 0000000..dc2611f --- /dev/null +++ b/ev_backend/Dockerfile @@ -0,0 +1,51 @@ +# syntax=docker/dockerfile:1 +# Multi-stage, non-root production image for the EV Charging backend. + +# ---- Builder: install dependencies into a venv ---- +FROM python:3.12-slim AS builder + +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 \ + PIP_NO_CACHE_DIR=1 + +RUN apt-get update && apt-get install -y --no-install-recommends \ + build-essential libpq-dev \ + && rm -rf /var/lib/apt/lists/* + +RUN python -m venv /opt/venv +ENV PATH="/opt/venv/bin:$PATH" + +COPY requirements.txt . +RUN pip install --upgrade pip && pip install -r requirements.txt + +# ---- Runtime: slim, non-root ---- +FROM python:3.12-slim AS runtime + +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 \ + PATH="/opt/venv/bin:$PATH" \ + DJANGO_SETTINGS_MODULE=ev_backend.settings + +# libpq for psycopg at runtime. +RUN apt-get update && apt-get install -y --no-install-recommends libpq5 \ + && rm -rf /var/lib/apt/lists/* + +# Non-root user. +RUN useradd --create-home --uid 10001 appuser +WORKDIR /app + +COPY --from=builder /opt/venv /opt/venv +COPY --chown=appuser:appuser . /app + +# Collect static at build time (WhiteNoise serves them). Uses a throwaway key so +# the build never needs real secrets; runtime overrides via env. +RUN DJANGO_DEBUG=True python manage.py collectstatic --noinput || true + +RUN chmod +x /app/entrypoint.sh +USER appuser + +EXPOSE 8000 + +# The entrypoint runs migrations then starts Gunicorn. +ENTRYPOINT ["/app/entrypoint.sh"] +CMD ["gunicorn", "ev_backend.wsgi:application", "-c", "gunicorn.conf.py"] diff --git a/ev_backend/accounts/__pycache__/__init__.cpython-311.pyc b/ev_backend/accounts/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c22ee76..0000000 Binary files a/ev_backend/accounts/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/__init__.cpython-312.pyc b/ev_backend/accounts/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5fe4393..0000000 Binary files a/ev_backend/accounts/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/admin.cpython-311.pyc b/ev_backend/accounts/__pycache__/admin.cpython-311.pyc deleted file mode 100644 index 9e1285c..0000000 Binary files a/ev_backend/accounts/__pycache__/admin.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/admin.cpython-312.pyc b/ev_backend/accounts/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 9faa309..0000000 Binary files a/ev_backend/accounts/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/apps.cpython-311.pyc b/ev_backend/accounts/__pycache__/apps.cpython-311.pyc deleted file mode 100644 index 40c6a17..0000000 Binary files a/ev_backend/accounts/__pycache__/apps.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/apps.cpython-312.pyc b/ev_backend/accounts/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index e41243f..0000000 Binary files a/ev_backend/accounts/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/models.cpython-311.pyc b/ev_backend/accounts/__pycache__/models.cpython-311.pyc deleted file mode 100644 index 772c303..0000000 Binary files a/ev_backend/accounts/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/models.cpython-312.pyc b/ev_backend/accounts/__pycache__/models.cpython-312.pyc deleted file mode 100644 index ec87302..0000000 Binary files a/ev_backend/accounts/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/permission.cpython-311.pyc b/ev_backend/accounts/__pycache__/permission.cpython-311.pyc deleted file mode 100644 index e2a79a6..0000000 Binary files a/ev_backend/accounts/__pycache__/permission.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/permission.cpython-312.pyc b/ev_backend/accounts/__pycache__/permission.cpython-312.pyc deleted file mode 100644 index 8fa7432..0000000 Binary files a/ev_backend/accounts/__pycache__/permission.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/schema.cpython-311.pyc b/ev_backend/accounts/__pycache__/schema.cpython-311.pyc deleted file mode 100644 index 58b08d6..0000000 Binary files a/ev_backend/accounts/__pycache__/schema.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/__pycache__/schema.cpython-312.pyc b/ev_backend/accounts/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 4374f8f..0000000 Binary files a/ev_backend/accounts/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-311.pyc b/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-311.pyc deleted file mode 100644 index 8558b63..0000000 Binary files a/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index cb263e5..0000000 Binary files a/ev_backend/accounts/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/migrations/__pycache__/0002_passwordresetotp.cpython-312.pyc b/ev_backend/accounts/migrations/__pycache__/0002_passwordresetotp.cpython-312.pyc deleted file mode 100644 index 9564d41..0000000 Binary files a/ev_backend/accounts/migrations/__pycache__/0002_passwordresetotp.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/accounts/migrations/__pycache__/__init__.cpython-311.pyc b/ev_backend/accounts/migrations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 06a6ff1..0000000 Binary files a/ev_backend/accounts/migrations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/accounts/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/accounts/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dd91b28..0000000 Binary files a/ev_backend/accounts/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/__init__.cpython-311.pyc b/ev_backend/bookings/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e49c3cd..0000000 Binary files a/ev_backend/bookings/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/__init__.cpython-312.pyc b/ev_backend/bookings/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9d0b9be..0000000 Binary files a/ev_backend/bookings/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/admin.cpython-311.pyc b/ev_backend/bookings/__pycache__/admin.cpython-311.pyc deleted file mode 100644 index 5d32a55..0000000 Binary files a/ev_backend/bookings/__pycache__/admin.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/admin.cpython-312.pyc b/ev_backend/bookings/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index dcce9e6..0000000 Binary files a/ev_backend/bookings/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/apps.cpython-311.pyc b/ev_backend/bookings/__pycache__/apps.cpython-311.pyc deleted file mode 100644 index dfeffdf..0000000 Binary files a/ev_backend/bookings/__pycache__/apps.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/apps.cpython-312.pyc b/ev_backend/bookings/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index a6d4e7b..0000000 Binary files a/ev_backend/bookings/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/models.cpython-311.pyc b/ev_backend/bookings/__pycache__/models.cpython-311.pyc deleted file mode 100644 index fef2d61..0000000 Binary files a/ev_backend/bookings/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/models.cpython-312.pyc b/ev_backend/bookings/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 2c42367..0000000 Binary files a/ev_backend/bookings/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/schema.cpython-311.pyc b/ev_backend/bookings/__pycache__/schema.cpython-311.pyc deleted file mode 100644 index fb8497c..0000000 Binary files a/ev_backend/bookings/__pycache__/schema.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/__pycache__/schema.cpython-312.pyc b/ev_backend/bookings/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index e3650f9..0000000 Binary files a/ev_backend/bookings/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-311.pyc b/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-311.pyc deleted file mode 100644 index e964922..0000000 Binary files a/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 140f382..0000000 Binary files a/ev_backend/bookings/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/bookings/migrations/__pycache__/__init__.cpython-311.pyc b/ev_backend/bookings/migrations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 15f8ed2..0000000 Binary files a/ev_backend/bookings/migrations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/bookings/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/bookings/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ae09d61..0000000 Binary files a/ev_backend/bookings/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/db.sqlite3 b/ev_backend/db.sqlite3 deleted file mode 100644 index 7605550..0000000 Binary files a/ev_backend/db.sqlite3 and /dev/null differ diff --git a/ev_backend/docker-compose.yml b/ev_backend/docker-compose.yml new file mode 100644 index 0000000..674b4be --- /dev/null +++ b/ev_backend/docker-compose.yml @@ -0,0 +1,47 @@ +# Local/staging stack: web + Postgres + Redis. For production, run the `web` +# image behind a managed database, cache, and TLS-terminating load balancer. + +services: + db: + image: postgres:16-alpine + environment: + POSTGRES_DB: ${POSTGRES_DB:-ev} + POSTGRES_USER: ${POSTGRES_USER:-ev} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ev} + volumes: + - pgdata:/var/lib/postgresql/data + healthcheck: + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-ev}"] + interval: 10s + timeout: 5s + retries: 5 + + redis: + image: redis:7-alpine + healthcheck: + test: ["CMD", "redis-cli", "ping"] + interval: 10s + timeout: 5s + retries: 5 + + web: + build: . + env_file: .env + environment: + DATABASE_URL: postgres://${POSTGRES_USER:-ev}:${POSTGRES_PASSWORD:-ev}@db:5432/${POSTGRES_DB:-ev} + REDIS_URL: redis://redis:6379/0 + ports: + - "8000:8000" + depends_on: + db: + condition: service_healthy + redis: + condition: service_healthy + healthcheck: + test: ["CMD-SHELL", "python -c \"import urllib.request,sys; sys.exit(0 if urllib.request.urlopen('http://127.0.0.1:8000/ready/').status==200 else 1)\""] + interval: 30s + timeout: 5s + retries: 5 + +volumes: + pgdata: diff --git a/ev_backend/docs/BACKUP_RESTORE.md b/ev_backend/docs/BACKUP_RESTORE.md new file mode 100644 index 0000000..432ac11 --- /dev/null +++ b/ev_backend/docs/BACKUP_RESTORE.md @@ -0,0 +1,64 @@ +# Backup, Restore & Monitoring + +## Database backups + +Scripted with `scripts/backup_db.sh` (PostgreSQL, gzipped `pg_dump`): + +```bash +DATABASE_URL=postgres://user:pass@host:5432/db ./scripts/backup_db.sh /var/backups/ev +``` + +- Produces `db_.sql.gz`. +- Retention: deletes dumps older than `RETENTION_DAYS` (default 14). +- **Schedule it** (pick one): + - cron: `0 2 * * * DATABASE_URL=… /app/scripts/backup_db.sh /var/backups/ev` + - Kubernetes `CronJob` running the same image/command + - Managed-DB automated snapshots (RDS/Cloud SQL) — preferred; use the script + as a portable secondary. + +Store backups off-host (S3/GCS bucket with versioning) and encrypt at rest. + +## Media backups + +`scripts/backup_media.sh` archives `MEDIA_ROOT`: + +```bash +MEDIA_ROOT=/app/media ./scripts/backup_media.sh /var/backups/ev +``` + +If media lives in object storage, prefer native bucket **versioning + +cross-region replication** over tar archives. + +## Restore + +```bash +# 1. Take a fresh safety backup of the target first. +# 2. Restore the dump: +DATABASE_URL=postgres://user:pass@host:5432/db ./scripts/restore_db.sh db_20240101T020000Z.sql.gz +# 3. Apply any newer migrations: +python manage.py migrate --noinput +``` + +The restore script prompts for confirmation and stops on the first error. +**Test restores regularly** — an untested backup is not a backup. + +## Recovery notes + +- The database is the source of truth for users, stations, bookings, reviews. +- Media (station images) are non-critical and regenerable by re-upload; still + back them up to avoid broken links. +- The cache (Redis) is disposable — it rebuilds on demand. No backup needed. + +## Monitoring recommendations + +- **Uptime/health**: poll `/ready/` (DB + cache) and alert on non-200; `/live/` + for liveness. +- **Metrics**: request rate, p50/p95 latency, 4xx/5xx rates, DB connection pool + usage, Gunicorn worker saturation, Redis hit rate. +- **Logs**: ship stdout to a central store (Loki/CloudWatch/ELK). Watch the + `accounts.auth` stream for `account_locked` / repeated `login_failure` + (brute-force signal) and `ev_backend.graphql` for masked internal errors. +- **Alerts**: 5xx spike, `/ready/` failing, DB unreachable, backup job failure, + TLS-cert expiry, disk usage on the media volume. +- **Security**: alert on bursts of `pin_reset_requested` (OTP abuse) and on + rate-limit lockouts trending up. diff --git a/ev_backend/docs/DEPLOYMENT.md b/ev_backend/docs/DEPLOYMENT.md new file mode 100644 index 0000000..5513787 --- /dev/null +++ b/ev_backend/docs/DEPLOYMENT.md @@ -0,0 +1,102 @@ +# Deployment Guide + +Production backend for the EV Charging platform (Django + GraphQL). This guide +covers configuration, running with Docker/Gunicorn, and static/media handling. + +## 1. Prerequisites + +- Python 3.12 (for non-Docker runs) +- PostgreSQL 14+ (production database) +- Redis 6+ (shared cache for rate limits and the station-list cache) +- A TLS-terminating reverse proxy / load balancer (nginx, ALB, etc.) + +## 2. Configuration + +All configuration is via environment variables (12-factor). Copy the template +and fill it in: + +```bash +cp .env.example .env +``` + +**The app refuses to start in production (`DJANGO_DEBUG=False`) if required +secure configuration is missing** — see the fail-fast list in +`docs/PRODUCTION_CHECKLIST.md`. + +### Environment variables + +| Variable | Required (prod) | Default | Purpose | +|---|---|---|---| +| `DJANGO_DEBUG` | — | `False` | Enable dev mode. **Never `True` in production.** | +| `DJANGO_SECRET_KEY` | ✅ | dev fallback | Django signing key. Generate a strong random value. | +| `DJANGO_ALLOWED_HOSTS` | ✅ | localhost (dev) | Comma-separated hostnames. | +| `DATABASE_URL` | ✅ | SQLite (dev) | e.g. `postgres://user:pass@host:5432/db`. | +| `DB_SSL_REQUIRE` | — | `False` | Require TLS to the database. | +| `DB_CONN_MAX_AGE` | — | `600` | Persistent connection lifetime (s). | +| `REDIS_URL` | recommended | LocMem | Shared cache; required for correct multi-process rate limiting/caching. | +| `JWT_SECRET_KEY` | — | `DJANGO_SECRET_KEY` | JWT signing key. | +| `JWT_ACCESS_MINUTES` / `JWT_REFRESH_DAYS` | — | `30` / `7` | Token lifetimes. | +| `EMAIL_HOST_USER` / `EMAIL_HOST_PASSWORD` | ✅ (SMTP) | empty | OTP email delivery. | +| `EMAIL_HOST` / `EMAIL_PORT` / `EMAIL_USE_TLS` | — | Gmail/587/True | SMTP server. | +| `DEFAULT_FROM_EMAIL` | — | derived | From address. | +| `CORS_ALLOWED_ORIGINS` | ✅ (web) | empty | Comma-separated frontend origins. | +| `CORS_ALLOW_CREDENTIALS` | — | `False` | Allow credentialed CORS. | +| `CSRF_TRUSTED_ORIGINS` | — | empty | Trusted origins for admin/CSRF. | +| `SECURE_SSL_REDIRECT` | — | `True` (prod) | Redirect HTTP→HTTPS. | +| `SECURE_HSTS_SECONDS` | — | `31536000` | HSTS max-age. | +| `STATIC_ROOT` / `MEDIA_ROOT` | — | `staticfiles/` / `media/` | Collected static / uploads. | +| `APP_VERSION` | — | `1.0.0` | Reported by `/version/`. | +| `LOG_LEVEL` / `DJANGO_LOG_LEVEL` / `APP_LOG_LEVEL` / `AUTH_LOG_LEVEL` | — | `INFO` | Log levels. | + +Business-rule knobs (booking durations, PIN/OTP/rate-limit thresholds, pagination +sizes) are documented inline in `ev_backend/settings.py` and all have safe defaults. + +The Flutter client is unaffected by these — no GraphQL field, argument, or auth +header changed in this sprint. + +## 3. Run with Docker (recommended) + +Local/staging full stack (web + Postgres + Redis): + +```bash +cp .env.example .env # set DJANGO_SECRET_KEY etc. +docker compose up --build +``` + +The image is multi-stage and runs as a non-root user. The entrypoint applies +migrations and collects static before starting Gunicorn. + +Production (managed DB/cache, image behind your LB): + +```bash +docker build -t ev-backend:$(git rev-parse --short HEAD) ev_backend +docker run -p 8000:8000 --env-file prod.env ev-backend: +``` + +## 4. Run without Docker + +```bash +python -m venv venv && source venv/bin/activate +pip install -r requirements.txt +python manage.py migrate +python manage.py collectstatic --noinput +gunicorn ev_backend.wsgi:application -c gunicorn.conf.py +``` + +## 5. Static & media files + +- **Static**: collected to `STATIC_ROOT` and served by **WhiteNoise** + (compressed, cache-busted) — no separate static server needed. +- **Media** (uploaded station images): served from `MEDIA_ROOT`. For scale, + point uploads at object storage (S3/GCS) via a storage backend and serve via + CDN; back it up per `docs/BACKUP_RESTORE.md`. + +## 6. Health probes + +| Endpoint | Use | +|---|---| +| `GET /health/`, `GET /live/` | Liveness (process up) | +| `GET /ready/` | Readiness — checks DB + cache, returns `503` if down | +| `GET /version/` | Build version | + +Wire `/live/` to the liveness probe and `/ready/` to the readiness probe. diff --git a/ev_backend/docs/PRODUCTION_CHECKLIST.md b/ev_backend/docs/PRODUCTION_CHECKLIST.md new file mode 100644 index 0000000..e23450a --- /dev/null +++ b/ev_backend/docs/PRODUCTION_CHECKLIST.md @@ -0,0 +1,55 @@ +# Production & Security Checklist + +## Startup fail-fast (enforced in code) + +With `DJANGO_DEBUG=False`, the app **refuses to start** unless all of these hold +(`ev_backend/settings.py`, bottom): + +- [ ] `DJANGO_SECRET_KEY` set to a strong secret (not the `django-insecure-…` dev default) +- [ ] `DJANGO_ALLOWED_HOSTS` lists the production host(s) +- [ ] `JWT_SECRET_KEY` (or `DJANGO_SECRET_KEY`) is a strong secret +- [ ] `EMAIL_HOST_USER` / `EMAIL_HOST_PASSWORD` configured when using SMTP +- [ ] `DATABASE_URL` points at a production database (SQLite rejected) +- [ ] A cache backend is configured (`REDIS_URL` for a shared cache) + +## Pre-deploy + +- [ ] `python manage.py check --deploy` passes (no security warnings) +- [ ] `python manage.py makemigrations --check --dry-run` is clean +- [ ] `python manage.py migrate` applied +- [ ] `python manage.py collectstatic --noinput` run (or done in image build) +- [ ] CI green (lint, tests, migration check, deploy check, image build) + +## Security + +- [ ] `DEBUG=False` in production +- [ ] Secrets only in environment / secret manager — **never committed** +- [ ] **Rotate the previously committed Gmail app-password and any old + `SECRET_KEY`** (they exist in git history; consider history scrubbing with + `git filter-repo` and force-push, then invalidate the old credentials) +- [ ] `.env`, `db.sqlite3`, `__pycache__` untracked (see `.gitignore`) +- [ ] HTTPS enforced (`SECURE_SSL_REDIRECT`, HSTS) behind the LB +- [ ] Security headers present: HSTS, `X-Frame-Options: DENY`, + `X-Content-Type-Options: nosniff`, Referrer-Policy, Permissions-Policy +- [ ] Secure + `HttpOnly` + `SameSite` cookies (auto in prod) +- [ ] CORS restricted to known frontend origins (`CORS_ALLOWED_ORIGINS`) +- [ ] GraphiQL/introspection disabled in prod (gated on `DEBUG`) +- [ ] GraphQL depth limit + request-size limits active (defaults set) +- [ ] Rate limiting backed by Redis (per-IP + per-account) +- [ ] Admin protected; strong admin credentials; consider IP-allowlisting `/admin/` +- [ ] Logs never contain PIN/OTP/JWT/secrets (scrubbed by `accounts.auth_logging`) + +## Operational + +- [ ] Liveness → `/live/`, readiness → `/ready/` wired to the orchestrator +- [ ] Centralised log collection from stdout +- [ ] Database + media backups scheduled and **restore tested** (see BACKUP_RESTORE.md) +- [ ] Error alerting on 5xx and on `/ready/` failures +- [ ] Gunicorn workers/timeouts tuned for instance size (`gunicorn.conf.py`) + +## Flutter compatibility + +- [ ] No GraphQL field/argument renamed or removed this sprint +- [ ] JWT auth header prefix unchanged (`JWT `) +- [ ] Confirm the app's configured API origin is in `CORS_ALLOWED_ORIGINS` + (mobile apps don't need CORS, but any web build does) diff --git a/ev_backend/entrypoint.sh b/ev_backend/entrypoint.sh new file mode 100755 index 0000000..a7d80b2 --- /dev/null +++ b/ev_backend/entrypoint.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env sh +# Production entrypoint: apply migrations, then exec the given command (Gunicorn). +set -e + +echo "Running database migrations..." +python manage.py migrate --noinput + +# Collect static in case the image was built without them (idempotent). +python manage.py collectstatic --noinput >/dev/null 2>&1 || true + +echo "Starting: $*" +exec "$@" diff --git a/ev_backend/ev_backend/__pycache__/__init__.cpython-311.pyc b/ev_backend/ev_backend/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 34c3389..0000000 Binary files a/ev_backend/ev_backend/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/__init__.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5dbc58e..0000000 Binary files a/ev_backend/ev_backend/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/csrf_exempt.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/csrf_exempt.cpython-312.pyc deleted file mode 100644 index 24ff132..0000000 Binary files a/ev_backend/ev_backend/__pycache__/csrf_exempt.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/schema.cpython-311.pyc b/ev_backend/ev_backend/__pycache__/schema.cpython-311.pyc deleted file mode 100644 index ffb6b45..0000000 Binary files a/ev_backend/ev_backend/__pycache__/schema.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/schema.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 66c57f9..0000000 Binary files a/ev_backend/ev_backend/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/settings.cpython-311.pyc b/ev_backend/ev_backend/__pycache__/settings.cpython-311.pyc deleted file mode 100644 index 369156c..0000000 Binary files a/ev_backend/ev_backend/__pycache__/settings.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/settings.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index 29e0dfb..0000000 Binary files a/ev_backend/ev_backend/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/urls.cpython-311.pyc b/ev_backend/ev_backend/__pycache__/urls.cpython-311.pyc deleted file mode 100644 index dfe7918..0000000 Binary files a/ev_backend/ev_backend/__pycache__/urls.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/urls.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index a727016..0000000 Binary files a/ev_backend/ev_backend/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/wsgi.cpython-311.pyc b/ev_backend/ev_backend/__pycache__/wsgi.cpython-311.pyc deleted file mode 100644 index 68723b5..0000000 Binary files a/ev_backend/ev_backend/__pycache__/wsgi.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/__pycache__/wsgi.cpython-312.pyc b/ev_backend/ev_backend/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index fe5c78c..0000000 Binary files a/ev_backend/ev_backend/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/ev_backend/health.py b/ev_backend/ev_backend/health.py index ad3537b..728cbaf 100644 --- a/ev_backend/ev_backend/health.py +++ b/ev_backend/ev_backend/health.py @@ -1,18 +1,20 @@ -"""Operational endpoints (Sprint 5, Part 7). +"""Operational endpoints (Sprint 5 Part 7 / Sprint 6 Part 6). -Plain HTTP JSON endpoints suitable for load-balancer / orchestrator probes, -independent of the GraphQL layer: +Plain HTTP JSON endpoints for load-balancer / orchestrator probes, independent +of the GraphQL layer: GET /health/ liveness — process is up - GET /ready/ readiness — database is reachable (503 if not) + GET /live/ liveness — alias, for k8s livenessProbe + GET /ready/ readiness — database + cache reachable (503 if not) GET /version/ build version -Failure details are never leaked: readiness reports a coarse status only. +Failure details are never leaked: readiness reports coarse status only. """ import logging from django.conf import settings +from django.core.cache import cache from django.db import connections from django.http import JsonResponse @@ -20,27 +22,47 @@ def health(request): + """Liveness: the process is up and able to serve.""" return JsonResponse({"status": "ok", "version": settings.APP_VERSION}) +# Alias so both /health/ and /live/ work as liveness probes. +liveness = health + + def version(request): return JsonResponse({"version": settings.APP_VERSION}) -def readiness(request): - db_ok = True +def _check_database(): try: - connection = connections["default"] - with connection.cursor() as cursor: + with connections["default"].cursor() as cursor: cursor.execute("SELECT 1") cursor.fetchone() + return True except Exception as exc: # pragma: no cover - exercised only on outage - db_ok = False logger.error("Readiness DB check failed: %r", exc) + return False + +def _check_cache(): + try: + cache.set("readiness:probe", "1", 5) + return cache.get("readiness:probe") == "1" + except Exception as exc: # pragma: no cover - exercised only on outage + logger.error("Readiness cache check failed: %r", exc) + return False + + +def readiness(request): + """Readiness: verify the app can reach its critical dependencies.""" + db_ok = _check_database() + cache_ok = _check_cache() + ready = db_ok and cache_ok body = { - "status": "ready" if db_ok else "not_ready", + "status": "ready" if ready else "not_ready", "database": "ok" if db_ok else "unavailable", + "cache": "ok" if cache_ok else "unavailable", "version": settings.APP_VERSION, } - return JsonResponse(body, status=200 if db_ok else 503) + return JsonResponse(body, status=200 if ready else 503) diff --git a/ev_backend/ev_backend/security_headers.py b/ev_backend/ev_backend/security_headers.py new file mode 100644 index 0000000..f4c311e --- /dev/null +++ b/ev_backend/ev_backend/security_headers.py @@ -0,0 +1,19 @@ +"""Adds security headers Django has no built-in setting for (Sprint 6, Part 2). + +Currently sets ``Permissions-Policy``. HSTS, nosniff, referrer-policy and +X-Frame-Options are handled by Django's SecurityMiddleware via settings. +""" + +from django.conf import settings + + +class SecurityHeadersMiddleware: + def __init__(self, get_response): + self.get_response = get_response + self.permissions_policy = getattr(settings, "PERMISSIONS_POLICY", "") + + def __call__(self, request): + response = self.get_response(request) + if self.permissions_policy: + response.setdefault("Permissions-Policy", self.permissions_policy) + return response diff --git a/ev_backend/ev_backend/settings.py b/ev_backend/ev_backend/settings.py index c3cd61e..ead7b40 100644 --- a/ev_backend/ev_backend/settings.py +++ b/ev_backend/ev_backend/settings.py @@ -1,21 +1,26 @@ from pathlib import Path -from decouple import config +from decouple import config, Csv import os BASE_DIR = Path(__file__).resolve().parent.parent -# Loaded from the environment in production; the insecure literal is a -# local-dev fallback only. Set DJANGO_SECRET_KEY (and rotate it) for any deploy. +# SECURITY: secret key comes from the environment. The insecure literal is a +# dev-only fallback; production startup validation (end of file) rejects it. SECRET_KEY = config('DJANGO_SECRET_KEY', default='django-insecure-y8yd0nrw5l)wp^7gjmcv#%04pphh$5pio!1pzg06550g%w1h)e') -# SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True +# Debug is OFF by default. Development enables it with DJANGO_DEBUG=True (.env). +DEBUG = config('DJANGO_DEBUG', default=False, cast=bool) -ALLOWED_HOSTS = ['127.0.0.1', 'localhost', '10.0.2.2', '172.24.143.62', '0.0.0.0', '*'] +# Permissive localhost set in dev; explicit, env-driven allow-list in production. +ALLOWED_HOSTS = config( + 'DJANGO_ALLOWED_HOSTS', + default='127.0.0.1,localhost,0.0.0.0,10.0.2.2' if DEBUG else '', + cast=Csv(), +) MEDIA_URL = '/media/' -MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_ROOT = config('MEDIA_ROOT', default=os.path.join(BASE_DIR, 'media')) INSTALLED_APPS = [ 'django.contrib.admin', @@ -40,8 +45,15 @@ 'x-requested-with', ] -CORS_ALLOW_ALL_ORIGINS = True -CORS_ALLOW_CREDENTIALS = True +# CORS: allow any origin only in development; production uses an explicit list +# supplied via CORS_ALLOWED_ORIGINS (comma-separated, supports multiple frontends). +CORS_ALLOW_ALL_ORIGINS = DEBUG +if not DEBUG: + CORS_ALLOWED_ORIGINS = config('CORS_ALLOWED_ORIGINS', default='', cast=Csv()) +CORS_ALLOW_CREDENTIALS = config('CORS_ALLOW_CREDENTIALS', default=False, cast=bool) + +# Trusted origins for CSRF-protected views (admin, browsable clients). +CSRF_TRUSTED_ORIGINS = config('CSRF_TRUSTED_ORIGINS', default='', cast=Csv()) GRAPHENE = { @@ -59,6 +71,7 @@ MIDDLEWARE = [ 'corsheaders.middleware.CorsMiddleware', 'django.middleware.security.SecurityMiddleware', + 'ev_backend.security_headers.SecurityHeadersMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', @@ -68,6 +81,17 @@ 'ev_backend.csrf_exempt.DisableCSRF', ] +# Serve static files via WhiteNoise in production when the package is installed +# (see requirements.txt). Skipped gracefully in local dev environments without it. +try: + import whitenoise # noqa: F401 + MIDDLEWARE.insert( + MIDDLEWARE.index('django.middleware.security.SecurityMiddleware') + 1, + 'whitenoise.middleware.WhiteNoiseMiddleware', + ) +except ImportError: + pass + ROOT_URLCONF = 'ev_backend.urls' TEMPLATES = [ @@ -91,12 +115,25 @@ # Database # https://docs.djangoproject.com/en/5.2/ref/settings/#databases -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', +# Production databases are configured via DATABASE_URL (e.g. Postgres); local +# development falls back to SQLite. conn_max_age keeps connections pooled. +DATABASE_URL = config('DATABASE_URL', default='') +if DATABASE_URL: + import dj_database_url + DATABASES = { + 'default': dj_database_url.parse( + DATABASE_URL, + conn_max_age=config('DB_CONN_MAX_AGE', default=600, cast=int), + ssl_require=config('DB_SSL_REQUIRE', default=False, cast=bool), + ) + } +else: + DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } } -} # Credential (PIN) validation @@ -127,6 +164,19 @@ # https://docs.djangoproject.com/en/5.2/howto/static-files/ STATIC_URL = 'static/' +STATIC_ROOT = config('STATIC_ROOT', default=os.path.join(BASE_DIR, 'staticfiles')) + +# Compressed, cache-busted static files via WhiteNoise when installed. +try: + import whitenoise # noqa: F401 + STORAGES = { + "default": {"BACKEND": "django.core.files.storage.FileSystemStorage"}, + "staticfiles": { + "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage" + }, + } +except ImportError: + pass # Default primary key field type # https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field @@ -134,17 +184,22 @@ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' -if DEBUG: - EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' -else: - EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' - -EMAIL_HOST = 'smtp.gmail.com' -EMAIL_PORT = 587 -EMAIL_USE_TLS = True -EMAIL_HOST_USER = config('EMAIL_HOST_USER') -EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD') -DEFAULT_FROM_EMAIL = f'EV Charging <{config("EMAIL_HOST_USER")}>' +# Email is fully env-driven with safe defaults so settings import even without a +# .env (needed for CI/tests). Console backend in dev; SMTP in production. +EMAIL_BACKEND = config( + 'EMAIL_BACKEND', + default='django.core.mail.backends.console.EmailBackend' if DEBUG + else 'django.core.mail.backends.smtp.EmailBackend', +) +EMAIL_HOST = config('EMAIL_HOST', default='smtp.gmail.com') +EMAIL_PORT = config('EMAIL_PORT', default=587, cast=int) +EMAIL_USE_TLS = config('EMAIL_USE_TLS', default=True, cast=bool) +EMAIL_HOST_USER = config('EMAIL_HOST_USER', default='') +EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD', default='') +DEFAULT_FROM_EMAIL = config( + 'DEFAULT_FROM_EMAIL', + default=f'EV Charging <{EMAIL_HOST_USER or "no-reply@example.com"}>', +) # --------------------------------------------------------------------------- # Sprint 3 — Authentication hardening @@ -200,21 +255,43 @@ # Structured authentication logging (Part 5). The accounts.auth_logging helper # scrubs sensitive fields, so PINs/OTPs/tokens are never written here. +# All handlers write to stdout, which is log-rotation friendly (the container/ +# platform captures and rotates stdout). Security-relevant loggers are separated +# from application logs. Sensitive values are scrubbed before logging by the +# accounts.auth_logging helper — PINs/OTPs/JWTs/secrets are never written. LOGGING = { "version": 1, "disable_existing_loggers": False, "formatters": { + "verbose": {"format": "%(asctime)s %(levelname)s %(name)s [%(process)d] %(message)s"}, "auth": {"format": "%(asctime)s %(levelname)s %(name)s %(message)s"}, }, "handlers": { - "auth_console": {"class": "logging.StreamHandler", "formatter": "auth"}, + "console": {"class": "logging.StreamHandler", "formatter": "verbose"}, + "security_console": {"class": "logging.StreamHandler", "formatter": "auth"}, }, + "root": {"handlers": ["console"], "level": config('LOG_LEVEL', default='INFO')}, "loggers": { + "django": { + "handlers": ["console"], + "level": config('DJANGO_LOG_LEVEL', default='INFO'), + "propagate": False, + }, + "django.request": {"handlers": ["console"], "level": "ERROR", "propagate": False}, + "ev_backend": { + "handlers": ["console"], + "level": config('APP_LOG_LEVEL', default='INFO'), + "propagate": False, + }, + # --- security-relevant loggers --- "accounts.auth": { - "handlers": ["auth_console"], + "handlers": ["security_console"], "level": config('AUTH_LOG_LEVEL', default='INFO'), "propagate": False, }, + "ev_backend.graphql": {"handlers": ["console"], "level": "WARNING", "propagate": False}, + "ev_backend.security": {"handlers": ["security_console"], "level": "INFO", "propagate": False}, + "ev_backend.health": {"handlers": ["console"], "level": "WARNING", "propagate": False}, }, } @@ -264,3 +341,58 @@ # Caching (Part 6) — public station list only; never user-specific data. STATION_LIST_CACHE_SECONDS = config('STATION_LIST_CACHE_SECONDS', default=30, cast=int) + +# --------------------------------------------------------------------------- +# Sprint 6 — Production readiness & deployment hardening +# --------------------------------------------------------------------------- + +# --- Security headers (Part 2) — safe in dev; HTTPS-only ones gated on prod --- +SECURE_CONTENT_TYPE_NOSNIFF = True # X-Content-Type-Options +SECURE_REFERRER_POLICY = config('SECURE_REFERRER_POLICY', default='strict-origin-when-cross-origin') +X_FRAME_OPTIONS = config('X_FRAME_OPTIONS', default='DENY') +PERMISSIONS_POLICY = config('PERMISSIONS_POLICY', default='geolocation=(), microphone=(), camera=()') + +if not DEBUG: + # Behind a TLS-terminating proxy/load balancer. + SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') + SECURE_SSL_REDIRECT = config('SECURE_SSL_REDIRECT', default=True, cast=bool) + SECURE_HSTS_SECONDS = config('SECURE_HSTS_SECONDS', default=31536000, cast=int) + SECURE_HSTS_INCLUDE_SUBDOMAINS = config('SECURE_HSTS_INCLUDE_SUBDOMAINS', default=True, cast=bool) + SECURE_HSTS_PRELOAD = config('SECURE_HSTS_PRELOAD', default=True, cast=bool) + SESSION_COOKIE_SECURE = True + CSRF_COOKIE_SECURE = True + SESSION_COOKIE_HTTPONLY = True + SESSION_COOKIE_SAMESITE = config('SESSION_COOKIE_SAMESITE', default='Lax') + CSRF_COOKIE_SAMESITE = config('CSRF_COOKIE_SAMESITE', default='Lax') + +# --- Fail-fast environment validation (Part 4) --- +# In production, refuse to start if required secure configuration is missing. +# Skipped while running the test suite so `manage.py test` works without a full +# production environment. +import sys as _sys + +_RUNNING_TESTS = 'test' in _sys.argv +if (not DEBUG and not _RUNNING_TESTS + and config('DJANGO_SKIP_PROD_CHECK', default=False, cast=bool) is False): + from django.core.exceptions import ImproperlyConfigured + + _problems = [] + if SECRET_KEY.startswith('django-insecure'): + _problems.append('DJANGO_SECRET_KEY must be a strong, unique secret (not the dev default).') + if not ALLOWED_HOSTS: + _problems.append('DJANGO_ALLOWED_HOSTS must list the production host(s).') + if str(GRAPHQL_JWT.get('JWT_SECRET_KEY', '')).startswith('django-insecure'): + _problems.append('JWT_SECRET_KEY (or DJANGO_SECRET_KEY) must be a strong secret.') + if EMAIL_BACKEND.endswith('smtp.EmailBackend') and not (EMAIL_HOST_USER and EMAIL_HOST_PASSWORD): + _problems.append('EMAIL_HOST_USER/EMAIL_HOST_PASSWORD are required for SMTP email (OTP delivery).') + if not DATABASE_URL and DATABASES['default']['ENGINE'].endswith('sqlite3'): + _problems.append('DATABASE_URL must point at a production database (SQLite is not supported in production).') + if not CACHES.get('default'): + _problems.append('A cache backend must be configured (set REDIS_URL for a shared cache).') + + if _problems: + raise ImproperlyConfigured( + 'Refusing to start: production configuration is incomplete.\n- ' + + '\n- '.join(_problems) + + '\n(Set DJANGO_DEBUG=True for local development, or fix the above for production.)' + ) diff --git a/ev_backend/ev_backend/urls.py b/ev_backend/ev_backend/urls.py index b3dc396..2119155 100644 --- a/ev_backend/ev_backend/urls.py +++ b/ev_backend/ev_backend/urls.py @@ -13,8 +13,9 @@ # safe error masking are applied by HardenedGraphQLView. path("graphql/", HardenedGraphQLView.as_view(graphiql=settings.DEBUG)), - # Operational endpoints (Part 7). + # Operational endpoints (Part 6/7). path("health/", health.health), + path("live/", health.liveness), path("ready/", health.readiness), path("version/", health.version), ] diff --git a/ev_backend/gunicorn.conf.py b/ev_backend/gunicorn.conf.py new file mode 100644 index 0000000..43af878 --- /dev/null +++ b/ev_backend/gunicorn.conf.py @@ -0,0 +1,22 @@ +"""Gunicorn production configuration. + +Values are environment-overridable. Worker count defaults to the common +(2 * CPU) + 1 heuristic; tune per instance size. +""" + +import multiprocessing +import os + +bind = os.environ.get("GUNICORN_BIND", "0.0.0.0:8000") +workers = int(os.environ.get("GUNICORN_WORKERS", (multiprocessing.cpu_count() * 2) + 1)) +threads = int(os.environ.get("GUNICORN_THREADS", 2)) +timeout = int(os.environ.get("GUNICORN_TIMEOUT", 30)) +graceful_timeout = int(os.environ.get("GUNICORN_GRACEFUL_TIMEOUT", 30)) +keepalive = int(os.environ.get("GUNICORN_KEEPALIVE", 5)) +max_requests = int(os.environ.get("GUNICORN_MAX_REQUESTS", 1000)) +max_requests_jitter = int(os.environ.get("GUNICORN_MAX_REQUESTS_JITTER", 100)) + +# Log to stdout/stderr so the platform captures and rotates logs. +accesslog = "-" +errorlog = "-" +loglevel = os.environ.get("GUNICORN_LOG_LEVEL", "info") diff --git a/ev_backend/pyproject.toml b/ev_backend/pyproject.toml new file mode 100644 index 0000000..3c63c4d --- /dev/null +++ b/ev_backend/pyproject.toml @@ -0,0 +1,12 @@ +[tool.ruff] +target-version = "py312" +line-length = 120 +extend-exclude = ["migrations", "venv", ".venv", "staticfiles"] + +[tool.ruff.lint] +# Critical correctness rules only (syntax errors, undefined names, f-string +# misuse). Keeps CI meaningful without failing on pre-existing style choices. +select = ["E9", "F63", "F7", "F82"] + +[tool.coverage.run] +omit = ["*/migrations/*", "*/tests*.py", "*/venv/*", "manage.py", "*/wsgi.py", "*/asgi.py"] diff --git a/ev_backend/requirements-dev.txt b/ev_backend/requirements-dev.txt new file mode 100644 index 0000000..a1289bd --- /dev/null +++ b/ev_backend/requirements-dev.txt @@ -0,0 +1,7 @@ +# Development / CI tooling. Install with: pip install -r requirements-dev.txt +-r requirements.txt + +ruff==0.8.4 # linting +bandit==1.8.0 # security static analysis +pip-audit==2.7.3 # dependency vulnerability scanning +coverage==7.6.9 # test coverage diff --git a/ev_backend/requirements.txt b/ev_backend/requirements.txt new file mode 100644 index 0000000..beb6883 --- /dev/null +++ b/ev_backend/requirements.txt @@ -0,0 +1,31 @@ +# Runtime dependencies (pinned). Generated to match the working environment +# plus the packages required to run in production. + +# --- Framework & API --- +Django==5.2.7 +graphene==3.4.3 +graphene-django==3.2.3 +graphene-file-upload==1.3.0 +django-graphql-jwt==0.4.0 +django-cors-headers==4.9.0 +djangorestframework==3.16.1 +graphql-core==3.2.6 +graphql-relay==3.2.0 + +# --- Auth / utils --- +PyJWT==2.10.1 +python-decouple==3.8 +promise==2.3 +python-dateutil==2.9.0.post0 +sqlparse==0.5.3 +asgiref==3.9.2 + +# --- Media handling --- +Pillow==11.3.0 + +# --- Production server & infrastructure --- +gunicorn==23.0.0 +whitenoise==6.8.2 +dj-database-url==2.3.0 +psycopg[binary]==3.2.3 +redis==5.2.1 diff --git a/ev_backend/scripts/backup_db.sh b/ev_backend/scripts/backup_db.sh new file mode 100755 index 0000000..74c6d35 --- /dev/null +++ b/ev_backend/scripts/backup_db.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +# Database backup (PostgreSQL). Produces a timestamped, compressed dump. +# +# Usage: +# DATABASE_URL=postgres://user:pass@host:5432/db ./scripts/backup_db.sh [dest_dir] +# +# Restore with scripts/restore_db.sh. Schedule via cron/systemd-timer/k8s CronJob. +set -euo pipefail + +: "${DATABASE_URL:?Set DATABASE_URL to the Postgres connection string}" +DEST_DIR="${1:-./backups}" +mkdir -p "$DEST_DIR" + +STAMP="$(date -u +%Y%m%dT%H%M%SZ)" +OUT="${DEST_DIR}/db_${STAMP}.sql.gz" + +echo "Backing up database to ${OUT} ..." +pg_dump "$DATABASE_URL" --no-owner --no-privileges | gzip > "$OUT" +echo "Done: ${OUT}" + +# Optional retention: delete dumps older than RETENTION_DAYS (default 14). +RETENTION_DAYS="${RETENTION_DAYS:-14}" +find "$DEST_DIR" -name 'db_*.sql.gz' -mtime "+${RETENTION_DAYS}" -delete || true diff --git a/ev_backend/scripts/backup_media.sh b/ev_backend/scripts/backup_media.sh new file mode 100755 index 0000000..527f38c --- /dev/null +++ b/ev_backend/scripts/backup_media.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash +# Media backup: archive the uploaded-files directory (station images, etc.). +# +# Usage: +# MEDIA_ROOT=/app/media ./scripts/backup_media.sh [dest_dir] +# +# For object storage (S3/GCS) prefer native bucket versioning/replication instead. +set -euo pipefail + +MEDIA_ROOT="${MEDIA_ROOT:-./media}" +DEST_DIR="${1:-./backups}" +mkdir -p "$DEST_DIR" + +[ -d "$MEDIA_ROOT" ] || { echo "MEDIA_ROOT not found: $MEDIA_ROOT" >&2; exit 1; } + +STAMP="$(date -u +%Y%m%dT%H%M%SZ)" +OUT="${DEST_DIR}/media_${STAMP}.tar.gz" + +echo "Archiving ${MEDIA_ROOT} to ${OUT} ..." +tar -czf "$OUT" -C "$(dirname "$MEDIA_ROOT")" "$(basename "$MEDIA_ROOT")" +echo "Done: ${OUT}" + +RETENTION_DAYS="${RETENTION_DAYS:-14}" +find "$DEST_DIR" -name 'media_*.tar.gz' -mtime "+${RETENTION_DAYS}" -delete || true diff --git a/ev_backend/scripts/restore_db.sh b/ev_backend/scripts/restore_db.sh new file mode 100755 index 0000000..5498e43 --- /dev/null +++ b/ev_backend/scripts/restore_db.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash +# Restore a PostgreSQL database from a gzipped dump produced by backup_db.sh. +# +# Usage: +# DATABASE_URL=postgres://user:pass@host:5432/db ./scripts/restore_db.sh backups/db_XXXX.sql.gz +# +# WARNING: this applies the dump to the target database. Take a fresh backup and +# confirm you are pointed at the intended (non-production or maintenance) target. +set -euo pipefail + +: "${DATABASE_URL:?Set DATABASE_URL to the Postgres connection string}" +DUMP="${1:?Pass the path to a db_*.sql.gz dump}" +[ -f "$DUMP" ] || { echo "No such file: $DUMP" >&2; exit 1; } + +read -r -p "Restore ${DUMP} into ${DATABASE_URL%%\?*}? [y/N] " confirm +[ "$confirm" = "y" ] || { echo "Aborted."; exit 1; } + +echo "Restoring ${DUMP} ..." +gunzip -c "$DUMP" | psql "$DATABASE_URL" -v ON_ERROR_STOP=1 +echo "Restore complete. Run migrations if the dump predates schema changes:" +echo " python manage.py migrate --noinput" diff --git a/ev_backend/stations/__pycache__/__init__.cpython-311.pyc b/ev_backend/stations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b03f93c..0000000 Binary files a/ev_backend/stations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/__init__.cpython-312.pyc b/ev_backend/stations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bf8ed7a..0000000 Binary files a/ev_backend/stations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/admin.cpython-311.pyc b/ev_backend/stations/__pycache__/admin.cpython-311.pyc deleted file mode 100644 index 72b69c4..0000000 Binary files a/ev_backend/stations/__pycache__/admin.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/admin.cpython-312.pyc b/ev_backend/stations/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 101b423..0000000 Binary files a/ev_backend/stations/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/apps.cpython-311.pyc b/ev_backend/stations/__pycache__/apps.cpython-311.pyc deleted file mode 100644 index 95004f6..0000000 Binary files a/ev_backend/stations/__pycache__/apps.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/apps.cpython-312.pyc b/ev_backend/stations/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 2253b82..0000000 Binary files a/ev_backend/stations/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/models.cpython-311.pyc b/ev_backend/stations/__pycache__/models.cpython-311.pyc deleted file mode 100644 index 10bc86b..0000000 Binary files a/ev_backend/stations/__pycache__/models.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/models.cpython-312.pyc b/ev_backend/stations/__pycache__/models.cpython-312.pyc deleted file mode 100644 index aa04286..0000000 Binary files a/ev_backend/stations/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/schema.cpython-311.pyc b/ev_backend/stations/__pycache__/schema.cpython-311.pyc deleted file mode 100644 index 4a5e17f..0000000 Binary files a/ev_backend/stations/__pycache__/schema.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/__pycache__/schema.cpython-312.pyc b/ev_backend/stations/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 94cba5d..0000000 Binary files a/ev_backend/stations/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-311.pyc b/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-311.pyc deleted file mode 100644 index 5a4d9bc..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 2ac2409..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-311.pyc b/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-311.pyc deleted file mode 100644 index df1b9ec..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-312.pyc b/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-312.pyc deleted file mode 100644 index b854921..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0002_remove_station_average_rate_and_more.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-311.pyc b/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-311.pyc deleted file mode 100644 index 5dbda3a..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-312.pyc b/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-312.pyc deleted file mode 100644 index c5e6a0c..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/0003_remove_station_is_favorite_favorite.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/__init__.cpython-311.pyc b/ev_backend/stations/migrations/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 0e11f4c..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/ev_backend/stations/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/stations/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 02216ba..0000000 Binary files a/ev_backend/stations/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/stations/test_sprint5.py b/ev_backend/stations/test_sprint5.py index b4f4e7c..015ef55 100644 --- a/ev_backend/stations/test_sprint5.py +++ b/ev_backend/stations/test_sprint5.py @@ -105,10 +105,17 @@ def test_health(self): self.assertEqual(res.status_code, 200) self.assertEqual(res.json()["status"], "ok") - def test_readiness_db_ok(self): + def test_liveness(self): + res = DjangoClient().get("/live/") + self.assertEqual(res.status_code, 200) + self.assertEqual(res.json()["status"], "ok") + + def test_readiness_db_and_cache_ok(self): res = DjangoClient().get("/ready/") self.assertEqual(res.status_code, 200) - self.assertEqual(res.json()["database"], "ok") + body = res.json() + self.assertEqual(body["database"], "ok") + self.assertEqual(body["cache"], "ok") def test_version(self): res = DjangoClient().get("/version/") diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/AvifImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/AvifImagePlugin.cpython-312.pyc deleted file mode 100644 index e380d2e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/AvifImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc deleted file mode 100644 index dd7c027..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc deleted file mode 100644 index b0f83fb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc deleted file mode 100644 index 241dbf8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc deleted file mode 100644 index 3fed8e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc deleted file mode 100644 index 572e731..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc deleted file mode 100644 index d3942cd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc deleted file mode 100644 index 26b14d2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc deleted file mode 100644 index 30cfbbb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc deleted file mode 100644 index 3b536d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc deleted file mode 100644 index bede5ff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc deleted file mode 100644 index 3587538..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc deleted file mode 100644 index 425c2da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc deleted file mode 100644 index 469b2a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc deleted file mode 100644 index 3a63710..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc deleted file mode 100644 index 02353a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc deleted file mode 100644 index 5530bf3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc deleted file mode 100644 index 8d4f88f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc deleted file mode 100644 index fb75ff5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc deleted file mode 100644 index 426d3e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc deleted file mode 100644 index de11fce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc deleted file mode 100644 index 727758a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc deleted file mode 100644 index 159a92f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc deleted file mode 100644 index 2f6b76f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc deleted file mode 100644 index 6d19d39..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc deleted file mode 100644 index 10fe048..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc deleted file mode 100644 index daa137d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc deleted file mode 100644 index c3d4235..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc deleted file mode 100644 index b234b55..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc deleted file mode 100644 index 02e9359..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc deleted file mode 100644 index 09d0717..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc deleted file mode 100644 index b619f17..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc deleted file mode 100644 index 89d0776..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc deleted file mode 100644 index aa8dd4d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc deleted file mode 100644 index 3a42216..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc deleted file mode 100644 index f2d7224..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc deleted file mode 100644 index ded7d44..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc deleted file mode 100644 index 82b6b32..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc deleted file mode 100644 index bf71d30..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc deleted file mode 100644 index af12786..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc deleted file mode 100644 index 0d8b8a3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc deleted file mode 100644 index 9d915f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc deleted file mode 100644 index 2c4e5f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc deleted file mode 100644 index b140869..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc deleted file mode 100644 index e12c2a6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc deleted file mode 100644 index 0eeaf3e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc deleted file mode 100644 index f926669..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc deleted file mode 100644 index c22a5fc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc deleted file mode 100644 index 7c003e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc deleted file mode 100644 index a727808..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc deleted file mode 100644 index 1ec9c26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc deleted file mode 100644 index 2acf944..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc deleted file mode 100644 index 856fb99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc deleted file mode 100644 index 6205604..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc deleted file mode 100644 index 4ab758f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc deleted file mode 100644 index 11376cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc deleted file mode 100644 index def2aee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc deleted file mode 100644 index 33458de..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc deleted file mode 100644 index 3cf3d83..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc deleted file mode 100644 index cd5b39e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc deleted file mode 100644 index 70c1624..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc deleted file mode 100644 index ecedcb8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc deleted file mode 100644 index d15c238..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc deleted file mode 100644 index 3a889f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc deleted file mode 100644 index 0f61e5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc deleted file mode 100644 index 3551b1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc deleted file mode 100644 index fcb3969..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc deleted file mode 100644 index fc93b53..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc deleted file mode 100644 index 16070c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc deleted file mode 100644 index 6be0029..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc deleted file mode 100644 index 96941e8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc deleted file mode 100644 index 6381e4f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc deleted file mode 100644 index 3cd6b74..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc deleted file mode 100644 index 8406d8a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc deleted file mode 100644 index 5db1b2d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc deleted file mode 100644 index 1e65fb9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc deleted file mode 100644 index e9d01d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc deleted file mode 100644 index b8f8d3f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc deleted file mode 100644 index 99c7d29..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc deleted file mode 100644 index 1a44909..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc deleted file mode 100644 index 532e6ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc deleted file mode 100644 index c301eef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc deleted file mode 100644 index ec4e9d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc deleted file mode 100644 index f70bf13..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc deleted file mode 100644 index 3d32b57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc deleted file mode 100644 index cdd4376..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e0900c8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index d8f5d0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc deleted file mode 100644 index e429f4b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc deleted file mode 100644 index f721df8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc deleted file mode 100644 index ea09a1c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc deleted file mode 100644 index 6e1b973..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc deleted file mode 100644 index 968c16d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc deleted file mode 100644 index 0635ac9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 67499b4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc deleted file mode 100644 index f3b6b6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/decouple.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/__pycache__/decouple.cpython-312.pyc deleted file mode 100644 index 78ee7dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/decouple.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/six.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/__pycache__/six.cpython-312.pyc deleted file mode 100644 index 9ade758..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/six.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/typing_extensions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/__pycache__/typing_extensions.cpython-312.pyc deleted file mode 100644 index 4a1fd62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/__pycache__/typing_extensions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9dbd3c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/compatibility.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/compatibility.cpython-312.pyc deleted file mode 100644 index f2a8601..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/compatibility.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/current_thread_executor.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/current_thread_executor.cpython-312.pyc deleted file mode 100644 index 45726ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/current_thread_executor.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/local.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/local.cpython-312.pyc deleted file mode 100644 index a717595..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/local.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/server.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/server.cpython-312.pyc deleted file mode 100644 index 9e4d7c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/server.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/sync.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/sync.cpython-312.pyc deleted file mode 100644 index f96e7fd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/sync.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/testing.cpython-312.pyc deleted file mode 100644 index 574ee58..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/timeout.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/timeout.cpython-312.pyc deleted file mode 100644 index fe983aa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/timeout.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/typing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/typing.cpython-312.pyc deleted file mode 100644 index 688bc90..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/typing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/wsgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index 2324d1e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/asgiref/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 34b4862..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index d5b91cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index 0ae1a66..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/conf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/conf.cpython-312.pyc deleted file mode 100644 index 4de4f7a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/conf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/defaults.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/defaults.cpython-312.pyc deleted file mode 100644 index 4c98385..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/defaults.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 6a79fd7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index ff9e5fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/corsheaders/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f403947..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_common.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_common.cpython-312.pyc deleted file mode 100644 index 6e8e093..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_common.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_version.cpython-312.pyc deleted file mode 100644 index 81683db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/_version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/easter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/easter.cpython-312.pyc deleted file mode 100644 index 8717f76..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/easter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/relativedelta.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/relativedelta.cpython-312.pyc deleted file mode 100644 index f50e425..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/relativedelta.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/rrule.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/rrule.cpython-312.pyc deleted file mode 100644 index d83af95..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/rrule.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/tzwin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/tzwin.cpython-312.pyc deleted file mode 100644 index 8c1c93c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/tzwin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 38c268a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9eefc6b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/_parser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/_parser.cpython-312.pyc deleted file mode 100644 index 9d82282..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/_parser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/isoparser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/isoparser.cpython-312.pyc deleted file mode 100644 index c404eda..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/parser/__pycache__/isoparser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5c6e05d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_common.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_common.cpython-312.pyc deleted file mode 100644 index cfa8bc7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_common.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_factories.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_factories.cpython-312.pyc deleted file mode 100644 index e7b9845..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/_factories.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/tz.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/tz.cpython-312.pyc deleted file mode 100644 index ea162bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/tz.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/win.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/win.cpython-312.pyc deleted file mode 100644 index 799da75..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/tz/__pycache__/win.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6757c19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-312.pyc deleted file mode 100644 index 392d959..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 276511a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index 4243622..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/shortcuts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/shortcuts.cpython-312.pyc deleted file mode 100644 index 7a3bcbf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/__pycache__/shortcuts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index fc8db18..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/config.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/config.cpython-312.pyc deleted file mode 100644 index a78bcd5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/config.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/registry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/registry.cpython-312.pyc deleted file mode 100644 index 99dd8a8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/apps/__pycache__/registry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e156f81..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/global_settings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/global_settings.cpython-312.pyc deleted file mode 100644 index a65a25b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/__pycache__/global_settings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 393c194..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bd015ef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index f1974f3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 31bb9c4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 92e8f6b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2d2d9e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 10e1e39..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/az/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9f0dd54..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 4e94b0b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ae4cb89..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0ec0fce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7a13227..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 49cdf70..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3ae2233..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 252bed1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7310a7f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index d1ef57c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d0d2053..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c6f0dc7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7785295..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 199ab2c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 15971e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 881bcc7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/da/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ea61e1f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8110ee6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dbfeb7a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 61ebd1c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d43f32b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 58e3ec4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/el/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ed3d409..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 70ac3e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 505a5a9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 03e3f49..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c4e6a8e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 1885b12..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_CA/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 576dd80..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 19078ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d4c5d57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 39d549f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/en_IE/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ebf7e15..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index b42ed8a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7bc31db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 5f18749..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 62fc1b6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 008f0a4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b8f9eeb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 4ea5005..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0b10ad0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0fa6fd1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d325bae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index a077fb1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6c2d89e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 2c2ba3d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 45d36b0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c1caeff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/et/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a37eb01..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 267797b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2bbbef2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 67abf95..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 77db5f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 86b5bd7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9a7c4f9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 4249ad8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 05b5fe9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index a3e43ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6b9f0c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 5006c8d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CA/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bc23296..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8a4dc9f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 45b968c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 3108b67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 68cb00b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8f12dd3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3f13ea7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8e43119..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bcecb41..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 5c26e74..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 981864b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 058847b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/he/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 57d3299..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c61913c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 058ea6e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8110070..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6f67685..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7dcfa76..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 82a5a7d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 9f1e221..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/id/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 637f27d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 3055aa1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index be9d866..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index e71a029..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/is/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a990cf9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c87918a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/it/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0c40c99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 6f12753..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d12ee52..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 33a9fa5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9f97d64..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index e4d4d70..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/km/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dd466ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7c3cb38..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 29f8774..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0a70675..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 54947bb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0a7d0dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 24fe947..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 748f53d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 112b8fe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index de7177a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9516950..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index e41339a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e3db0aa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 2fd5653..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 46cd96d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c9f7bbb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dd33a0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 71c394e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 802bcd0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 90c102c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 63c6e99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7d2e3e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 78f141c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0ab74c1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 089314c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 0673a8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6d3f45b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 054ae99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9ce8e23..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 1124be7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 367ca6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 2c8c5ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5034b16..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7908aff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index edb7ed0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index d8ad437..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5c2d7bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 245109f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d3395bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 4ca8b16..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d022019..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 322fabe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 690d817..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index a3e5d8e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2f4219e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 9af1c43..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 15099bb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 043ca8b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 08a6143..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7efac54..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/te/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ae26523..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index b6c2a3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 708075a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index c8e1d74..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/th/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d4bfd08..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 01da462..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e59ef12..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index bb5b5f0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9ef8ebe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 6a907fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/ug/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0a43dfe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 7c51936..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6a9f3ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index f8f21d8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c6edbe8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 3cf8a94..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1bc593c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 469d586..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 363f3a8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 04316ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0e42169..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/i18n.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/i18n.cpython-312.pyc deleted file mode 100644 index f75bb4b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/i18n.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/static.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/static.cpython-312.pyc deleted file mode 100644 index 2326aa6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/conf/urls/__pycache__/static.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c86bc2c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d73abf7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/actions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/actions.cpython-312.pyc deleted file mode 100644 index 500c981..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/actions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index a401906..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index e65bfb1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index 095ab38..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index e07a7f3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/filters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/filters.cpython-312.pyc deleted file mode 100644 index 81e6f1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/filters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index 0d5ab6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/helpers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/helpers.cpython-312.pyc deleted file mode 100644 index 0eaa6f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/helpers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/models.cpython-312.pyc deleted file mode 100644 index b73748f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/options.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/options.cpython-312.pyc deleted file mode 100644 index f084593..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/options.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/sites.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/sites.cpython-312.pyc deleted file mode 100644 index 6a9297a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/sites.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/tests.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/tests.cpython-312.pyc deleted file mode 100644 index c97b6f9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/tests.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index ae6df20..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/widgets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/widgets.cpython-312.pyc deleted file mode 100644 index 2b1cbfb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/__pycache__/widgets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 71e4676..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-312.pyc deleted file mode 100644 index f73413a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-312.pyc deleted file mode 100644 index 5a06616..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bafae47..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d3e3d67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-312.pyc deleted file mode 100644 index 1929ea1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-312.pyc deleted file mode 100644 index 563e288..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-312.pyc deleted file mode 100644 index 89fe2c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 9cc814f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-312.pyc deleted file mode 100644 index 82ec346..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index be5f2d8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-312.pyc deleted file mode 100644 index 0422b0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index c0f7652..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/main.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/main.cpython-312.pyc deleted file mode 100644 index e183ede..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admin/views/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ee143a9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 594c8f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 2855ef7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 022776f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 843668f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/views.cpython-312.pyc deleted file mode 100644 index fc3dc89..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/admindocs/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0c0bba3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index d28f40c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 14391f3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/backends.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/backends.cpython-312.pyc deleted file mode 100644 index 7b61de9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/backends.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/base_user.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/base_user.cpython-312.pyc deleted file mode 100644 index 2f2a058..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/base_user.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index 23c4a40..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-312.pyc deleted file mode 100644 index d536924..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index c72b80a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index ef8f8d8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/hashers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/hashers.cpython-312.pyc deleted file mode 100644 index 2ea4d37..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/hashers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index b6849fb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index 7044cef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 3e66591..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-312.pyc deleted file mode 100644 index 5096864..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index 3fbc398..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/tokens.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/tokens.cpython-312.pyc deleted file mode 100644 index 4e6e5e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/tokens.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index f4c8540..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/validators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/validators.cpython-312.pyc deleted file mode 100644 index 343d511..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/validators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 90b948b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 53e6b41..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-312.pyc deleted file mode 100644 index a0319cb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 855e9b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0a51e53..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-312.pyc deleted file mode 100644 index 4be32b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-312.pyc deleted file mode 100644 index 2f30bb9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index cb02ef9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-312.pyc deleted file mode 100644 index f46633b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-312.pyc deleted file mode 100644 index c992583..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-312.pyc deleted file mode 100644 index 61ec220..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-312.pyc deleted file mode 100644 index 0cdc92c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-312.pyc deleted file mode 100644 index 88a253c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-312.pyc deleted file mode 100644 index 73b0c22..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-312.pyc deleted file mode 100644 index 037aa1b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-312.pyc deleted file mode 100644 index 5bdff01..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-312.pyc deleted file mode 100644 index 835b049..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-312.pyc deleted file mode 100644 index 9bd98d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-312.pyc deleted file mode 100644 index 66800fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e2d9f0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index eb92e3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 2300896..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 5c965d5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index 1fead8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index e6a69c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index 7bf6eb8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 1a38519..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/prefetch.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/prefetch.cpython-312.pyc deleted file mode 100644 index 05995ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/prefetch.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 0918dc2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 74dca49..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bc6bc2c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-312.pyc deleted file mode 100644 index 2c03721..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 1171f5c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-312.pyc deleted file mode 100644 index 6b9743c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8f9d472..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 615ccd8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index efaf79f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 82ee8c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index a226d0f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 5b9e502..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 634e123..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-312.pyc deleted file mode 100644 index 8deb681..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 9cc0246..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/views.cpython-312.pyc deleted file mode 100644 index d8fc7d0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 3c12618..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4cc8a14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4a3ae8b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-312.pyc deleted file mode 100644 index 74e7696..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4778fbb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 0e9a1ad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/feeds.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/feeds.cpython-312.pyc deleted file mode 100644 index b1b3548..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/feeds.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geoip2.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geoip2.cpython-312.pyc deleted file mode 100644 index 4e94f13..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geoip2.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geometry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geometry.cpython-312.pyc deleted file mode 100644 index b109518..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/geometry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/measure.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/measure.cpython-312.pyc deleted file mode 100644 index a1f50d0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/measure.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/ptr.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/ptr.cpython-312.pyc deleted file mode 100644 index fb41a4e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/ptr.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-312.pyc deleted file mode 100644 index 50e65b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 357d8d7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bd4a64a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-312.pyc deleted file mode 100644 index 5793cd0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 03ededf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b1fca3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index d6dc376..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f2257b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-312.pyc deleted file mode 100644 index 0602edd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-312.pyc deleted file mode 100644 index d379c1d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-312.pyc deleted file mode 100644 index d8ba456..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 76f1571..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0d13e4d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 9fe6ab4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-312.pyc deleted file mode 100644 index f46707c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 0d22d64..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 0dfd424..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 4c3d249..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 232e83a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-312.pyc deleted file mode 100644 index a22d5f6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 3a42c9f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 89bb3bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index ac2b2c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 286be60..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 25c7979..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index cfa6027..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c1aaad2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-312.pyc deleted file mode 100644 index cb5917c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 57ad9d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-312.pyc deleted file mode 100644 index f44b923..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 49e2637..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 7bbed11..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-312.pyc deleted file mode 100644 index ff3ae9e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 0f49372..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-312.pyc deleted file mode 100644 index 313a8f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 9cb11e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 576e323..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-312.pyc deleted file mode 100644 index 66a0195..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 2e18352..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-312.pyc deleted file mode 100644 index d987e9f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-312.pyc deleted file mode 100644 index cadce25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 6042598..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-312.pyc deleted file mode 100644 index cf33fe2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index e10b82b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index d05c652..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a24a28f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-312.pyc deleted file mode 100644 index a202f8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index 12696e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-312.pyc deleted file mode 100644 index a9a8d34..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-312.pyc deleted file mode 100644 index d5b4251..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-312.pyc deleted file mode 100644 index 5f9f8cb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0d0933f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-312.pyc deleted file mode 100644 index 9ae1c56..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bb9a028..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index fb2588d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-312.pyc deleted file mode 100644 index ce58615..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f65f418..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 867bcd5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-312.pyc deleted file mode 100644 index c97bd3b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-312.pyc deleted file mode 100644 index b15c5f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-312.pyc deleted file mode 100644 index 2a104d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-312.pyc deleted file mode 100644 index fd353cd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-312.pyc deleted file mode 100644 index 62bf6df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-312.pyc deleted file mode 100644 index 9040932..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-312.pyc deleted file mode 100644 index 294b5af..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-312.pyc deleted file mode 100644 index a6e4f3d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-312.pyc deleted file mode 100644 index cfe91f2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-312.pyc deleted file mode 100644 index 38d46ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-312.pyc deleted file mode 100644 index 045bc90..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dc03aff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-312.pyc deleted file mode 100644 index 049b004..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-312.pyc deleted file mode 100644 index 75333ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-312.pyc deleted file mode 100644 index 121d066..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-312.pyc deleted file mode 100644 index 0b06e48..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-312.pyc deleted file mode 100644 index 6bb49c0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-312.pyc deleted file mode 100644 index 5110b08..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4b969c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-312.pyc deleted file mode 100644 index 8f5a3f5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-312.pyc deleted file mode 100644 index b8eb1df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-312.pyc deleted file mode 100644 index 2d87c2a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-312.pyc deleted file mode 100644 index 1651b99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c261f26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 8683017..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-312.pyc deleted file mode 100644 index 5c30659..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-312.pyc deleted file mode 100644 index f285d19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-312.pyc deleted file mode 100644 index d127b5c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-312.pyc deleted file mode 100644 index 68f885a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-312.pyc deleted file mode 100644 index 460e943..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-312.pyc deleted file mode 100644 index 0d2c3f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-312.pyc deleted file mode 100644 index 9d2b54e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-312.pyc deleted file mode 100644 index 6de8f68..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-312.pyc deleted file mode 100644 index 89e5e4f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-312.pyc deleted file mode 100644 index c757365..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-312.pyc deleted file mode 100644 index 3fd920d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-312.pyc deleted file mode 100644 index 5580168..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f128ddf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-312.pyc deleted file mode 100644 index 235194a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-312.pyc deleted file mode 100644 index 25b0dca..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-312.pyc deleted file mode 100644 index 523eda6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-312.pyc deleted file mode 100644 index e5f4da7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-312.pyc deleted file mode 100644 index 348a80d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-312.pyc deleted file mode 100644 index b86701d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-312.pyc deleted file mode 100644 index 0308270..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-312.pyc deleted file mode 100644 index f7848df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-312.pyc deleted file mode 100644 index b7c730c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f3979db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1da1488..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-312.pyc deleted file mode 100644 index 2be3ab5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-312.pyc deleted file mode 100644 index ca3a010..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 544a8ff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-312.pyc deleted file mode 100644 index 06c9d09..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0ba0bfb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-312.pyc deleted file mode 100644 index 16b9243..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-312.pyc deleted file mode 100644 index c72e004..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ba7e535..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-312.pyc deleted file mode 100644 index 0380424..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-312.pyc deleted file mode 100644 index eb931a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-312.pyc deleted file mode 100644 index d92e67f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-312.pyc deleted file mode 100644 index 074dfa7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 55274cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 20b6a5c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 964ee62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-312.pyc deleted file mode 100644 index cee9029..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9618c80..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/api.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/api.cpython-312.pyc deleted file mode 100644 index 049dc31..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/api.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 8869ace..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/constants.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/constants.cpython-312.pyc deleted file mode 100644 index 2bc579c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/constants.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-312.pyc deleted file mode 100644 index e289111..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index dd3e399..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/test.cpython-312.pyc deleted file mode 100644 index d6c1b9d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index e3eecf6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 45e71a2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6d779fc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 7607ee5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-312.pyc deleted file mode 100644 index fe77350..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-312.pyc deleted file mode 100644 index 110b222..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-312.pyc deleted file mode 100644 index f86f13f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7af1d79..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index bbc5392..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-312.pyc deleted file mode 100644 index a1c9dfb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-312.pyc deleted file mode 100644 index 728173a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/functions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/functions.cpython-312.pyc deleted file mode 100644 index 6109b0d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/functions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-312.pyc deleted file mode 100644 index 46a77ce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-312.pyc deleted file mode 100644 index 2dfdad3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index a3e72f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/search.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/search.cpython-312.pyc deleted file mode 100644 index 5dbee2d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/search.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-312.pyc deleted file mode 100644 index 10d19ef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index 37a3686..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 302a8ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/validators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/validators.cpython-312.pyc deleted file mode 100644 index 528095f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/__pycache__/validators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0a409d2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-312.pyc deleted file mode 100644 index 8fd0690..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index aebaafa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-312.pyc deleted file mode 100644 index 3bd4999..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f1ea751..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-312.pyc deleted file mode 100644 index e003101..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-312.pyc deleted file mode 100644 index dbdc2d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-312.pyc deleted file mode 100644 index ea3c376..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-312.pyc deleted file mode 100644 index 76c75a5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-312.pyc deleted file mode 100644 index 4a97aff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index aba5171..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2c0b40d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-312.pyc deleted file mode 100644 index 441bc7c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-312.pyc deleted file mode 100644 index b149e4f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-312.pyc deleted file mode 100644 index 938e836..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dad86c6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 0635d2a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index ea8a1d3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index cd5c43d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 9b6a439..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 81459d7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-312.pyc deleted file mode 100644 index 6e3c68f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 70a0d17..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 885788e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index d07cef6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-312.pyc deleted file mode 100644 index 0d5ae6c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index d72191e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 7e90a80..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 02a666e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-312.pyc deleted file mode 100644 index fa8c80b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8c324cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-312.pyc deleted file mode 100644 index e53b70a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index aaa4207..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-312.pyc deleted file mode 100644 index 12e21e4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-312.pyc deleted file mode 100644 index 61907c4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-312.pyc deleted file mode 100644 index d5cfacc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-312.pyc deleted file mode 100644 index 8881995..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9c09374..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2f927ad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-312.pyc deleted file mode 100644 index 2a94545..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 7a30de8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 43f7bc5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7b0db4d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index c1084be..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 767619c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index aeb8445..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 7f18f90..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index d625907..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index a873ec5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/management.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/management.cpython-312.pyc deleted file mode 100644 index 75fb886..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/management.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/managers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/managers.cpython-312.pyc deleted file mode 100644 index e1f6cb0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/managers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 8de8d63..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/models.cpython-312.pyc deleted file mode 100644 index dfefaa4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/requests.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/requests.cpython-312.pyc deleted file mode 100644 index 9d9dc3c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/requests.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-312.pyc deleted file mode 100644 index e09d216..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index c7900d7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-312.pyc deleted file mode 100644 index fcbea26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4c1d2a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e8a0525..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index bdfae25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index 48f5714..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-312.pyc deleted file mode 100644 index 8bddec4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-312.pyc deleted file mode 100644 index f0c8227..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-312.pyc deleted file mode 100644 index 0e5b160..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-312.pyc deleted file mode 100644 index 88917dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index cd8b44a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index f3518e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 2c83702..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0b48043..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e501d2c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-312.pyc deleted file mode 100644 index 0e3cb49..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-312.pyc deleted file mode 100644 index ca4c515..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-312.pyc deleted file mode 100644 index 7d35e79..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 55ceac8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 120afae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 2815ef9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/contrib/syndication/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 238159e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/asgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/asgi.cpython-312.pyc deleted file mode 100644 index 492f721..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/asgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 3276935..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/paginator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/paginator.cpython-312.pyc deleted file mode 100644 index 8fabf0c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/paginator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index eb89da7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signing.cpython-312.pyc deleted file mode 100644 index fd12997..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/signing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/validators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/validators.cpython-312.pyc deleted file mode 100644 index 0845061..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/validators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/wsgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index d43475c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0e134d6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 397a87e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index cfa7fad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 52686b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/db.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/db.cpython-312.pyc deleted file mode 100644 index 755a1bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/db.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-312.pyc deleted file mode 100644 index 30093ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-312.pyc deleted file mode 100644 index 5f06247..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-312.pyc deleted file mode 100644 index 857cce4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-312.pyc deleted file mode 100644 index a63ce19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/redis.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/redis.cpython-312.pyc deleted file mode 100644 index e732aad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/cache/backends/__pycache__/redis.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3dc08c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/async_checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/async_checks.cpython-312.pyc deleted file mode 100644 index 7f9635a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/async_checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/caches.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/caches.cpython-312.pyc deleted file mode 100644 index 1c86148..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/caches.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/commands.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/commands.cpython-312.pyc deleted file mode 100644 index ff4ad89..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/commands.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/database.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/database.cpython-312.pyc deleted file mode 100644 index 355c642..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/database.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/files.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/files.cpython-312.pyc deleted file mode 100644 index a911f0c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/files.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/messages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/messages.cpython-312.pyc deleted file mode 100644 index 26bbf3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/messages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/model_checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/model_checks.cpython-312.pyc deleted file mode 100644 index ff93e56..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/model_checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/registry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/registry.cpython-312.pyc deleted file mode 100644 index c1cfa25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/registry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/templates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/templates.cpython-312.pyc deleted file mode 100644 index 82f377d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/templates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/translation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/translation.cpython-312.pyc deleted file mode 100644 index 8605f5e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/translation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index ee3aebb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 21082f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-312.pyc deleted file mode 100644 index 0cc9c41..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e3b6ce0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/base.cpython-312.pyc deleted file mode 100644 index d5d94e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/csrf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/csrf.cpython-312.pyc deleted file mode 100644 index b714357..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/csrf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/sessions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/sessions.cpython-312.pyc deleted file mode 100644 index fa57080..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/checks/security/__pycache__/sessions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 07f02c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 059ea00..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/images.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/images.cpython-312.pyc deleted file mode 100644 index 5cbab67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/images.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/locks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/locks.cpython-312.pyc deleted file mode 100644 index 4dd04c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/locks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/move.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/move.cpython-312.pyc deleted file mode 100644 index 72b3749..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/move.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/temp.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/temp.cpython-312.pyc deleted file mode 100644 index 71ca277..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/temp.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadedfile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadedfile.cpython-312.pyc deleted file mode 100644 index 86430cd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadedfile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadhandler.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadhandler.cpython-312.pyc deleted file mode 100644 index c009ec5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/uploadhandler.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 7c2fd5d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b6be7db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/base.cpython-312.pyc deleted file mode 100644 index d108227..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/filesystem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/filesystem.cpython-312.pyc deleted file mode 100644 index 18ec7c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/filesystem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/handler.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/handler.cpython-312.pyc deleted file mode 100644 index 8438c77..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/handler.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/memory.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/memory.cpython-312.pyc deleted file mode 100644 index 041baf3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/memory.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index c42bdde..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/files/storage/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index aa0e507..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/asgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/asgi.cpython-312.pyc deleted file mode 100644 index e9138cd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/asgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/base.cpython-312.pyc deleted file mode 100644 index e92e29a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/exception.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/exception.cpython-312.pyc deleted file mode 100644 index 19384a0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/exception.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/wsgi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/wsgi.cpython-312.pyc deleted file mode 100644 index e478d34..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/handlers/__pycache__/wsgi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a032bbe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/message.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/message.cpython-312.pyc deleted file mode 100644 index 971a666..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/message.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 499a100..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index cab860d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/base.cpython-312.pyc deleted file mode 100644 index ddf1129..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/console.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/console.cpython-312.pyc deleted file mode 100644 index 6f4e73b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/console.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-312.pyc deleted file mode 100644 index 5cd6a3b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-312.pyc deleted file mode 100644 index 6aab3fb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-312.pyc deleted file mode 100644 index d00915c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-312.pyc deleted file mode 100644 index dea31b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2f0848f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 7cb1e3c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/color.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/color.cpython-312.pyc deleted file mode 100644 index f9f5f8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/color.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/sql.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/sql.cpython-312.pyc deleted file mode 100644 index 60fa440..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/sql.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/templates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/templates.cpython-312.pyc deleted file mode 100644 index 547c825..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/templates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 59a70e6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 985c726..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/check.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/check.cpython-312.pyc deleted file mode 100644 index ae98ad1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/check.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-312.pyc deleted file mode 100644 index 6689f7f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-312.pyc deleted file mode 100644 index 4fd1fa0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-312.pyc deleted file mode 100644 index b107f44..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-312.pyc deleted file mode 100644 index 7027bab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-312.pyc deleted file mode 100644 index b765c57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/flush.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/flush.cpython-312.pyc deleted file mode 100644 index e7b36da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/flush.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-312.pyc deleted file mode 100644 index a6551c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-312.pyc deleted file mode 100644 index bfc3e28..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-312.pyc deleted file mode 100644 index a8d257b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-312.pyc deleted file mode 100644 index 5479580..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/migrate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/migrate.cpython-312.pyc deleted file mode 100644 index 2e9939c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/migrate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-312.pyc deleted file mode 100644 index 89bc479..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/runserver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/runserver.cpython-312.pyc deleted file mode 100644 index d6b9712..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/runserver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-312.pyc deleted file mode 100644 index d2375b6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/shell.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/shell.cpython-312.pyc deleted file mode 100644 index 79bcf4b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/shell.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-312.pyc deleted file mode 100644 index c2e04d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-312.pyc deleted file mode 100644 index 911be9b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-312.pyc deleted file mode 100644 index 4e7adb6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-312.pyc deleted file mode 100644 index 6513dfc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-312.pyc deleted file mode 100644 index df80624..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startapp.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startapp.cpython-312.pyc deleted file mode 100644 index 35bdfa1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startapp.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startproject.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startproject.cpython-312.pyc deleted file mode 100644 index da85ce5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/startproject.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/test.cpython-312.pyc deleted file mode 100644 index 8fcb244..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/testserver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/testserver.cpython-312.pyc deleted file mode 100644 index ce14f8f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/management/commands/__pycache__/testserver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ea3c10b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 2a0688d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/json.cpython-312.pyc deleted file mode 100644 index ac77fc3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/jsonl.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/jsonl.cpython-312.pyc deleted file mode 100644 index db967c2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/jsonl.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/python.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/python.cpython-312.pyc deleted file mode 100644 index b32baa1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/python.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-312.pyc deleted file mode 100644 index 6462563..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-312.pyc deleted file mode 100644 index 5703c82..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b8d196e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/basehttp.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/basehttp.cpython-312.pyc deleted file mode 100644 index 38eb463..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/core/servers/__pycache__/basehttp.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f9aa9bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/transaction.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/transaction.cpython-312.pyc deleted file mode 100644 index d479c81..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/transaction.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index d7188df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1fa809e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/ddl_references.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/ddl_references.cpython-312.pyc deleted file mode 100644 index 66b3e23..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/ddl_references.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index 3ef0303..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 735214d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2dcac8f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 3b6a66b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/client.cpython-312.pyc deleted file mode 100644 index e5353ef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/creation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/creation.cpython-312.pyc deleted file mode 100644 index 67d6219..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/creation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 5c39748..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 5f07e6e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 4a73468..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 496623d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/validation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/validation.cpython-312.pyc deleted file mode 100644 index bff038c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/base/__pycache__/validation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 519cc6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 1019744..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/features.cpython-312.pyc deleted file mode 100644 index e969244..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/dummy/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0cd6d19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 20f18c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/client.cpython-312.pyc deleted file mode 100644 index 413bccb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-312.pyc deleted file mode 100644 index b7e54be..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-312.pyc deleted file mode 100644 index bff9d2f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/features.cpython-312.pyc deleted file mode 100644 index d8126de..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index bb7143f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index eaf1831..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 7dd5e1d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-312.pyc deleted file mode 100644 index efbfc4f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ac8eb78..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/base.cpython-312.pyc deleted file mode 100644 index dd08213..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/client.cpython-312.pyc deleted file mode 100644 index f018744..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-312.pyc deleted file mode 100644 index 41379ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/features.cpython-312.pyc deleted file mode 100644 index e483059..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-312.pyc deleted file mode 100644 index 4681ed5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 3ad49e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index e059b7d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/oracledb_any.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/oracledb_any.cpython-312.pyc deleted file mode 100644 index c808019..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/oracledb_any.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index dd749c2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 7fe5a1d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-312.pyc deleted file mode 100644 index b4e014d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ad609fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 023c8f5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-312.pyc deleted file mode 100644 index 698cfa2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/compiler.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/compiler.cpython-312.pyc deleted file mode 100644 index 0c3a841..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/compiler.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-312.pyc deleted file mode 100644 index 728f1dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 93053c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 8e0f7c8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 79d2fc2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/psycopg_any.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/psycopg_any.cpython-312.pyc deleted file mode 100644 index 33787a0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/psycopg_any.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index b4508f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6aba82e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-312.pyc deleted file mode 100644 index 09292eb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-312.pyc deleted file mode 100644 index abf9685..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-312.pyc deleted file mode 100644 index ccb8def..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-312.pyc deleted file mode 100644 index f631921..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-312.pyc deleted file mode 100644 index 4535f96..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 04b74ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-312.pyc deleted file mode 100644 index 5db2edf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index a5ff843..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index dbf0d9e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/autodetector.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/autodetector.cpython-312.pyc deleted file mode 100644 index 779839c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/autodetector.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 524b37e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/executor.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/executor.cpython-312.pyc deleted file mode 100644 index 1147b2f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/executor.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/graph.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/graph.cpython-312.pyc deleted file mode 100644 index 6bd5281..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/graph.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/loader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/loader.cpython-312.pyc deleted file mode 100644 index c6045be..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/loader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/migration.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/migration.cpython-312.pyc deleted file mode 100644 index 4fa4089..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/migration.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/optimizer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/optimizer.cpython-312.pyc deleted file mode 100644 index ef9b235..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/optimizer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/questioner.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/questioner.cpython-312.pyc deleted file mode 100644 index 4ee8d35..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/questioner.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/recorder.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/recorder.cpython-312.pyc deleted file mode 100644 index 6644566..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/recorder.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/serializer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/serializer.cpython-312.pyc deleted file mode 100644 index e653011..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/serializer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/state.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/state.cpython-312.pyc deleted file mode 100644 index 0cd7801..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/state.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index ac49437..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/writer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/writer.cpython-312.pyc deleted file mode 100644 index 91e61ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/__pycache__/writer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1ab4fbf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/base.cpython-312.pyc deleted file mode 100644 index b38e65e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index a6d52fd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/models.cpython-312.pyc deleted file mode 100644 index e4c4efa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/special.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/special.cpython-312.pyc deleted file mode 100644 index b991d1f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/migrations/operations/__pycache__/special.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5bee3ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/aggregates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/aggregates.cpython-312.pyc deleted file mode 100644 index 63530c0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/aggregates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 986e824..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constants.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constants.cpython-312.pyc deleted file mode 100644 index da8666e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constants.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constraints.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constraints.cpython-312.pyc deleted file mode 100644 index 430237b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/constraints.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/deletion.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/deletion.cpython-312.pyc deleted file mode 100644 index 9d78d77..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/deletion.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/enums.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/enums.cpython-312.pyc deleted file mode 100644 index ef3c8b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/enums.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/expressions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/expressions.cpython-312.pyc deleted file mode 100644 index 445ff84..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/expressions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/indexes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/indexes.cpython-312.pyc deleted file mode 100644 index b7a119f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/indexes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/lookups.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/lookups.cpython-312.pyc deleted file mode 100644 index fa965f2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/lookups.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/manager.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/manager.cpython-312.pyc deleted file mode 100644 index 92833f0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/manager.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/options.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/options.cpython-312.pyc deleted file mode 100644 index 61f49c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/options.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query.cpython-312.pyc deleted file mode 100644 index 45cd986..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query_utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query_utils.cpython-312.pyc deleted file mode 100644 index 188356a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/query_utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index fb4b37f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 08152bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3bd3183..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/composite.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/composite.cpython-312.pyc deleted file mode 100644 index 92f7d72..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/composite.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/files.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/files.cpython-312.pyc deleted file mode 100644 index 58f6628..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/files.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/generated.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/generated.cpython-312.pyc deleted file mode 100644 index 1086b8b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/generated.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/json.cpython-312.pyc deleted file mode 100644 index e41da5f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index 1266031..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/proxy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/proxy.cpython-312.pyc deleted file mode 100644 index 7e347ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/proxy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related.cpython-312.pyc deleted file mode 100644 index 84fa4db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-312.pyc deleted file mode 100644 index 3bcd72c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-312.pyc deleted file mode 100644 index a4eecab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-312.pyc deleted file mode 100644 index 270e114..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/tuple_lookups.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/tuple_lookups.cpython-312.pyc deleted file mode 100644 index 4d1838c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/fields/__pycache__/tuple_lookups.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e86fa14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/comparison.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/comparison.cpython-312.pyc deleted file mode 100644 index cdc26fd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/comparison.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/datetime.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/datetime.cpython-312.pyc deleted file mode 100644 index 03c104e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/datetime.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/json.cpython-312.pyc deleted file mode 100644 index 1333cab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/math.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/math.cpython-312.pyc deleted file mode 100644 index 726373b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/math.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index 9301551..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/text.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/text.cpython-312.pyc deleted file mode 100644 index 893a82a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/text.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/window.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/window.cpython-312.pyc deleted file mode 100644 index 3ded7b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/functions/__pycache__/window.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8c4c7b0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/compiler.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/compiler.cpython-312.pyc deleted file mode 100644 index 038c821..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/compiler.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/constants.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/constants.cpython-312.pyc deleted file mode 100644 index 40ca3c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/constants.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-312.pyc deleted file mode 100644 index 174f8aa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/query.cpython-312.pyc deleted file mode 100644 index 46f9a62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-312.pyc deleted file mode 100644 index a20b33d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/where.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/where.cpython-312.pyc deleted file mode 100644 index f82bd79..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/db/models/sql/__pycache__/where.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d9e1486..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/dispatcher.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/dispatcher.cpython-312.pyc deleted file mode 100644 index 90f0484..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/dispatch/__pycache__/dispatcher.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c9175e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/boundfield.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/boundfield.cpython-312.pyc deleted file mode 100644 index a67d7ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/boundfield.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index bea9cd5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index afd9259..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/formsets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/formsets.cpython-312.pyc deleted file mode 100644 index d5ff1cb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/formsets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 9e09815..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/renderers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/renderers.cpython-312.pyc deleted file mode 100644 index 41610b4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/renderers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 38b67a9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/widgets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/widgets.cpython-312.pyc deleted file mode 100644 index e6c93e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/forms/__pycache__/widgets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4807df1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/cookie.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/cookie.cpython-312.pyc deleted file mode 100644 index 8f52cb5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/cookie.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/multipartparser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/multipartparser.cpython-312.pyc deleted file mode 100644 index 6a77b92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/multipartparser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/request.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/request.cpython-312.pyc deleted file mode 100644 index 531ea21..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/request.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/response.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/response.cpython-312.pyc deleted file mode 100644 index 2a58575..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/http/__pycache__/response.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6eb61e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index b9c6cd8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/clickjacking.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/clickjacking.cpython-312.pyc deleted file mode 100644 index 2738627..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/clickjacking.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/common.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/common.cpython-312.pyc deleted file mode 100644 index 069f0d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/common.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/csrf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/csrf.cpython-312.pyc deleted file mode 100644 index 779ec16..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/csrf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/gzip.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/gzip.cpython-312.pyc deleted file mode 100644 index c50120e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/gzip.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/http.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/http.cpython-312.pyc deleted file mode 100644 index 2a1952e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/http.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/locale.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/locale.cpython-312.pyc deleted file mode 100644 index a592374..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/locale.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/security.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/security.cpython-312.pyc deleted file mode 100644 index 5c49766..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/middleware/__pycache__/security.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e132c3f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/autoreload.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/autoreload.cpython-312.pyc deleted file mode 100644 index 9a0c8f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/autoreload.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/base.cpython-312.pyc deleted file mode 100644 index de68241..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context.cpython-312.pyc deleted file mode 100644 index 5890a24..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context_processors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context_processors.cpython-312.pyc deleted file mode 100644 index e9e23f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/context_processors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaultfilters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaultfilters.cpython-312.pyc deleted file mode 100644 index 43bea14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaultfilters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaulttags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaulttags.cpython-312.pyc deleted file mode 100644 index e8a0f32..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/defaulttags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/engine.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/engine.cpython-312.pyc deleted file mode 100644 index 44af094..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/engine.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 7ca4b14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/library.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/library.cpython-312.pyc deleted file mode 100644 index 2daae51..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/library.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader.cpython-312.pyc deleted file mode 100644 index 5b7138c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader_tags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader_tags.cpython-312.pyc deleted file mode 100644 index 479f1f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/loader_tags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/response.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/response.cpython-312.pyc deleted file mode 100644 index e196229..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/response.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/smartif.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/smartif.cpython-312.pyc deleted file mode 100644 index 2cb55ad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/smartif.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 6b188c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4bf9666..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 7569bd1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/django.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/django.cpython-312.pyc deleted file mode 100644 index 4f80b88..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/django.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/dummy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/dummy.cpython-312.pyc deleted file mode 100644 index ac5546d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/dummy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/jinja2.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/jinja2.cpython-312.pyc deleted file mode 100644 index 91804d3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/jinja2.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 645ca8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/backends/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e6e739a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/app_directories.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/app_directories.cpython-312.pyc deleted file mode 100644 index b623d97..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/app_directories.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 5e3669d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/cached.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/cached.cpython-312.pyc deleted file mode 100644 index c1ade98..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/cached.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/filesystem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/filesystem.cpython-312.pyc deleted file mode 100644 index c48b006..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/filesystem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/locmem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/locmem.cpython-312.pyc deleted file mode 100644 index 1b38891..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/template/loaders/__pycache__/locmem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 17777ed..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index 7d448a3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/i18n.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/i18n.cpython-312.pyc deleted file mode 100644 index cd1e26e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/i18n.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/l10n.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/l10n.cpython-312.pyc deleted file mode 100644 index 26624e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/l10n.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/static.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/static.cpython-312.pyc deleted file mode 100644 index befa2a0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/static.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/tz.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/tz.cpython-312.pyc deleted file mode 100644 index 0c5424c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/templatetags/__pycache__/tz.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8b58286..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/client.cpython-312.pyc deleted file mode 100644 index 3a2e686..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/html.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/html.cpython-312.pyc deleted file mode 100644 index b6a047e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/html.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/runner.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/runner.cpython-312.pyc deleted file mode 100644 index e2625d6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/runner.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/selenium.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/selenium.cpython-312.pyc deleted file mode 100644 index 94f6acf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/selenium.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index c108347..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/testcases.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/testcases.cpython-312.pyc deleted file mode 100644 index 0dcb2a4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/testcases.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 28b6f20..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/test/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d5580e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 877f600..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/conf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/conf.cpython-312.pyc deleted file mode 100644 index ed49675..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/conf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/converters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/converters.cpython-312.pyc deleted file mode 100644 index aa5dddb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/converters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index dfb63ca..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/resolvers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/resolvers.cpython-312.pyc deleted file mode 100644 index 577cd09..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/resolvers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 5ad6d6d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/urls/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0e7163a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/_os.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/_os.cpython-312.pyc deleted file mode 100644 index bfff92d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/_os.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/archive.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/archive.cpython-312.pyc deleted file mode 100644 index 27d6259..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/archive.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/asyncio.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/asyncio.cpython-312.pyc deleted file mode 100644 index 51937da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/asyncio.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/autoreload.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/autoreload.cpython-312.pyc deleted file mode 100644 index 8050a40..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/autoreload.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index 565b1bb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/choices.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/choices.cpython-312.pyc deleted file mode 100644 index 1fdeb26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/choices.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/connection.cpython-312.pyc deleted file mode 100644 index e3c2983..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/crypto.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/crypto.cpython-312.pyc deleted file mode 100644 index 7d27e5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/crypto.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/datastructures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/datastructures.cpython-312.pyc deleted file mode 100644 index 709d82a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/datastructures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateformat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateformat.cpython-312.pyc deleted file mode 100644 index 1a88542..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateformat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateparse.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateparse.cpython-312.pyc deleted file mode 100644 index f0980e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dateparse.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dates.cpython-312.pyc deleted file mode 100644 index a43d99e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/dates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deconstruct.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deconstruct.cpython-312.pyc deleted file mode 100644 index bb87d20..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deconstruct.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index 2cfc627..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deprecation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deprecation.cpython-312.pyc deleted file mode 100644 index 862dfb2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/deprecation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/duration.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/duration.cpython-312.pyc deleted file mode 100644 index 8f6ccc2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/duration.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/encoding.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/encoding.cpython-312.pyc deleted file mode 100644 index d492653..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/encoding.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/feedgenerator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/feedgenerator.cpython-312.pyc deleted file mode 100644 index c12e582..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/feedgenerator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/formats.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/formats.cpython-312.pyc deleted file mode 100644 index 8c8b889..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/formats.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/functional.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/functional.cpython-312.pyc deleted file mode 100644 index 3574ec7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/functional.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/hashable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/hashable.cpython-312.pyc deleted file mode 100644 index f7409c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/hashable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/html.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/html.cpython-312.pyc deleted file mode 100644 index 7ff71eb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/html.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/http.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/http.cpython-312.pyc deleted file mode 100644 index 15eaff3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/http.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/inspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/inspect.cpython-312.pyc deleted file mode 100644 index 716a895..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/inspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/ipv6.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/ipv6.cpython-312.pyc deleted file mode 100644 index 0b76a75..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/ipv6.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/itercompat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/itercompat.cpython-312.pyc deleted file mode 100644 index d7c7654..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/itercompat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/log.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/log.cpython-312.pyc deleted file mode 100644 index e1e36dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/log.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-312.pyc deleted file mode 100644 index e3abf0f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/module_loading.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/module_loading.cpython-312.pyc deleted file mode 100644 index 232efd0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/module_loading.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/numberformat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/numberformat.cpython-312.pyc deleted file mode 100644 index fd5c420..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/numberformat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/regex_helper.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/regex_helper.cpython-312.pyc deleted file mode 100644 index 6f0b94c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/regex_helper.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/safestring.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/safestring.cpython-312.pyc deleted file mode 100644 index f53a667..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/safestring.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/termcolors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/termcolors.cpython-312.pyc deleted file mode 100644 index c18710a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/termcolors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/text.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/text.cpython-312.pyc deleted file mode 100644 index d3ed800..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/text.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timesince.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timesince.cpython-312.pyc deleted file mode 100644 index 6edad47..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timesince.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timezone.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timezone.cpython-312.pyc deleted file mode 100644 index ce97e52..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/timezone.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/tree.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/tree.cpython-312.pyc deleted file mode 100644 index 7018a92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/tree.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/version.cpython-312.pyc deleted file mode 100644 index f64c146..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/xmlutils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/xmlutils.cpython-312.pyc deleted file mode 100644 index 3b15701..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/__pycache__/xmlutils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ff51b5d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/reloader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/reloader.cpython-312.pyc deleted file mode 100644 index c3eecb8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/reloader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/template.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/template.cpython-312.pyc deleted file mode 100644 index 85790e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/template.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_null.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_null.cpython-312.pyc deleted file mode 100644 index 57ab53d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_null.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_real.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_real.cpython-312.pyc deleted file mode 100644 index 3e502e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/utils/translation/__pycache__/trans_real.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4e75eaa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/csrf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/csrf.cpython-312.pyc deleted file mode 100644 index 7265e0e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/csrf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/debug.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/debug.cpython-312.pyc deleted file mode 100644 index 3d5ce39..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/debug.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/defaults.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/defaults.cpython-312.pyc deleted file mode 100644 index c466dd4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/defaults.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/i18n.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/i18n.cpython-312.pyc deleted file mode 100644 index 6a36a73..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/i18n.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/static.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/static.cpython-312.pyc deleted file mode 100644 index b8cd07d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/__pycache__/static.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ff65bd1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index 4050dc0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-312.pyc deleted file mode 100644 index 4a24cfe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/common.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/common.cpython-312.pyc deleted file mode 100644 index 7d97c43..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/common.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/csrf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/csrf.cpython-312.pyc deleted file mode 100644 index 6b2d7aa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/csrf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/debug.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/debug.cpython-312.pyc deleted file mode 100644 index ff0db55..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/debug.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/gzip.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/gzip.cpython-312.pyc deleted file mode 100644 index 2334d7e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/gzip.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/http.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/http.cpython-312.pyc deleted file mode 100644 index 9f29418..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/http.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/vary.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/vary.cpython-312.pyc deleted file mode 100644 index b43a440..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/decorators/__pycache__/vary.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f6e07ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 7892658..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/dates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/dates.cpython-312.pyc deleted file mode 100644 index 5ffaafb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/dates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/detail.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/detail.cpython-312.pyc deleted file mode 100644 index 0091497..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/detail.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/edit.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/edit.cpython-312.pyc deleted file mode 100644 index 6a3c4ca..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/edit.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/list.cpython-312.pyc deleted file mode 100644 index 1c0d44a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/django/views/generic/__pycache__/list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ba788da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3aca93d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 7868fba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/pyutils/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5999bb5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/connection.cpython-312.pyc deleted file mode 100644 index 6f30c21..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/id_type.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/id_type.cpython-312.pyc deleted file mode 100644 index 72e34dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/id_type.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/mutation.cpython-312.pyc deleted file mode 100644 index 67afc0f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/node.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/node.cpython-312.pyc deleted file mode 100644 index 6fd5959..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/__pycache__/node.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2af8814..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection.cpython-312.pyc deleted file mode 100644 index 6d17551..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_async.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_async.cpython-312.pyc deleted file mode 100644 index d493d7c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_async.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_query.cpython-312.pyc deleted file mode 100644 index 0d12b27..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_connection_query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_custom_global_id.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_custom_global_id.cpython-312.pyc deleted file mode 100644 index 289c2dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_custom_global_id.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_global_id.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_global_id.cpython-312.pyc deleted file mode 100644 index 3c97f2b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_global_id.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation.cpython-312.pyc deleted file mode 100644 index c1e3e48..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation_async.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation_async.cpython-312.pyc deleted file mode 100644 index cfae3f9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_mutation_async.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node.cpython-312.pyc deleted file mode 100644 index bb5c173..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node_custom.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node_custom.cpython-312.pyc deleted file mode 100644 index 25c7dfb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/relay/tests/__pycache__/test_node_custom.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/test/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/test/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c0a2106..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/test/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 07d3e19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 83df772..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1293.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1293.cpython-312.pyc deleted file mode 100644 index ccce3f0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1293.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1394.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1394.cpython-312.pyc deleted file mode 100644 index 157b12a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1394.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1419.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1419.cpython-312.pyc deleted file mode 100644 index 0a3314e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_1419.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_313.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_313.cpython-312.pyc deleted file mode 100644 index 7618fa7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_313.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_356.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_356.cpython-312.pyc deleted file mode 100644 index a7636d0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_356.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_425.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_425.cpython-312.pyc deleted file mode 100644 index 9e39815..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_425.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_490.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_490.cpython-312.pyc deleted file mode 100644 index 3a5d08b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_490.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_720.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_720.cpython-312.pyc deleted file mode 100644 index ed8840d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_720.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_881.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_881.cpython-312.pyc deleted file mode 100644 index 106f37c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_881.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_956.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_956.cpython-312.pyc deleted file mode 100644 index 67f0de2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/tests/issues/__pycache__/test_956.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f391d04..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/argument.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/argument.cpython-312.pyc deleted file mode 100644 index 3374bf2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/argument.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 588d4d8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base64.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base64.cpython-312.pyc deleted file mode 100644 index 2750396..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/base64.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/context.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/context.cpython-312.pyc deleted file mode 100644 index 2a318f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/context.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/datetime.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/datetime.cpython-312.pyc deleted file mode 100644 index bac9187..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/datetime.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/decimal.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/decimal.cpython-312.pyc deleted file mode 100644 index 4134517..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/decimal.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/definitions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/definitions.cpython-312.pyc deleted file mode 100644 index 98b90de..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/definitions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/dynamic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/dynamic.cpython-312.pyc deleted file mode 100644 index 8d0a99d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/dynamic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/enum.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/enum.cpython-312.pyc deleted file mode 100644 index f1f76a9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/enum.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/field.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/field.cpython-312.pyc deleted file mode 100644 index fc66be1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/field.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/generic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/generic.cpython-312.pyc deleted file mode 100644 index f9a72a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/generic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputfield.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputfield.cpython-312.pyc deleted file mode 100644 index 836b2cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputfield.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputobjecttype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputobjecttype.cpython-312.pyc deleted file mode 100644 index 9fc9013..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/inputobjecttype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/interface.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/interface.cpython-312.pyc deleted file mode 100644 index f7351c0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/interface.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/json.cpython-312.pyc deleted file mode 100644 index 63be07f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mountedtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mountedtype.cpython-312.pyc deleted file mode 100644 index 62b468b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mountedtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mutation.cpython-312.pyc deleted file mode 100644 index f9648df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/objecttype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/objecttype.cpython-312.pyc deleted file mode 100644 index 87893fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/objecttype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/resolver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/resolver.cpython-312.pyc deleted file mode 100644 index 6776722..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/resolver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/scalars.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/scalars.cpython-312.pyc deleted file mode 100644 index 7ada04b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/scalars.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index a19eaec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/structures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/structures.cpython-312.pyc deleted file mode 100644 index a65a29d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/structures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/union.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/union.cpython-312.pyc deleted file mode 100644 index 2946f78..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/union.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/unmountedtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/unmountedtype.cpython-312.pyc deleted file mode 100644 index f269e92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/unmountedtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index df98054..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/uuid.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/uuid.cpython-312.pyc deleted file mode 100644 index f4738bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/__pycache__/uuid.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7d68d7a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/conftest.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/conftest.cpython-312.pyc deleted file mode 100644 index c727f54..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/conftest.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_argument.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_argument.cpython-312.pyc deleted file mode 100644 index 8a517f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_argument.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base.cpython-312.pyc deleted file mode 100644 index 86931fc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base64.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base64.cpython-312.pyc deleted file mode 100644 index 52d3ad3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_base64.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_datetime.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_datetime.cpython-312.pyc deleted file mode 100644 index 5457ed8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_datetime.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_decimal.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_decimal.cpython-312.pyc deleted file mode 100644 index 591f26d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_decimal.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_definition.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_definition.cpython-312.pyc deleted file mode 100644 index db4f10d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_definition.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_dynamic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_dynamic.cpython-312.pyc deleted file mode 100644 index 6019f34..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_dynamic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_enum.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_enum.cpython-312.pyc deleted file mode 100644 index e6f8b67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_enum.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_field.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_field.cpython-312.pyc deleted file mode 100644 index c5eb64c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_field.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_generic.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_generic.cpython-312.pyc deleted file mode 100644 index 983d549..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_generic.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputfield.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputfield.cpython-312.pyc deleted file mode 100644 index b622301..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputfield.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputobjecttype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputobjecttype.cpython-312.pyc deleted file mode 100644 index 948f332..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_inputobjecttype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_interface.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_interface.cpython-312.pyc deleted file mode 100644 index 6b154b8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_interface.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_json.cpython-312.pyc deleted file mode 100644 index a410700..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mountedtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mountedtype.cpython-312.pyc deleted file mode 100644 index 9f68a42..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mountedtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mutation.cpython-312.pyc deleted file mode 100644 index b741213..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_objecttype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_objecttype.cpython-312.pyc deleted file mode 100644 index 7e1b148..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_objecttype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_query.cpython-312.pyc deleted file mode 100644 index 0eac51f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_resolver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_resolver.cpython-312.pyc deleted file mode 100644 index 084510e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_resolver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalar.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalar.cpython-312.pyc deleted file mode 100644 index f92b3f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalar.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalars_serialization.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalars_serialization.cpython-312.pyc deleted file mode 100644 index 25346ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_scalars_serialization.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_schema.cpython-312.pyc deleted file mode 100644 index 7398d4d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_structures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_structures.cpython-312.pyc deleted file mode 100644 index 403fbb4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_structures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_subscribe_async.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_subscribe_async.cpython-312.pyc deleted file mode 100644 index b6d83d8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_subscribe_async.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_type_map.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_type_map.cpython-312.pyc deleted file mode 100644 index 2b421e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_type_map.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_union.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_union.cpython-312.pyc deleted file mode 100644 index 37e42df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_union.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_uuid.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_uuid.cpython-312.pyc deleted file mode 100644 index 749a0f0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/test_uuid.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 9f6bb6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/types/tests/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e69c5ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/crunch.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/crunch.cpython-312.pyc deleted file mode 100644 index 72ecfc2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/crunch.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/dataloader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/dataloader.cpython-312.pyc deleted file mode 100644 index a983e8e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/dataloader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deduplicator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deduplicator.cpython-312.pyc deleted file mode 100644 index 09c6d9e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deduplicator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deprecated.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deprecated.cpython-312.pyc deleted file mode 100644 index 540c619..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/deprecated.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/get_unbound_function.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/get_unbound_function.cpython-312.pyc deleted file mode 100644 index 8db75b8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/get_unbound_function.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/is_introspection_key.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/is_introspection_key.cpython-312.pyc deleted file mode 100644 index b39fb90..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/is_introspection_key.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/module_loading.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/module_loading.cpython-312.pyc deleted file mode 100644 index e80d1d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/module_loading.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/orderedtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/orderedtype.cpython-312.pyc deleted file mode 100644 index c055f65..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/orderedtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/props.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/props.cpython-312.pyc deleted file mode 100644 index 45ca21a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/props.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/resolve_only_args.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/resolve_only_args.cpython-312.pyc deleted file mode 100644 index dac1601..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/resolve_only_args.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/str_converters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/str_converters.cpython-312.pyc deleted file mode 100644 index 88f9759..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/str_converters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/subclass_with_meta.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/subclass_with_meta.cpython-312.pyc deleted file mode 100644 index 6d8a642..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/subclass_with_meta.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/thenables.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/thenables.cpython-312.pyc deleted file mode 100644 index f28fbad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/thenables.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/trim_docstring.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/trim_docstring.cpython-312.pyc deleted file mode 100644 index 4265fa1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/__pycache__/trim_docstring.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ea9e54d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_crunch.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_crunch.cpython-312.pyc deleted file mode 100644 index 4ac3c25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_crunch.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_dataloader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_dataloader.cpython-312.pyc deleted file mode 100644 index cbe26ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_dataloader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deduplicator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deduplicator.cpython-312.pyc deleted file mode 100644 index 1ca5c46..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deduplicator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deprecated.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deprecated.cpython-312.pyc deleted file mode 100644 index 68b3d8e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_deprecated.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_module_loading.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_module_loading.cpython-312.pyc deleted file mode 100644 index 0287fdd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_module_loading.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_orderedtype.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_orderedtype.cpython-312.pyc deleted file mode 100644 index c038f9e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_orderedtype.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolve_only_args.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolve_only_args.cpython-312.pyc deleted file mode 100644 index be04684..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolve_only_args.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolver_from_annotations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolver_from_annotations.cpython-312.pyc deleted file mode 100644 index 7034dfb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_resolver_from_annotations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_str_converters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_str_converters.cpython-312.pyc deleted file mode 100644 index 692464c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_str_converters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_trim_docstring.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_trim_docstring.cpython-312.pyc deleted file mode 100644 index 11cceb4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/utils/tests/__pycache__/test_trim_docstring.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2db2429..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/depth_limit.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/depth_limit.cpython-312.pyc deleted file mode 100644 index f82599f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/depth_limit.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/disable_introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/disable_introspection.cpython-312.pyc deleted file mode 100644 index 9b896b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/__pycache__/disable_introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7bcf627..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_depth_limit_validator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_depth_limit_validator.cpython-312.pyc deleted file mode 100644 index fa2da3d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_depth_limit_validator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_disable_introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_disable_introspection.cpython-312.pyc deleted file mode 100644 index 06fc685..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene/validation/tests/__pycache__/test_disable_introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0d7470c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index 12defa4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/conftest.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/conftest.cpython-312.pyc deleted file mode 100644 index 0471378..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/conftest.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/constants.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/constants.cpython-312.pyc deleted file mode 100644 index 7f0028a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/constants.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/converter.cpython-312.pyc deleted file mode 100644 index d0c8056..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index 1d25c40..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/registry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/registry.cpython-312.pyc deleted file mode 100644 index 0b4e31b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/registry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/settings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index eca9f84..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 1eaef6c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 9ef0706..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 94f4f1c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 1ad6ee7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 3b3696b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 35515f9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/formating.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/formating.cpython-312.pyc deleted file mode 100644 index 3c26d1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/formating.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 295a807..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/exception/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4436d6c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/tracking.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/tracking.cpython-312.pyc deleted file mode 100644 index f587f83..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/tracking.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 648f31c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/sql/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bc457e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/test_query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/test_query.cpython-312.pyc deleted file mode 100644 index 445e3ed..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/debug/tests/__pycache__/test_query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6f1bbe9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index 67e326d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/filterset.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/filterset.cpython-312.pyc deleted file mode 100644 index 25fcc13..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/filterset.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 5281df1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0f4107d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/array_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/array_filter.cpython-312.pyc deleted file mode 100644 index b325aeb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/array_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/global_id_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/global_id_filter.cpython-312.pyc deleted file mode 100644 index 2433fd2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/global_id_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/list_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/list_filter.cpython-312.pyc deleted file mode 100644 index 778f64f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/list_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/range_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/range_filter.cpython-312.pyc deleted file mode 100644 index b720a59..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/range_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/typed_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/typed_filter.cpython-312.pyc deleted file mode 100644 index ddd82cb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/filters/__pycache__/typed_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 187c972..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/conftest.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/conftest.cpython-312.pyc deleted file mode 100644 index 6068aeb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/conftest.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/filters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/filters.cpython-312.pyc deleted file mode 100644 index 8470edf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/filters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_contains_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_contains_filter.cpython-312.pyc deleted file mode 100644 index 944608a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_contains_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_custom_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_custom_filter.cpython-312.pyc deleted file mode 100644 index 48af1e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_custom_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_exact_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_exact_filter.cpython-312.pyc deleted file mode 100644 index 68b56e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_exact_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_overlap_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_overlap_filter.cpython-312.pyc deleted file mode 100644 index 820edd7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_array_field_overlap_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_enum_filtering.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_enum_filtering.cpython-312.pyc deleted file mode 100644 index 966e7d6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_enum_filtering.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_fields.cpython-312.pyc deleted file mode 100644 index 335d74e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_in_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_in_filter.cpython-312.pyc deleted file mode 100644 index 6e8a222..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_in_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_range_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_range_filter.cpython-312.pyc deleted file mode 100644 index a7cd5ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_range_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_typed_filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_typed_filter.cpython-312.pyc deleted file mode 100644 index c3ceeb6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/filter/tests/__pycache__/test_typed_filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5818845..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/converter.cpython-312.pyc deleted file mode 100644 index aa4ae99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index 802de27..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/mutation.cpython-312.pyc deleted file mode 100644 index fdd614b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 4ecc1d7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 756a911..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_converter.cpython-312.pyc deleted file mode 100644 index 898f1e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_djangoinputobject.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_djangoinputobject.cpython-312.pyc deleted file mode 100644 index ac3174d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_djangoinputobject.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_mutation.cpython-312.pyc deleted file mode 100644 index be56b66..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/forms/tests/__pycache__/test_mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 65c8df0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f219e6b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/graphql_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/graphql_schema.cpython-312.pyc deleted file mode 100644 index 27b7592..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/management/commands/__pycache__/graphql_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e14d536..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 4ec892e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/mutation.cpython-312.pyc deleted file mode 100644 index 4e0bbcd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/serializer_converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/serializer_converter.cpython-312.pyc deleted file mode 100644 index d4441f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/serializer_converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 016ad70..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 3c70e35..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_field_converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_field_converter.cpython-312.pyc deleted file mode 100644 index cdf46aa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_field_converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_multiple_model_serializers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_multiple_model_serializers.cpython-312.pyc deleted file mode 100644 index 2489e20..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_multiple_model_serializers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_mutation.cpython-312.pyc deleted file mode 100644 index 25be756..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/rest_framework/tests/__pycache__/test_mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a2c4633..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/forms.cpython-312.pyc deleted file mode 100644 index e529022..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 5cdcacd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/mutations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/mutations.cpython-312.pyc deleted file mode 100644 index a09dc54..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/mutations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 565b948..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema_view.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema_view.cpython-312.pyc deleted file mode 100644 index b514652..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/schema_view.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_command.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_command.cpython-312.pyc deleted file mode 100644 index e573d56..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_command.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_converter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_converter.cpython-312.pyc deleted file mode 100644 index 32ade67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_converter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_fields.cpython-312.pyc deleted file mode 100644 index e15ddc1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_forms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_forms.cpython-312.pyc deleted file mode 100644 index 4bbe49b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_forms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_get_queryset.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_get_queryset.cpython-312.pyc deleted file mode 100644 index 24cd683..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_get_queryset.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_query.cpython-312.pyc deleted file mode 100644 index 46aac90..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_schema.cpython-312.pyc deleted file mode 100644 index 7803682..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_types.cpython-312.pyc deleted file mode 100644 index 83537bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_utils.cpython-312.pyc deleted file mode 100644 index 1513ca0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_views.cpython-312.pyc deleted file mode 100644 index 4aaf3b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/test_views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 1476175..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 93af0da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_inherited.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_inherited.cpython-312.pyc deleted file mode 100644 index 638f2db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_inherited.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_pretty.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_pretty.cpython-312.pyc deleted file mode 100644 index 8c95dfc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_pretty.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_validation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_validation.cpython-312.pyc deleted file mode 100644 index 9d22743..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/__pycache__/urls_validation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e3e9706..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/test_520.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/test_520.cpython-312.pyc deleted file mode 100644 index f35edbd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/tests/issues/__pycache__/test_520.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4521a99..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/str_converters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/str_converters.cpython-312.pyc deleted file mode 100644 index e6a1947..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/str_converters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/testing.cpython-312.pyc deleted file mode 100644 index 4108beb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 1249e38..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c8349ca..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_str_converters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_str_converters.cpython-312.pyc deleted file mode 100644 index 6be14b9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_str_converters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_testing.cpython-312.pyc deleted file mode 100644 index 7a0a879..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_django/utils/tests/__pycache__/test_testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 74ef1af..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/scalars.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/scalars.cpython-312.pyc deleted file mode 100644 index ae2b2bd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/scalars.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 6c06c22..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 687faa8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/testing.cpython-312.pyc deleted file mode 100644 index 49e6e0b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/django/__pycache__/testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/flask/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/flask/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d064c7d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphene_file_upload/flask/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b05ef0c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/graphql.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/graphql.cpython-312.pyc deleted file mode 100644 index 1844097..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/graphql.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 3e4aa20..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2dfc6b4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/graphql_error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/graphql_error.cpython-312.pyc deleted file mode 100644 index 64025e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/graphql_error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/located_error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/located_error.cpython-312.pyc deleted file mode 100644 index 36a3af2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/located_error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/syntax_error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/syntax_error.cpython-312.pyc deleted file mode 100644 index 9cc470b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/error/__pycache__/syntax_error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ada4516..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/collect_fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/collect_fields.cpython-312.pyc deleted file mode 100644 index 2f51bc4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/collect_fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/execute.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/execute.cpython-312.pyc deleted file mode 100644 index 19ad5f2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/execute.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/map_async_iterator.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/map_async_iterator.cpython-312.pyc deleted file mode 100644 index 9df973c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/map_async_iterator.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 437f8ef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/subscribe.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/subscribe.cpython-312.pyc deleted file mode 100644 index 21ff737..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/subscribe.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/values.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/values.cpython-312.pyc deleted file mode 100644 index 2b0eca1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/execution/__pycache__/values.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ccdd573..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/ast.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/ast.cpython-312.pyc deleted file mode 100644 index 25f101c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/ast.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/block_string.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/block_string.cpython-312.pyc deleted file mode 100644 index b4f942a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/block_string.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/character_classes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/character_classes.cpython-312.pyc deleted file mode 100644 index 8da135b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/character_classes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/directive_locations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/directive_locations.cpython-312.pyc deleted file mode 100644 index 52045fe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/directive_locations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/lexer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/lexer.cpython-312.pyc deleted file mode 100644 index 176d711..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/lexer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/location.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/location.cpython-312.pyc deleted file mode 100644 index 7e1b10a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/location.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/parser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/parser.cpython-312.pyc deleted file mode 100644 index 26670ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/parser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/predicates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/predicates.cpython-312.pyc deleted file mode 100644 index 506a4e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/predicates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_location.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_location.cpython-312.pyc deleted file mode 100644 index 3e9fadc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_location.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_string.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_string.cpython-312.pyc deleted file mode 100644 index 642b36b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/print_string.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/printer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/printer.cpython-312.pyc deleted file mode 100644 index 7eafa17..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/printer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/source.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/source.cpython-312.pyc deleted file mode 100644 index 28129d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/source.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/token_kind.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/token_kind.cpython-312.pyc deleted file mode 100644 index f7167f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/token_kind.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/visitor.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/visitor.cpython-312.pyc deleted file mode 100644 index 5d0c3c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/language/__pycache__/visitor.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f660168..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/awaitable_or_value.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/awaitable_or_value.cpython-312.pyc deleted file mode 100644 index 0a3f28c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/awaitable_or_value.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/cached_property.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/cached_property.cpython-312.pyc deleted file mode 100644 index 1b1495b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/cached_property.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/convert_case.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/convert_case.cpython-312.pyc deleted file mode 100644 index aaed9d5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/convert_case.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/description.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/description.cpython-312.pyc deleted file mode 100644 index 7223ad4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/description.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/did_you_mean.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/did_you_mean.cpython-312.pyc deleted file mode 100644 index 4f16045..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/did_you_mean.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_dict.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_dict.cpython-312.pyc deleted file mode 100644 index f12f2e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_dict.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_error.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_error.cpython-312.pyc deleted file mode 100644 index 38fe7f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_error.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_list.cpython-312.pyc deleted file mode 100644 index f86cb14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/frozen_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/group_by.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/group_by.cpython-312.pyc deleted file mode 100644 index 678467b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/group_by.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/identity_func.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/identity_func.cpython-312.pyc deleted file mode 100644 index cd8d466..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/identity_func.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/inspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/inspect.cpython-312.pyc deleted file mode 100644 index e3654d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/inspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_awaitable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_awaitable.cpython-312.pyc deleted file mode 100644 index 50f4bb9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_awaitable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_iterable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_iterable.cpython-312.pyc deleted file mode 100644 index 12aaa8b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/is_iterable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/merge_kwargs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/merge_kwargs.cpython-312.pyc deleted file mode 100644 index e53b7c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/merge_kwargs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/natural_compare.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/natural_compare.cpython-312.pyc deleted file mode 100644 index c32aaef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/natural_compare.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/path.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/path.cpython-312.pyc deleted file mode 100644 index 90cad5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/path.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/print_path_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/print_path_list.cpython-312.pyc deleted file mode 100644 index 92f1143..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/print_path_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/simple_pub_sub.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/simple_pub_sub.cpython-312.pyc deleted file mode 100644 index 799c781..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/simple_pub_sub.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/suggestion_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/suggestion_list.cpython-312.pyc deleted file mode 100644 index b7d48d2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/suggestion_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/undefined.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/undefined.cpython-312.pyc deleted file mode 100644 index c7a5968..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/pyutils/__pycache__/undefined.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/subscription/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/subscription/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2f05f19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/subscription/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7eb01b4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/assert_name.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/assert_name.cpython-312.pyc deleted file mode 100644 index e40bc56..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/assert_name.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/definition.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/definition.cpython-312.pyc deleted file mode 100644 index 93d4cec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/definition.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/directives.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/directives.cpython-312.pyc deleted file mode 100644 index 8028ca6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/directives.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/introspection.cpython-312.pyc deleted file mode 100644 index 055522e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/scalars.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/scalars.cpython-312.pyc deleted file mode 100644 index 316e55a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/scalars.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/schema.cpython-312.pyc deleted file mode 100644 index 7a7b4f7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/validate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/validate.cpython-312.pyc deleted file mode 100644 index 72e4045..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/type/__pycache__/validate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7c46163..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/assert_valid_name.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/assert_valid_name.cpython-312.pyc deleted file mode 100644 index d9d8770..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/assert_valid_name.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_from_value.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_from_value.cpython-312.pyc deleted file mode 100644 index 3410ecb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_from_value.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_to_dict.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_to_dict.cpython-312.pyc deleted file mode 100644 index 14090d3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/ast_to_dict.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_ast_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_ast_schema.cpython-312.pyc deleted file mode 100644 index 60019dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_ast_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_client_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_client_schema.cpython-312.pyc deleted file mode 100644 index 20d3bcf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/build_client_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/coerce_input_value.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/coerce_input_value.cpython-312.pyc deleted file mode 100644 index bfc092d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/coerce_input_value.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/concat_ast.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/concat_ast.cpython-312.pyc deleted file mode 100644 index cd4d154..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/concat_ast.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/extend_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/extend_schema.cpython-312.pyc deleted file mode 100644 index c8bc65f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/extend_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/find_breaking_changes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/find_breaking_changes.cpython-312.pyc deleted file mode 100644 index e166f3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/find_breaking_changes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_introspection_query.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_introspection_query.cpython-312.pyc deleted file mode 100644 index 89a4b55..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_introspection_query.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_ast.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_ast.cpython-312.pyc deleted file mode 100644 index ae893ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_ast.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_root_type.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_root_type.cpython-312.pyc deleted file mode 100644 index efbc1d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/get_operation_root_type.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/introspection_from_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/introspection_from_schema.cpython-312.pyc deleted file mode 100644 index 6c90246..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/introspection_from_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/lexicographic_sort_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/lexicographic_sort_schema.cpython-312.pyc deleted file mode 100644 index e47638d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/lexicographic_sort_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/print_schema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/print_schema.cpython-312.pyc deleted file mode 100644 index 5e58833..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/print_schema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/separate_operations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/separate_operations.cpython-312.pyc deleted file mode 100644 index 766f0ff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/separate_operations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/sort_value_node.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/sort_value_node.cpython-312.pyc deleted file mode 100644 index 90dff63..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/sort_value_node.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/strip_ignored_characters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/strip_ignored_characters.cpython-312.pyc deleted file mode 100644 index 65d9b0e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/strip_ignored_characters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_comparators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_comparators.cpython-312.pyc deleted file mode 100644 index 3f4a4ab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_comparators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_from_ast.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_from_ast.cpython-312.pyc deleted file mode 100644 index f18d8b0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_from_ast.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_info.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_info.cpython-312.pyc deleted file mode 100644 index 2ef1001..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/type_info.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast.cpython-312.pyc deleted file mode 100644 index 4c79c9f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast_untyped.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast_untyped.cpython-312.pyc deleted file mode 100644 index 433baa3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/utilities/__pycache__/value_from_ast_untyped.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c39507b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/specified_rules.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/specified_rules.cpython-312.pyc deleted file mode 100644 index f2c83b6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/specified_rules.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validate.cpython-312.pyc deleted file mode 100644 index da22570..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validation_context.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validation_context.cpython-312.pyc deleted file mode 100644 index be0f1f2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/__pycache__/validation_context.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c193fbc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/executable_definitions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/executable_definitions.cpython-312.pyc deleted file mode 100644 index e1334d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/executable_definitions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fields_on_correct_type.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fields_on_correct_type.cpython-312.pyc deleted file mode 100644 index a2b3c10..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fields_on_correct_type.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fragments_on_composite_types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fragments_on_composite_types.cpython-312.pyc deleted file mode 100644 index 2aff58c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/fragments_on_composite_types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_argument_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_argument_names.cpython-312.pyc deleted file mode 100644 index caccd92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_argument_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_directives.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_directives.cpython-312.pyc deleted file mode 100644 index 5eccacc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_directives.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_fragment_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_fragment_names.cpython-312.pyc deleted file mode 100644 index d04bc9f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_fragment_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_type_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_type_names.cpython-312.pyc deleted file mode 100644 index 429b423..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/known_type_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_anonymous_operation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_anonymous_operation.cpython-312.pyc deleted file mode 100644 index b49572e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_anonymous_operation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_schema_definition.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_schema_definition.cpython-312.pyc deleted file mode 100644 index b02130a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/lone_schema_definition.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_fragment_cycles.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_fragment_cycles.cpython-312.pyc deleted file mode 100644 index 79119cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_fragment_cycles.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_undefined_variables.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_undefined_variables.cpython-312.pyc deleted file mode 100644 index 6707bcb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_undefined_variables.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_fragments.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_fragments.cpython-312.pyc deleted file mode 100644 index 200064a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_fragments.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_variables.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_variables.cpython-312.pyc deleted file mode 100644 index 660d63d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/no_unused_variables.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/overlapping_fields_can_be_merged.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/overlapping_fields_can_be_merged.cpython-312.pyc deleted file mode 100644 index 7e38d91..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/overlapping_fields_can_be_merged.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_fragment_spreads.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_fragment_spreads.cpython-312.pyc deleted file mode 100644 index a37ce25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_fragment_spreads.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_type_extensions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_type_extensions.cpython-312.pyc deleted file mode 100644 index 6c42136..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/possible_type_extensions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/provided_required_arguments.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/provided_required_arguments.cpython-312.pyc deleted file mode 100644 index 04afdb3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/provided_required_arguments.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/scalar_leafs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/scalar_leafs.cpython-312.pyc deleted file mode 100644 index 00a1b1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/scalar_leafs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/single_field_subscriptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/single_field_subscriptions.cpython-312.pyc deleted file mode 100644 index d61074e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/single_field_subscriptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_definition_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_definition_names.cpython-312.pyc deleted file mode 100644 index 10b2ae2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_definition_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_names.cpython-312.pyc deleted file mode 100644 index 91d72d6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_argument_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directive_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directive_names.cpython-312.pyc deleted file mode 100644 index 0c8f180..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directive_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directives_per_location.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directives_per_location.cpython-312.pyc deleted file mode 100644 index 764b1ad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_directives_per_location.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_enum_value_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_enum_value_names.cpython-312.pyc deleted file mode 100644 index fdc3fd6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_enum_value_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_field_definition_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_field_definition_names.cpython-312.pyc deleted file mode 100644 index 83cc1e2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_field_definition_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_fragment_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_fragment_names.cpython-312.pyc deleted file mode 100644 index 8bdf23b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_fragment_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_input_field_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_input_field_names.cpython-312.pyc deleted file mode 100644 index 8bf9216..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_input_field_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_names.cpython-312.pyc deleted file mode 100644 index e27c29d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_types.cpython-312.pyc deleted file mode 100644 index 64bc728..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_operation_types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_type_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_type_names.cpython-312.pyc deleted file mode 100644 index 27eee67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_type_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_variable_names.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_variable_names.cpython-312.pyc deleted file mode 100644 index 95eeccc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/unique_variable_names.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/values_of_correct_type.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/values_of_correct_type.cpython-312.pyc deleted file mode 100644 index 8c813b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/values_of_correct_type.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_are_input_types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_are_input_types.cpython-312.pyc deleted file mode 100644 index 7de119c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_are_input_types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_in_allowed_position.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_in_allowed_position.cpython-312.pyc deleted file mode 100644 index c8d6240..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/__pycache__/variables_in_allowed_position.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index df38e4f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_deprecated.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_deprecated.cpython-312.pyc deleted file mode 100644 index 96401a6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_deprecated.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_schema_introspection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_schema_introspection.cpython-312.pyc deleted file mode 100644 index d897deb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql/validation/rules/custom/__pycache__/no_schema_introspection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 537dbb1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/_compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/_compat.cpython-312.pyc deleted file mode 100644 index d807e11..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/_compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/backends.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/backends.cpython-312.pyc deleted file mode 100644 index fc2456f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/backends.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index d6c33e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index bd944dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/middleware.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/middleware.cpython-312.pyc deleted file mode 100644 index 4675040..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/middleware.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index 3528704..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mutations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mutations.cpython-312.pyc deleted file mode 100644 index 685e1fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/mutations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/path.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/path.cpython-312.pyc deleted file mode 100644 index 231cd1f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/path.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/relay.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/relay.cpython-312.pyc deleted file mode 100644 index 949b281..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/relay.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/settings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index 008ee6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/shortcuts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/shortcuts.cpython-312.pyc deleted file mode 100644 index 05e7fe3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/shortcuts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index 3572e7d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/testcases.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/testcases.cpython-312.pyc deleted file mode 100644 index 74202e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/testcases.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 3fe8be0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7eb8929..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index ee29e0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index 33d387f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/managers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/managers.cpython-312.pyc deleted file mode 100644 index 69d1e2d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/managers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index 618ed16..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/models.cpython-312.pyc deleted file mode 100644 index d8f8739..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mutations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mutations.cpython-312.pyc deleted file mode 100644 index 9dcc7b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/mutations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/relay.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/relay.cpython-312.pyc deleted file mode 100644 index f35a2d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/relay.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/shortcuts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/shortcuts.cpython-312.pyc deleted file mode 100644 index d744711..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/shortcuts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/signals.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/signals.cpython-312.pyc deleted file mode 100644 index 81c2eba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/signals.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 7abb879..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 71b4a1c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/filters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/filters.cpython-312.pyc deleted file mode 100644 index 19f8945..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/admin/__pycache__/filters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index cb0d1ab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d6b86e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/cleartokens.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/cleartokens.cpython-312.pyc deleted file mode 100644 index e314938..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/management/commands/__pycache__/cleartokens.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 4395f5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0002_auto_20190130_0900.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0002_auto_20190130_0900.cpython-312.pyc deleted file mode 100644 index 9323d86..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/0002_auto_20190130_0900.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9f77f7e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_jwt/refresh_token/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8ca7b28..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 583e4ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2af3976..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/array_connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/array_connection.cpython-312.pyc deleted file mode 100644 index 8bd25f9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/array_connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/arrayconnection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/arrayconnection.cpython-312.pyc deleted file mode 100644 index f6d7964..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/arrayconnection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/connection.cpython-312.pyc deleted file mode 100644 index 8f27ba1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/connection/__pycache__/connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1e71ad8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/mutation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/mutation.cpython-312.pyc deleted file mode 100644 index 12fbf8a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/mutation/__pycache__/mutation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ba88a98..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/node.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/node.cpython-312.pyc deleted file mode 100644 index 4e0c325..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/node.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/plural.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/plural.cpython-312.pyc deleted file mode 100644 index 4536dfd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/node/__pycache__/plural.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 684b207..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/base64.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/base64.cpython-312.pyc deleted file mode 100644 index c1848bc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/graphql_relay/utils/__pycache__/base64.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 60885af..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/algorithms.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/algorithms.cpython-312.pyc deleted file mode 100644 index 9e7df1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/algorithms.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwk.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwk.cpython-312.pyc deleted file mode 100644 index 614beb4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwk.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jws.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jws.cpython-312.pyc deleted file mode 100644 index d9293a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jws.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwt.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwt.cpython-312.pyc deleted file mode 100644 index 4b2ab78..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/api_jwt.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 77d4578..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/help.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/help.cpython-312.pyc deleted file mode 100644 index 842a2b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/help.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwk_set_cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwk_set_cache.cpython-312.pyc deleted file mode 100644 index b7bf010..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwk_set_cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwks_client.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwks_client.cpython-312.pyc deleted file mode 100644 index 83a050c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/jwks_client.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 6c8282e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 138ba5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/warnings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/warnings.cpython-312.pyc deleted file mode 100644 index 16ff3dc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/jwt/__pycache__/warnings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f5d52b3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index 4ae1450..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc deleted file mode 100644 index 2efef5e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8b0ff4c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc deleted file mode 100644 index e2b77c8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index 4f65d14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc deleted file mode 100644 index f93e5f1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 1b19f64..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc deleted file mode 100644 index b15027c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc deleted file mode 100644 index 0d7b28a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc deleted file mode 100644 index b2aa327..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc deleted file mode 100644 index e554ead..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 57a0789..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc deleted file mode 100644 index 550258a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc deleted file mode 100644 index ae33f3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc deleted file mode 100644 index 266c799..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc deleted file mode 100644 index 2a2b832..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc deleted file mode 100644 index df46b78..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc deleted file mode 100644 index d4994db..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc deleted file mode 100644 index 85634a5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc deleted file mode 100644 index af59259..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc deleted file mode 100644 index 48ff1e4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc deleted file mode 100644 index 7d821a3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc deleted file mode 100644 index 9740544..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8b7ca14..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index b138679..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc deleted file mode 100644 index 6c8263c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc deleted file mode 100644 index 368dca3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc deleted file mode 100644 index ce3d540..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc deleted file mode 100644 index 636e2e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc deleted file mode 100644 index 28cf8ac..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc deleted file mode 100644 index d64d3bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc deleted file mode 100644 index 8bb2817..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc deleted file mode 100644 index f8be9b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc deleted file mode 100644 index 18fde3d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc deleted file mode 100644 index 78a1ec3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc deleted file mode 100644 index 6f72257..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc deleted file mode 100644 index 864ed96..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc deleted file mode 100644 index 60a0b98..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc deleted file mode 100644 index b1c9a5a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc deleted file mode 100644 index 251adc5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 3fb995a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 811c917..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 00a0ddf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc deleted file mode 100644 index f0df2ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc deleted file mode 100644 index 6cc4fcf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 170bf52..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 51a25a4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc deleted file mode 100644 index 64e4d9b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc deleted file mode 100644 index b637a04..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc deleted file mode 100644 index 13e543c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index fc1a66d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc deleted file mode 100644 index fc42e91..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc deleted file mode 100644 index d06dbaf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 4970f07..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 238ebed..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc deleted file mode 100644 index 628c747..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc deleted file mode 100644 index a833248..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc deleted file mode 100644 index b8eae5d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 812c4c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc deleted file mode 100644 index ca3acce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc deleted file mode 100644 index e8764c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc deleted file mode 100644 index 4eca568..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b8c8bdb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc deleted file mode 100644 index e91f285..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc deleted file mode 100644 index 8a7e798..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc deleted file mode 100644 index f1c2332..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc deleted file mode 100644 index 583cde5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc deleted file mode 100644 index 5437559..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc deleted file mode 100644 index 0b35dd5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc deleted file mode 100644 index bb34893..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc deleted file mode 100644 index 1e4ecc4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc deleted file mode 100644 index 3bdca01..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc deleted file mode 100644 index 201ff37..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 386f552..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 39bc4e3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc deleted file mode 100644 index 73bbdbf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index b35fc23..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc deleted file mode 100644 index 71631be..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc deleted file mode 100644 index 6ca5520..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc deleted file mode 100644 index 8a88375..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index ddbd9b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc deleted file mode 100644 index 688dbe9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8a9639f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc deleted file mode 100644 index 496499d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc deleted file mode 100644 index e7f9881..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc deleted file mode 100644 index 353c7ff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c30f0de..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc deleted file mode 100644 index 6727d3e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc deleted file mode 100644 index 9467789..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc deleted file mode 100644 index ee6391e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc deleted file mode 100644 index af4b53a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 5370797..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc deleted file mode 100644 index 7786ce3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc deleted file mode 100644 index 5370e57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 44664b5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc deleted file mode 100644 index efd0311..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index b34e4d0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 84943ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc deleted file mode 100644 index fa99b31..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc deleted file mode 100644 index 1751e5f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc deleted file mode 100644 index a2fcf1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc deleted file mode 100644 index 243e231..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc deleted file mode 100644 index 04c1612..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 689ba1c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 5a8780b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a78cf82..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc deleted file mode 100644 index b727e25..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2e50ee4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 5097ec8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc deleted file mode 100644 index 4ea8765..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc deleted file mode 100644 index f0ba9f8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc deleted file mode 100644 index 99c1dd1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc deleted file mode 100644 index 7800959..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc deleted file mode 100644 index ec0cf35..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc deleted file mode 100644 index 580a6b3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc deleted file mode 100644 index 3c3e0c1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0c4cb26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc deleted file mode 100644 index 0e92eed..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc deleted file mode 100644 index c7f58a6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc deleted file mode 100644 index b94ba84..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index 57fca87..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc deleted file mode 100644 index 4c7a102..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc deleted file mode 100644 index ccbfdf7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc deleted file mode 100644 index 3564d2c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc deleted file mode 100644 index 0264387..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc deleted file mode 100644 index c4149c6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc deleted file mode 100644 index e96e334..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc deleted file mode 100644 index 052c1ce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc deleted file mode 100644 index bc5c75d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc deleted file mode 100644 index b8e663f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc deleted file mode 100644 index aa8ef03..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc deleted file mode 100644 index f10c5c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc deleted file mode 100644 index 58a1a98..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc deleted file mode 100644 index f012896..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 21181f0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc deleted file mode 100644 index 46215f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc deleted file mode 100644 index 574dc9b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc deleted file mode 100644 index 925868e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc deleted file mode 100644 index a612977..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc deleted file mode 100644 index ddb2adf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index befefbd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc deleted file mode 100644 index 28be46b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 48eda6a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index fec6034..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc deleted file mode 100644 index baae00e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc deleted file mode 100644 index 666f76b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc deleted file mode 100644 index 9f8e094..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc deleted file mode 100644 index 9d1c372..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc deleted file mode 100644 index 89e644c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5bb8a41..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc deleted file mode 100644 index 5ee38e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc deleted file mode 100644 index a467e01..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index df4e0e5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc deleted file mode 100644 index 2b0bdaf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc deleted file mode 100644 index 5e812df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc deleted file mode 100644 index 69f323c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc deleted file mode 100644 index 21bc2e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc deleted file mode 100644 index 4ae76a8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc deleted file mode 100644 index e85e578..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc deleted file mode 100644 index 289a9a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc deleted file mode 100644 index fae136a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a70a521..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc deleted file mode 100644 index ae44a89..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc deleted file mode 100644 index 7028846..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 32222ee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index a01d72f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc deleted file mode 100644 index 25aab2d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index de63c8a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc deleted file mode 100644 index 0b5a09f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc deleted file mode 100644 index 2df13a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc deleted file mode 100644 index eaef135..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc deleted file mode 100644 index f292b13..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc deleted file mode 100644 index d2d1981..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc deleted file mode 100644 index 62a1db4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc deleted file mode 100644 index 43dee95..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc deleted file mode 100644 index 610dfb9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc deleted file mode 100644 index e1aef34..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc deleted file mode 100644 index b339527..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc deleted file mode 100644 index e0acf50..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc deleted file mode 100644 index fd19da3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc deleted file mode 100644 index e0a21fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc deleted file mode 100644 index 6549d62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc deleted file mode 100644 index 34de964..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc deleted file mode 100644 index a68fe0a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc deleted file mode 100644 index be94a60..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc deleted file mode 100644 index 8365284..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc deleted file mode 100644 index a7b085a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc deleted file mode 100644 index 3b69afb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc deleted file mode 100644 index 00093df..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc deleted file mode 100644 index 3060100..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc deleted file mode 100644 index 198867d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc deleted file mode 100644 index 46a5998..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc deleted file mode 100644 index 260e8cc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc deleted file mode 100644 index 684790e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc deleted file mode 100644 index ab3447a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc deleted file mode 100644 index 2dcc813..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc deleted file mode 100644 index 3553166..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc deleted file mode 100644 index 0f94a31..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc deleted file mode 100644 index 5b8f4b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc deleted file mode 100644 index dd9f4ff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc deleted file mode 100644 index f62b280..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc deleted file mode 100644 index 950d0bd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc deleted file mode 100644 index d6d25a7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc deleted file mode 100644 index 12a015f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc deleted file mode 100644 index 868dfff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc deleted file mode 100644 index 2512d57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc deleted file mode 100644 index c21f1a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc deleted file mode 100644 index 3a39c27..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc deleted file mode 100644 index 1d66c28..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc deleted file mode 100644 index ad89d7a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 9123101..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 88a54a2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc deleted file mode 100644 index 56f5efd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a58ddb0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc deleted file mode 100644 index c16dee5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index e315657..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc deleted file mode 100644 index 1170b10..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc deleted file mode 100644 index 68aa6d4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc deleted file mode 100644 index c3b4350..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc deleted file mode 100644 index 8b6ab68..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc deleted file mode 100644 index 4d409a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 61dee5e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc deleted file mode 100644 index caafc2b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc deleted file mode 100644 index 7245fdc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc deleted file mode 100644 index 9afe869..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc deleted file mode 100644 index 64bce75..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 5c8692c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc deleted file mode 100644 index 1c09393..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 803996a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index 8268846..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc deleted file mode 100644 index fbeb990..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc deleted file mode 100644 index 5bd4aa5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc deleted file mode 100644 index 98c1525..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc deleted file mode 100644 index 94251b5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc deleted file mode 100644 index d83d2af..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc deleted file mode 100644 index 61f98a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc deleted file mode 100644 index 7e6f4ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc deleted file mode 100644 index 57a610b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc deleted file mode 100644 index 89777b9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 1ffb34e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc deleted file mode 100644 index 80d1bb1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7a95666..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index 0beb17b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc deleted file mode 100644 index f92b267..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index db7a9ab..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc deleted file mode 100644 index 6bdc6ce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index dba4110..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc deleted file mode 100644 index 2096e4e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc deleted file mode 100644 index 2c6bdbe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc deleted file mode 100644 index cbed740..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc deleted file mode 100644 index 99cf52f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc deleted file mode 100644 index 1664462..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 437c616..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 5fdde57..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc deleted file mode 100644 index 5ee12f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc deleted file mode 100644 index 9016ebb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc deleted file mode 100644 index aff385a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 065497a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc deleted file mode 100644 index faa961b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc deleted file mode 100644 index ce24ee4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc deleted file mode 100644 index 25e661f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc deleted file mode 100644 index d36ecd2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc deleted file mode 100644 index e9b058d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc deleted file mode 100644 index 69215bf..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc deleted file mode 100644 index 252fd28..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 0b5690e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc deleted file mode 100644 index d99fe5c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6589c6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index aee8152..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index 66b0c89..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc deleted file mode 100644 index b0a3c76..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc deleted file mode 100644 index 232a2ce..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc deleted file mode 100644 index 3630922..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc deleted file mode 100644 index d63370f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 032e4b3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc deleted file mode 100644 index 139004c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 05f5124..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index 9f116be..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc deleted file mode 100644 index 88a7128..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc deleted file mode 100644 index 1f5ecef..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc deleted file mode 100644 index e21c63b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc deleted file mode 100644 index cb5ea1d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc deleted file mode 100644 index 3745f1e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc deleted file mode 100644 index bfc2798..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc deleted file mode 100644 index 5623c97..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc deleted file mode 100644 index 9549dc6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc deleted file mode 100644 index 5b4baa8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc deleted file mode 100644 index 77ebe6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc deleted file mode 100644 index 58a7cb7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc deleted file mode 100644 index b9fff4d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc deleted file mode 100644 index f1a61c7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc deleted file mode 100644 index 63c852d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1085dbb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 68ce0ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc deleted file mode 100644 index 4c12cb9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc deleted file mode 100644 index 3271882..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc deleted file mode 100644 index a2b689c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc deleted file mode 100644 index 57a9a28..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc deleted file mode 100644 index 3d907f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc deleted file mode 100644 index 5d6617a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc deleted file mode 100644 index 33f42a9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc deleted file mode 100644 index b514bec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc deleted file mode 100644 index c42bc1a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc deleted file mode 100644 index 3660ad1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc deleted file mode 100644 index 64728fe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc deleted file mode 100644 index 49846a3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc deleted file mode 100644 index f508d54..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ab8a0fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc deleted file mode 100644 index 865b0eb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc deleted file mode 100644 index 55a53c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5b5cd2e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 675967e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc deleted file mode 100644 index dd928f3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc deleted file mode 100644 index 8367c06..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc deleted file mode 100644 index 888139c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index edbd0a5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc deleted file mode 100644 index f01d61a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc deleted file mode 100644 index d36e5dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc deleted file mode 100644 index e4d8fed..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc deleted file mode 100644 index 4a47003..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc deleted file mode 100644 index 4a128d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index c5569e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b43660b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc deleted file mode 100644 index a7c0855..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc deleted file mode 100644 index 76b6918..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a492124..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc deleted file mode 100644 index 2698e3f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4efafae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc deleted file mode 100644 index 1b35ae3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc deleted file mode 100644 index 08da59f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc deleted file mode 100644 index ab6ab62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc deleted file mode 100644 index ee0cd58..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc deleted file mode 100644 index b23db3b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc deleted file mode 100644 index 566f189..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index a72af5c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc deleted file mode 100644 index 299168b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index e9087ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc deleted file mode 100644 index c14044b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc deleted file mode 100644 index 198087c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 4a47647..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc deleted file mode 100644 index e41735e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc deleted file mode 100644 index bc1d1d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc deleted file mode 100644 index a0aeaa9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc deleted file mode 100644 index c66a810..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 837ec07..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 953e703..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc deleted file mode 100644 index 3064e3e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc deleted file mode 100644 index 2b42c15..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc deleted file mode 100644 index 20aaf46..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc deleted file mode 100644 index fd08e8c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f59e9d9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc deleted file mode 100644 index 9b04553..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 76bf921..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index e4b4d1e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc deleted file mode 100644 index 6a21ea4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc deleted file mode 100644 index be90608..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc deleted file mode 100644 index 2dbb4ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc deleted file mode 100644 index 857afd1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc deleted file mode 100644 index ff90766..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc deleted file mode 100644 index 05ec118..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc deleted file mode 100644 index da69b4b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc deleted file mode 100644 index 67ecd67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc deleted file mode 100644 index ae61473..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc deleted file mode 100644 index 291afec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc deleted file mode 100644 index b18d054..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc deleted file mode 100644 index da259c3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc deleted file mode 100644 index 8e56976..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc deleted file mode 100644 index ac72906..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc deleted file mode 100644 index 33da793..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc deleted file mode 100644 index 184c6a6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc deleted file mode 100644 index 6db32b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc deleted file mode 100644 index 811d180..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc deleted file mode 100644 index 74c804a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc deleted file mode 100644 index 8c22ecc..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc deleted file mode 100644 index 7edee92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc deleted file mode 100644 index 399798c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc deleted file mode 100644 index be84718..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc deleted file mode 100644 index 8c0e2ec..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc deleted file mode 100644 index a6f2b06..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc deleted file mode 100644 index e8c67eb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc deleted file mode 100644 index 6d758b0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc deleted file mode 100644 index 0854e19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc deleted file mode 100644 index 0b49a85..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc deleted file mode 100644 index 2785442..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc deleted file mode 100644 index 70ae272..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc deleted file mode 100644 index 29b7307..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc deleted file mode 100644 index eca1c0f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc deleted file mode 100644 index 94a0d61..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc deleted file mode 100644 index 8f2be8b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc deleted file mode 100644 index 0dab423..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc deleted file mode 100644 index 5aeb558..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc deleted file mode 100644 index ec80744..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc deleted file mode 100644 index 8266bf5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc deleted file mode 100644 index f10ab48..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc deleted file mode 100644 index ffa4a67..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc deleted file mode 100644 index b0de691..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc deleted file mode 100644 index 1f7614b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc deleted file mode 100644 index aa8d19c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc deleted file mode 100644 index 1a29261..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc deleted file mode 100644 index 9e69741..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc deleted file mode 100644 index ba4bbf2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc deleted file mode 100644 index 780ad26..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc deleted file mode 100644 index 629155c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc deleted file mode 100644 index 32ad5d0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc deleted file mode 100644 index 6b596e0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc deleted file mode 100644 index 0077dc5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc deleted file mode 100644 index 5359c92..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc deleted file mode 100644 index 7d8b98b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc deleted file mode 100644 index dac9c24..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc deleted file mode 100644 index 92e1dae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc deleted file mode 100644 index e866ac4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc deleted file mode 100644 index 1c89ca7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc deleted file mode 100644 index b20bee5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc deleted file mode 100644 index bd16af1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc deleted file mode 100644 index 31cd972..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc deleted file mode 100644 index 4170bf2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc deleted file mode 100644 index cf4c0fb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc deleted file mode 100644 index 375df40..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc deleted file mode 100644 index b6ef4b7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc deleted file mode 100644 index 135e975..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc deleted file mode 100644 index 549a3bd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc deleted file mode 100644 index 07c6f27..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc deleted file mode 100644 index e80b0a8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc deleted file mode 100644 index cca62ae..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc deleted file mode 100644 index edf6f8d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc deleted file mode 100644 index b94389e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc deleted file mode 100644 index e0b96d6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc deleted file mode 100644 index bd1a0fd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc deleted file mode 100644 index d17c089..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 43f1df2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc deleted file mode 100644 index 01e5904..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc deleted file mode 100644 index c9da825..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc deleted file mode 100644 index 84abf2e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc deleted file mode 100644 index ec98ccd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc deleted file mode 100644 index cc64244..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc deleted file mode 100644 index 6e29993..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc deleted file mode 100644 index 66d128a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc deleted file mode 100644 index 881821d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc deleted file mode 100644 index 6ca8a84..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc deleted file mode 100644 index 9445e46..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2430037..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc deleted file mode 100644 index fffa017..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc deleted file mode 100644 index 2929e62..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc deleted file mode 100644 index 69aff31..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7e09e44..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc deleted file mode 100644 index 470b336..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc deleted file mode 100644 index 03be659..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc deleted file mode 100644 index 3bf8610..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc deleted file mode 100644 index 6d09f85..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc deleted file mode 100644 index 025b614..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 843aff3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc deleted file mode 100644 index 0e98a0c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc deleted file mode 100644 index 102e7e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc deleted file mode 100644 index 5461c3f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc deleted file mode 100644 index e8adfbe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 8cea729..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index 5771787..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc deleted file mode 100644 index 29fab00..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc deleted file mode 100644 index 3fad8e1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc deleted file mode 100644 index 393fe71..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc deleted file mode 100644 index a1f8bad..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9651572..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc deleted file mode 100644 index 8227462..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc deleted file mode 100644 index 52ecc53..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc deleted file mode 100644 index 15b442f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc deleted file mode 100644 index 94d8671..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc deleted file mode 100644 index b8810c6..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc deleted file mode 100644 index 887db43..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 993fa87..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc deleted file mode 100644 index 4f018a1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc deleted file mode 100644 index 692a917..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9380c80..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc deleted file mode 100644 index 10aebba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index fc26ec8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc deleted file mode 100644 index 302d27c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc deleted file mode 100644 index b430ac1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 94ed01a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc deleted file mode 100644 index 9f49209..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc deleted file mode 100644 index d65f352..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc deleted file mode 100644 index b6a4544..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc deleted file mode 100644 index 2ca115f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc deleted file mode 100644 index 71c48a5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc deleted file mode 100644 index 12365e7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc deleted file mode 100644 index 4a8636c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc deleted file mode 100644 index 42b247a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc deleted file mode 100644 index 07dd311..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc deleted file mode 100644 index f3e1b98..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc deleted file mode 100644 index dc1f4f5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc deleted file mode 100644 index 0082375..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 8fa9c4a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc deleted file mode 100644 index 59ce6b1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc deleted file mode 100644 index 18027b3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc deleted file mode 100644 index 14ed415..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc deleted file mode 100644 index 6521790..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index ca9c219..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/async_.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/async_.cpython-312.pyc deleted file mode 100644 index b6fd931..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/async_.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index 631205a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/dataloader.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/dataloader.cpython-312.pyc deleted file mode 100644 index 88b09ca..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/dataloader.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/iterate_promise.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/iterate_promise.cpython-312.pyc deleted file mode 100644 index 5349596..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/iterate_promise.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise.cpython-312.pyc deleted file mode 100644 index 7ab0255..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise_list.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise_list.cpython-312.pyc deleted file mode 100644 index f6fd14e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/promise_list.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index f802266..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 48c55fe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/version.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/version.cpython-312.pyc deleted file mode 100644 index 074945c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/pyutils/__pycache__/version.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a093b48..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/asyncio.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/asyncio.cpython-312.pyc deleted file mode 100644 index 589d4dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/asyncio.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/gevent.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/gevent.cpython-312.pyc deleted file mode 100644 index 48fadee..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/gevent.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/immediate.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/immediate.cpython-312.pyc deleted file mode 100644 index 4bf7151..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/immediate.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/thread.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/thread.cpython-312.pyc deleted file mode 100644 index 2448aff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/promise/schedulers/__pycache__/thread.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 7d90512..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 6611031..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/authentication.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/authentication.cpython-312.pyc deleted file mode 100644 index 9193161..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/authentication.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/checks.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/checks.cpython-312.pyc deleted file mode 100644 index b5692b2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/checks.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/compat.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/compat.cpython-312.pyc deleted file mode 100644 index 572d72a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/compat.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/decorators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/decorators.cpython-312.pyc deleted file mode 100644 index 958ee3c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/decorators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/documentation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/documentation.cpython-312.pyc deleted file mode 100644 index e399ab3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/documentation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 2447096..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/fields.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/fields.cpython-312.pyc deleted file mode 100644 index 754838e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/fields.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/filters.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/filters.cpython-312.pyc deleted file mode 100644 index f2463d3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/filters.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/generics.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/generics.cpython-312.pyc deleted file mode 100644 index c8b5265..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/generics.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/metadata.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/metadata.cpython-312.pyc deleted file mode 100644 index 0c41e7f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/metadata.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/mixins.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/mixins.cpython-312.pyc deleted file mode 100644 index b5c9897..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/mixins.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/negotiation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/negotiation.cpython-312.pyc deleted file mode 100644 index 112d3bd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/negotiation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/pagination.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/pagination.cpython-312.pyc deleted file mode 100644 index 4545e09..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/pagination.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/parsers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/parsers.cpython-312.pyc deleted file mode 100644 index 0b01c76..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/parsers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/permissions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/permissions.cpython-312.pyc deleted file mode 100644 index bddc095..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/permissions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/relations.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/relations.cpython-312.pyc deleted file mode 100644 index bd317e9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/relations.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/renderers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/renderers.cpython-312.pyc deleted file mode 100644 index 9e80f91..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/renderers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/request.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/request.cpython-312.pyc deleted file mode 100644 index 0a1057b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/request.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/response.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/response.cpython-312.pyc deleted file mode 100644 index 155fcf3..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/response.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/reverse.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/reverse.cpython-312.pyc deleted file mode 100644 index 393f5ea..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/reverse.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/routers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/routers.cpython-312.pyc deleted file mode 100644 index c9f74dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/routers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/serializers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/serializers.cpython-312.pyc deleted file mode 100644 index aadbe50..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/serializers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/settings.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/settings.cpython-312.pyc deleted file mode 100644 index d7195fe..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/settings.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/status.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/status.cpython-312.pyc deleted file mode 100644 index 6a6b5c2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/status.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/test.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/test.cpython-312.pyc deleted file mode 100644 index fd5eec0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/test.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/throttling.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/throttling.cpython-312.pyc deleted file mode 100644 index 8507e56..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/throttling.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urlpatterns.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urlpatterns.cpython-312.pyc deleted file mode 100644 index 3c414eb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urlpatterns.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 887ef34..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/validators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/validators.cpython-312.pyc deleted file mode 100644 index 1a35f59..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/validators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/versioning.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/versioning.cpython-312.pyc deleted file mode 100644 index 0b11acd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/versioning.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/views.cpython-312.pyc deleted file mode 100644 index 7aafca9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/viewsets.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/viewsets.cpython-312.pyc deleted file mode 100644 index 771fec7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/__pycache__/viewsets.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9c880ba..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/admin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/admin.cpython-312.pyc deleted file mode 100644 index 3168969..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/admin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/apps.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/apps.cpython-312.pyc deleted file mode 100644 index 82c5146..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/apps.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/models.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/models.cpython-312.pyc deleted file mode 100644 index 4b9f6d2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/models.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/serializers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/serializers.cpython-312.pyc deleted file mode 100644 index 52e5733..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/serializers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/views.cpython-312.pyc deleted file mode 100644 index d1285d1..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b0f075a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5b91ee2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/drf_create_token.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/drf_create_token.cpython-312.pyc deleted file mode 100644 index b9fede2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/management/commands/__pycache__/drf_create_token.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0001_initial.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0001_initial.cpython-312.pyc deleted file mode 100644 index 46b7425..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0001_initial.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0002_auto_20160226_1747.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0002_auto_20160226_1747.cpython-312.pyc deleted file mode 100644 index 92d9512..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0002_auto_20160226_1747.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0003_tokenproxy.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0003_tokenproxy.cpython-312.pyc deleted file mode 100644 index 77cfeff..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0003_tokenproxy.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0004_alter_tokenproxy_options.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0004_alter_tokenproxy_options.cpython-312.pyc deleted file mode 100644 index 3a6198b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/0004_alter_tokenproxy_options.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index bf2f0fa..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/authtoken/migrations/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a0bdb74..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0ec4316..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/generateschema.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/generateschema.cpython-312.pyc deleted file mode 100644 index 031735f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/management/commands/__pycache__/generateschema.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 50c6b16..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/coreapi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/coreapi.cpython-312.pyc deleted file mode 100644 index 744925e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/coreapi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/generators.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/generators.cpython-312.pyc deleted file mode 100644 index a1fe147..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/generators.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/inspectors.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/inspectors.cpython-312.pyc deleted file mode 100644 index d317fcd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/inspectors.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/openapi.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/openapi.cpython-312.pyc deleted file mode 100644 index 6116f71..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/openapi.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 2b015bb..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/views.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/views.cpython-312.pyc deleted file mode 100644 index bcf992e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/schemas/__pycache__/views.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index d45fca4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/rest_framework.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/rest_framework.cpython-312.pyc deleted file mode 100644 index 4934a29..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/templatetags/__pycache__/rest_framework.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index a3d3e8f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/breadcrumbs.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/breadcrumbs.cpython-312.pyc deleted file mode 100644 index 7be7999..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/breadcrumbs.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/encoders.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/encoders.cpython-312.pyc deleted file mode 100644 index 10a049e..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/encoders.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/field_mapping.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/field_mapping.cpython-312.pyc deleted file mode 100644 index 7d6682c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/field_mapping.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/formatting.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/formatting.cpython-312.pyc deleted file mode 100644 index 03d1237..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/formatting.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/html.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/html.cpython-312.pyc deleted file mode 100644 index a023ef8..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/html.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/humanize_datetime.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/humanize_datetime.cpython-312.pyc deleted file mode 100644 index f04949b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/humanize_datetime.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/json.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/json.cpython-312.pyc deleted file mode 100644 index b183c6f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/json.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/mediatypes.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/mediatypes.cpython-312.pyc deleted file mode 100644 index 6e9f2dd..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/mediatypes.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/model_meta.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/model_meta.cpython-312.pyc deleted file mode 100644 index eb944da..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/model_meta.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/representation.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/representation.cpython-312.pyc deleted file mode 100644 index fdf1bd7..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/representation.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/serializer_helpers.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/serializer_helpers.cpython-312.pyc deleted file mode 100644 index a553269..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/serializer_helpers.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/timezone.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/timezone.cpython-312.pyc deleted file mode 100644 index 5e23248..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/timezone.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/urls.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/urls.cpython-312.pyc deleted file mode 100644 index 2109a05..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/rest_framework/utils/__pycache__/urls.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index eeda77b..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__main__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__main__.cpython-312.pyc deleted file mode 100644 index a9a32c5..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/__main__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/cli.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/cli.cpython-312.pyc deleted file mode 100644 index d4f228d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/cli.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/exceptions.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 4d2b560..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/formatter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/formatter.cpython-312.pyc deleted file mode 100644 index eff7ef2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/formatter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/keywords.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/keywords.cpython-312.pyc deleted file mode 100644 index 9bb9d4c..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/keywords.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/lexer.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/lexer.cpython-312.pyc deleted file mode 100644 index 0715ba9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/lexer.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/sql.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/sql.cpython-312.pyc deleted file mode 100644 index a0ce59a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/sql.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/tokens.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/tokens.cpython-312.pyc deleted file mode 100644 index c08fb86..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/tokens.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/utils.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index 6b6cd9d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b1d76c0..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-312.pyc deleted file mode 100644 index db84b7d..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/grouping.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/grouping.cpython-312.pyc deleted file mode 100644 index a9732f4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/grouping.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-312.pyc deleted file mode 100644 index bc6e1c4..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 1264a31..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-312.pyc deleted file mode 100644 index 7c8e07f..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/others.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/others.cpython-312.pyc deleted file mode 100644 index 8f57c59..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/others.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/output.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/output.cpython-312.pyc deleted file mode 100644 index 3608da2..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/output.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/reindent.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/reindent.cpython-312.pyc deleted file mode 100644 index 8de8c3a..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/reindent.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-312.pyc deleted file mode 100644 index ede0872..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/tokens.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/tokens.cpython-312.pyc deleted file mode 100644 index 62dff19..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/sqlparse/filters/__pycache__/tokens.cpython-312.pyc and /dev/null differ diff --git a/ev_backend/venv/lib/python3.12/site-packages/text_unidecode/__pycache__/__init__.cpython-312.pyc b/ev_backend/venv/lib/python3.12/site-packages/text_unidecode/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 6f8e1c9..0000000 Binary files a/ev_backend/venv/lib/python3.12/site-packages/text_unidecode/__pycache__/__init__.cpython-312.pyc and /dev/null differ