diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..86da7d48ce8d333db460e5e9e5092d47101f338d
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+images/**/*.png filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..26c7e4a208d922f3f2795e27341bad08a177016a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,89 @@
+# Python virtual environment
+hf-env/
+venv/
+env/
+*.venv
+
+# Python cache files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+cover/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IDE / Editor specific files
+.idea/
+.vscode/
+*.sublime-project
+*.sublime-workspace
+
+# OS generated files
+.DS_Store
+Thumbs.db
+
+# Results (optional - uncomment if you don't want to track results in Git)
+# results/
+
+# Configuration files containing secrets (uncomment if you use these names)
+# configs/openrouter_config.yaml
+.env*
+.env
+
+# Logs
+logs/
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+# Other
+*.swp
+*~
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..d13931bc1490ab40bc98e23b021f423db6c062bd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,132 @@
+# JEE/NEET LLM Benchmark Dataset
+
+[](https://opensource.org/licenses/MIT)
+
+## Dataset Description
+
+This repository contains a benchmark dataset designed for evaluating the capabilities of Large Language Models (LLMs) on questions from the Joint Entrance Examination (JEE) and the National Eligibility cum Entrance Test (NEET) conducted in India. These are highly competitive entrance examinations for engineering and medical colleges, respectively.
+
+The questions are presented in image format (`.png`) as they appear in the original papers. The dataset includes metadata linking each image to its corresponding exam details, subject, question type, and correct answer(s).
+
+**Current Data:**
+* NEET 2024 (Code T3)
+
+## How to Use
+
+### Using `datasets` Library
+
+The dataset is designed to be loaded using the Hugging Face `datasets` library:
+
+```python
+from datasets import load_dataset
+
+# Load the evaluation split
+dataset = load_dataset("your-username/your-repo-name", split='test') # Replace with your HF repo name
+
+# Example: Access the first question
+example = dataset[0]
+image = example["image"]
+question_id = example["question_id"]
+subject = example["subject"]
+correct_answers = example["correct_answer"]
+
+print(f"Question ID: {question_id}")
+print(f"Subject: {subject}")
+print(f"Correct Answer(s): {correct_answers}")
+# Display the image (requires Pillow)
+# image.show()
+```
+
+### Manual Usage (Benchmark Scripts)
+
+This repository contains scripts to run the benchmark evaluation directly:
+
+1. **Clone the repository:**
+ ```bash
+ # Replace with your actual Hugging Face repository URL
+ git clone https://huggingface.co/datasets/Reja1/jee-neet-benchmark
+ cd your-repo-name
+ # Ensure Git LFS is installed and pull large files if necessary
+ # git lfs pull
+ ```
+2. **Install dependencies:**
+ ```bash
+ # It's recommended to use a virtual environment
+ python -m venv venv
+ # source venv/bin/activate # or .\venv\Scripts\activate on Windows
+ pip install -r requirements.txt
+ ```
+3. **Configure API Key:**
+ * Create a file named `.env` in the root directory of the project (`your-repo-name/`).
+ * Add your OpenRouter API key to this file:
+ ```dotenv
+ OPENROUTER_API_KEY=your_actual_openrouter_api_key
+ ```
+ * **Important:** The `.gitignore` file is already configured to prevent committing the `.env` file. Never commit your API keys directly.
+4. **Configure Models:**
+ * Edit the `configs/benchmark_config.yaml` file.
+ * Modify the `openrouter_models` list to include the specific model identifiers (e.g., `"openai/gpt-4o"`, `"google/gemini-pro-vision"`) you want to evaluate. Ensure these models support vision input on OpenRouter.
+ * You can also adjust other parameters like `max_tokens` and `request_timeout` if needed.
+5. **Run the benchmark:**
+ * Execute the runner script from the root directory:
+ ```bash
+ python src/benchmark_runner.py --config configs/benchmark_config.yaml
+ ```
+ * You can override the models list from the command line:
+ ```bash
+ python src/benchmark_runner.py --config configs/benchmark_config.yaml --models "openai/gpt-4o" "google/gemini-pro-vision"
+ ```
+ * You can specify a different output directory:
+ ```bash
+ python src/benchmark_runner.py --config configs/benchmark_config.yaml --output_dir my_custom_results
+ ```
+6. **Check Results:**
+ * Results for each model will be saved in subdirectories within the `results/` folder (or your custom output directory).
+ * Each model's folder (e.g., `results/openai_gpt-4o/`) will contain:
+ * `predictions.jsonl`: Detailed results for each question (prediction, ground truth, raw response).
+ * `summary.json`: Overall accuracy and statistics for that model.
+
+## Dataset Structure
+
+* **`data/metadata.jsonl`**: Contains metadata for each question image. Each line is a JSON object with fields like `image_path`, `question_id`, `exam_name`, `exam_year`, `exam_code`, `subject`, `question_type`, `correct_answer`.
+* **`images/`**: Contains subdirectories for each exam set (e.g., `images/NEET_2024_T3/`), holding the `.png` question images.
+* **`src/`**: Python source code for running the benchmark (data loading, LLM interaction, evaluation).
+* **`configs/`**: Configuration files for the benchmark.
+* **`results/`**: Directory where benchmark results (LLM outputs) will be stored.
+* **`jee_neet_benchmark_dataset.py`**: Hugging Face `datasets` loading script.
+* **`requirements.txt`**: Python dependencies.
+* **`README.md`**: This file.
+
+## Data Fields
+
+The dataset contains the following fields (accessible via `datasets`):
+
+* `image`: The question image (`datasets.Image`).
+* `question_id`: Unique identifier for the question (string).
+* `exam_name`: Name of the exam (e.g., "NEET", "JEE Main") (string).
+* `exam_year`: Year of the exam (int).
+* `exam_code`: Specific paper code/session (e.g., "T3", "S1") (string).
+* `subject`: Subject (e.g., "Physics", "Chemistry", "Biology", "Mathematics") (string).
+* `question_type`: Type of question (e.g., "MCQ", "Multiple Correct") (string).
+* `correct_answer`: List containing the correct answer index/indices (e.g., `[2]`, `[1, 3]`) (list of int).
+
+## Limitations
+
+[TODO: Describe any known limitations, e.g., OCR quality if applicable, coverage of exams/subjects, potential biases.]
+
+## Citation
+
+If you use this dataset or benchmark code, please cite:
+
+```bibtex
+@misc{your_name_or_org_year_jeeneetbenchmark,
+ title={JEE/NEET LLM Benchmark},
+ author={Md Rejaullah},
+ year={2025},
+ howpublished={\\url{https://huggingface.co/datasets/Reja1/jee-neet-benchmark}},
+}
+```
+
+## License
+
+This dataset and associated code are licensed under the [MIT License](https://opensource.org/licenses/MIT).
diff --git a/configs/benchmark_config.yaml b/configs/benchmark_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..3b0a47ecea6fc333b776a0ba50a92b2fdb7da5a2
--- /dev/null
+++ b/configs/benchmark_config.yaml
@@ -0,0 +1,23 @@
+# List of OpenRouter model identifiers to evaluate.
+# Find identifiers at: https://openrouter.ai/docs#models
+# Ensure the models support vision input.
+openrouter_models:
+ - "google/gemini-2.5-pro-preview-03-25"
+ #- "openai/gpt-4o"
+ # - "google/gemini-pro-vision" # Example - uncomment or add others
+ # - "anthropic/claude-3-opus" # Example - check vision support and access
+ # - "anthropic/claude-3-sonnet"
+ # - "anthropic/claude-3-haiku"
+
+# Path to the dataset loading script relative to the repository root.
+# This should point to the .py file that defines the dataset.
+dataset_path: "jee_neet_benchmark_dataset.py"
+
+# Base directory where results for each model will be saved.
+results_base_dir: "results"
+
+# Optional: API request parameters
+# Maximum tokens to generate in the response. Increase to allow model more room.
+max_tokens: 15000
+# Timeout for each API request in seconds.
+#request_timeout: 200
diff --git a/configs/openrouter_config.yaml b/configs/openrouter_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/data/metadata.jsonl b/data/metadata.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..e00e00b89f1d44b7eb664f60d75fe0dc1dbf489b
--- /dev/null
+++ b/data/metadata.jsonl
@@ -0,0 +1,200 @@
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_001.png", "question_id": "NEET_2024_T3_001", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_002.png", "question_id": "NEET_2024_T3_002", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_003.png", "question_id": "NEET_2024_T3_003", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_004.png", "question_id": "NEET_2024_T3_004", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_005.png", "question_id": "NEET_2024_T3_005", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_006.png", "question_id": "NEET_2024_T3_006", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_007.png", "question_id": "NEET_2024_T3_007", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_008.png", "question_id": "NEET_2024_T3_008", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_009.png", "question_id": "NEET_2024_T3_009", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_010.png", "question_id": "NEET_2024_T3_010", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_011.png", "question_id": "NEET_2024_T3_011", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_012.png", "question_id": "NEET_2024_T3_012", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_013.png", "question_id": "NEET_2024_T3_013", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_014.png", "question_id": "NEET_2024_T3_014", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_015.png", "question_id": "NEET_2024_T3_015", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_016.png", "question_id": "NEET_2024_T3_016", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_017.png", "question_id": "NEET_2024_T3_017", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_018.png", "question_id": "NEET_2024_T3_018", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_019.png", "question_id": "NEET_2024_T3_019", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_020.png", "question_id": "NEET_2024_T3_020", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_021.png", "question_id": "NEET_2024_T3_021", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_022.png", "question_id": "NEET_2024_T3_022", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_023.png", "question_id": "NEET_2024_T3_023", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_024.png", "question_id": "NEET_2024_T3_024", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_025.png", "question_id": "NEET_2024_T3_025", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1, 3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_026.png", "question_id": "NEET_2024_T3_026", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_027.png", "question_id": "NEET_2024_T3_027", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_028.png", "question_id": "NEET_2024_T3_028", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_029.png", "question_id": "NEET_2024_T3_029", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_030.png", "question_id": "NEET_2024_T3_030", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_031.png", "question_id": "NEET_2024_T3_031", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_032.png", "question_id": "NEET_2024_T3_032", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_033.png", "question_id": "NEET_2024_T3_033", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_034.png", "question_id": "NEET_2024_T3_034", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_035.png", "question_id": "NEET_2024_T3_035", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_036.png", "question_id": "NEET_2024_T3_036", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_037.png", "question_id": "NEET_2024_T3_037", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_038.png", "question_id": "NEET_2024_T3_038", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_039.png", "question_id": "NEET_2024_T3_039", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_040.png", "question_id": "NEET_2024_T3_040", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_041.png", "question_id": "NEET_2024_T3_041", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_042.png", "question_id": "NEET_2024_T3_042", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_043.png", "question_id": "NEET_2024_T3_043", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_044.png", "question_id": "NEET_2024_T3_044", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_045.png", "question_id": "NEET_2024_T3_045", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_046.png", "question_id": "NEET_2024_T3_046", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_047.png", "question_id": "NEET_2024_T3_047", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_048.png", "question_id": "NEET_2024_T3_048", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_049.png", "question_id": "NEET_2024_T3_049", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_050.png", "question_id": "NEET_2024_T3_050", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_051.png", "question_id": "NEET_2024_T3_051", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_052.png", "question_id": "NEET_2024_T3_052", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_053.png", "question_id": "NEET_2024_T3_053", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_054.png", "question_id": "NEET_2024_T3_054", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_055.png", "question_id": "NEET_2024_T3_055", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_056.png", "question_id": "NEET_2024_T3_056", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_057.png", "question_id": "NEET_2024_T3_057", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_058.png", "question_id": "NEET_2024_T3_058", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_059.png", "question_id": "NEET_2024_T3_059", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_060.png", "question_id": "NEET_2024_T3_060", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_061.png", "question_id": "NEET_2024_T3_061", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_062.png", "question_id": "NEET_2024_T3_062", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_063.png", "question_id": "NEET_2024_T3_063", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_064.png", "question_id": "NEET_2024_T3_064", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_065.png", "question_id": "NEET_2024_T3_065", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_066.png", "question_id": "NEET_2024_T3_066", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_067.png", "question_id": "NEET_2024_T3_067", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_068.png", "question_id": "NEET_2024_T3_068", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_069.png", "question_id": "NEET_2024_T3_069", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_070.png", "question_id": "NEET_2024_T3_070", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_071.png", "question_id": "NEET_2024_T3_071", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_072.png", "question_id": "NEET_2024_T3_072", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_073.png", "question_id": "NEET_2024_T3_073", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_074.png", "question_id": "NEET_2024_T3_074", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_075.png", "question_id": "NEET_2024_T3_075", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_076.png", "question_id": "NEET_2024_T3_076", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_077.png", "question_id": "NEET_2024_T3_077", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_078.png", "question_id": "NEET_2024_T3_078", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_079.png", "question_id": "NEET_2024_T3_079", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_080.png", "question_id": "NEET_2024_T3_080", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_081.png", "question_id": "NEET_2024_T3_081", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_082.png", "question_id": "NEET_2024_T3_082", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_083.png", "question_id": "NEET_2024_T3_083", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_084.png", "question_id": "NEET_2024_T3_084", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_085.png", "question_id": "NEET_2024_T3_085", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_086.png", "question_id": "NEET_2024_T3_086", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_087.png", "question_id": "NEET_2024_T3_087", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_088.png", "question_id": "NEET_2024_T3_088", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_089.png", "question_id": "NEET_2024_T3_089", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_090.png", "question_id": "NEET_2024_T3_090", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_091.png", "question_id": "NEET_2024_T3_091", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_092.png", "question_id": "NEET_2024_T3_092", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_093.png", "question_id": "NEET_2024_T3_093", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_094.png", "question_id": "NEET_2024_T3_094", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_095.png", "question_id": "NEET_2024_T3_095", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_096.png", "question_id": "NEET_2024_T3_096", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_097.png", "question_id": "NEET_2024_T3_097", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_098.png", "question_id": "NEET_2024_T3_098", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_099.png", "question_id": "NEET_2024_T3_099", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_100.png", "question_id": "NEET_2024_T3_100", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_101.png", "question_id": "NEET_2024_T3_101", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_102.png", "question_id": "NEET_2024_T3_102", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_103.png", "question_id": "NEET_2024_T3_103", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_104.png", "question_id": "NEET_2024_T3_104", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_105.png", "question_id": "NEET_2024_T3_105", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_106.png", "question_id": "NEET_2024_T3_106", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_107.png", "question_id": "NEET_2024_T3_107", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_108.png", "question_id": "NEET_2024_T3_108", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_109.png", "question_id": "NEET_2024_T3_109", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_110.png", "question_id": "NEET_2024_T3_110", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_111.png", "question_id": "NEET_2024_T3_111", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_112.png", "question_id": "NEET_2024_T3_112", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_113.png", "question_id": "NEET_2024_T3_113", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_114.png", "question_id": "NEET_2024_T3_114", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_115.png", "question_id": "NEET_2024_T3_115", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_116.png", "question_id": "NEET_2024_T3_116", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_117.png", "question_id": "NEET_2024_T3_117", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_118.png", "question_id": "NEET_2024_T3_118", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_119.png", "question_id": "NEET_2024_T3_119", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_120.png", "question_id": "NEET_2024_T3_120", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_121.png", "question_id": "NEET_2024_T3_121", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_122.png", "question_id": "NEET_2024_T3_122", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_123.png", "question_id": "NEET_2024_T3_123", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_124.png", "question_id": "NEET_2024_T3_124", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_125.png", "question_id": "NEET_2024_T3_125", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_126.png", "question_id": "NEET_2024_T3_126", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_127.png", "question_id": "NEET_2024_T3_127", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_128.png", "question_id": "NEET_2024_T3_128", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_129.png", "question_id": "NEET_2024_T3_129", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_130.png", "question_id": "NEET_2024_T3_130", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_131.png", "question_id": "NEET_2024_T3_131", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_132.png", "question_id": "NEET_2024_T3_132", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_133.png", "question_id": "NEET_2024_T3_133", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_134.png", "question_id": "NEET_2024_T3_134", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_135.png", "question_id": "NEET_2024_T3_135", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_136.png", "question_id": "NEET_2024_T3_136", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_137.png", "question_id": "NEET_2024_T3_137", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_138.png", "question_id": "NEET_2024_T3_138", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_139.png", "question_id": "NEET_2024_T3_139", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_140.png", "question_id": "NEET_2024_T3_140", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_141.png", "question_id": "NEET_2024_T3_141", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_142.png", "question_id": "NEET_2024_T3_142", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_143.png", "question_id": "NEET_2024_T3_143", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_144.png", "question_id": "NEET_2024_T3_144", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_145.png", "question_id": "NEET_2024_T3_145", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_146.png", "question_id": "NEET_2024_T3_146", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_147.png", "question_id": "NEET_2024_T3_147", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_148.png", "question_id": "NEET_2024_T3_148", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_149.png", "question_id": "NEET_2024_T3_149", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_150.png", "question_id": "NEET_2024_T3_150", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_151.png", "question_id": "NEET_2024_T3_151", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_152.png", "question_id": "NEET_2024_T3_152", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_153.png", "question_id": "NEET_2024_T3_153", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_154.png", "question_id": "NEET_2024_T3_154", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_155.png", "question_id": "NEET_2024_T3_155", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_156.png", "question_id": "NEET_2024_T3_156", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_157.png", "question_id": "NEET_2024_T3_157", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_158.png", "question_id": "NEET_2024_T3_158", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_159.png", "question_id": "NEET_2024_T3_159", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_160.png", "question_id": "NEET_2024_T3_160", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_161.png", "question_id": "NEET_2024_T3_161", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_162.png", "question_id": "NEET_2024_T3_162", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_163.png", "question_id": "NEET_2024_T3_163", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_164.png", "question_id": "NEET_2024_T3_164", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_165.png", "question_id": "NEET_2024_T3_165", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_166.png", "question_id": "NEET_2024_T3_166", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_167.png", "question_id": "NEET_2024_T3_167", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_168.png", "question_id": "NEET_2024_T3_168", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_169.png", "question_id": "NEET_2024_T3_169", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_170.png", "question_id": "NEET_2024_T3_170", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_171.png", "question_id": "NEET_2024_T3_171", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_172.png", "question_id": "NEET_2024_T3_172", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_173.png", "question_id": "NEET_2024_T3_173", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_174.png", "question_id": "NEET_2024_T3_174", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_175.png", "question_id": "NEET_2024_T3_175", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_176.png", "question_id": "NEET_2024_T3_176", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_177.png", "question_id": "NEET_2024_T3_177", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_178.png", "question_id": "NEET_2024_T3_178", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_179.png", "question_id": "NEET_2024_T3_179", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_180.png", "question_id": "NEET_2024_T3_180", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_181.png", "question_id": "NEET_2024_T3_181", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_182.png", "question_id": "NEET_2024_T3_182", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_183.png", "question_id": "NEET_2024_T3_183", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_184.png", "question_id": "NEET_2024_T3_184", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_185.png", "question_id": "NEET_2024_T3_185", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_186.png", "question_id": "NEET_2024_T3_186", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_187.png", "question_id": "NEET_2024_T3_187", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_188.png", "question_id": "NEET_2024_T3_188", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_189.png", "question_id": "NEET_2024_T3_189", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_190.png", "question_id": "NEET_2024_T3_190", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_191.png", "question_id": "NEET_2024_T3_191", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_192.png", "question_id": "NEET_2024_T3_192", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_193.png", "question_id": "NEET_2024_T3_193", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_194.png", "question_id": "NEET_2024_T3_194", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_195.png", "question_id": "NEET_2024_T3_195", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_196.png", "question_id": "NEET_2024_T3_196", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_197.png", "question_id": "NEET_2024_T3_197", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_198.png", "question_id": "NEET_2024_T3_198", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_199.png", "question_id": "NEET_2024_T3_199", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
+{"image_path": "images/NEET_2024_T3/NEET_2024_T3_200.png", "question_id": "NEET_2024_T3_200", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
diff --git a/images/NEET_2024_T3/NEET_2024_T3_001.png b/images/NEET_2024_T3/NEET_2024_T3_001.png
new file mode 100644
index 0000000000000000000000000000000000000000..30eaf5144c8c96a3d03312f93b4ad32957e68b1d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_001.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aad666a03cea879687ba2bda72c6219f4eaa55bf8852ba5dbc78b49a5bbef7fe
+size 38137
diff --git a/images/NEET_2024_T3/NEET_2024_T3_002.png b/images/NEET_2024_T3/NEET_2024_T3_002.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d42964605dd0bcb3f321c80a113839183e363d5
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_002.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:40c4ca2ea7cc3164cf0ba5fd9f59938d43682390f18a768e567c5db0edec608c
+size 85562
diff --git a/images/NEET_2024_T3/NEET_2024_T3_003.png b/images/NEET_2024_T3/NEET_2024_T3_003.png
new file mode 100644
index 0000000000000000000000000000000000000000..247b3b15fa7ff82719f67162fa5abfb49ef0423d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_003.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fdc9b179fee034fccf124efed7dd6c5517d4fff4251233fd9dbd6ac23590afe5
+size 59738
diff --git a/images/NEET_2024_T3/NEET_2024_T3_004.png b/images/NEET_2024_T3/NEET_2024_T3_004.png
new file mode 100644
index 0000000000000000000000000000000000000000..34df2eca5b0a487036b38fb73cf0edc61cdd961b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_004.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b94257d34645730c1c4b1eff6a8b3f252bfc5e4e98fe27a2e517af09bd7af5bd
+size 58489
diff --git a/images/NEET_2024_T3/NEET_2024_T3_005.png b/images/NEET_2024_T3/NEET_2024_T3_005.png
new file mode 100644
index 0000000000000000000000000000000000000000..16d4262a509ff39f0333e9b0dbbac293ab36f312
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_005.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:25aacc017fb4699ab6346bc51dbe54b2fafdd1312dfe763705b468dfaf216908
+size 25985
diff --git a/images/NEET_2024_T3/NEET_2024_T3_006.png b/images/NEET_2024_T3/NEET_2024_T3_006.png
new file mode 100644
index 0000000000000000000000000000000000000000..7176d002fdbfb110dfebaabec6095d1f32b0f3e2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_006.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dcac070033e69a1bb65ad02b5ce0401b5e64235f0233e4a62673c82f68971f12
+size 32454
diff --git a/images/NEET_2024_T3/NEET_2024_T3_007.png b/images/NEET_2024_T3/NEET_2024_T3_007.png
new file mode 100644
index 0000000000000000000000000000000000000000..7200bca67f3063f7129886d6f77b7e2224042db8
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_007.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:16afe0d541a17fd4eb2b577bba50983ce682c2132bfe5fad5d156b38cb5c60d0
+size 63093
diff --git a/images/NEET_2024_T3/NEET_2024_T3_008.png b/images/NEET_2024_T3/NEET_2024_T3_008.png
new file mode 100644
index 0000000000000000000000000000000000000000..efa415d7ea62a8cb2a0095c918d44d8d0babb1b6
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_008.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:22948f06e56e5ded623c8fdc1b2a75f6999425667f75d856e953869356e3374c
+size 39567
diff --git a/images/NEET_2024_T3/NEET_2024_T3_009.png b/images/NEET_2024_T3/NEET_2024_T3_009.png
new file mode 100644
index 0000000000000000000000000000000000000000..e59c3902f7e06b67c463ccf36d6f2e04cb2c01c7
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_009.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9181e8265254e30e2ee98032c42626327db97fde726df166e1813bf7324898f2
+size 54429
diff --git a/images/NEET_2024_T3/NEET_2024_T3_010.png b/images/NEET_2024_T3/NEET_2024_T3_010.png
new file mode 100644
index 0000000000000000000000000000000000000000..534f8db649db878625435fed5d2018ca5efc91a9
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_010.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b544cb890d04366ce130a30780e64fbeecbede5046e8a5ee1a018bb8097eed10
+size 56269
diff --git a/images/NEET_2024_T3/NEET_2024_T3_011.png b/images/NEET_2024_T3/NEET_2024_T3_011.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ea25de5541411fd01bb7aff14b620140d17caf
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_011.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:292f111da0c995ec6e33d24daddadaebef52d7ba5430cdec33bc0a5b3a4bf300
+size 56432
diff --git a/images/NEET_2024_T3/NEET_2024_T3_012.png b/images/NEET_2024_T3/NEET_2024_T3_012.png
new file mode 100644
index 0000000000000000000000000000000000000000..baf0186b54e85b46ab2272381a2e550050a815dc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_012.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:12946dc9ad12fe922d9b6fdfd3864f58bbb647c55213a47bb8b146eb6543e941
+size 51408
diff --git a/images/NEET_2024_T3/NEET_2024_T3_013.png b/images/NEET_2024_T3/NEET_2024_T3_013.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8846286c7575401ba5016907fe75f7925ce2b8c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_013.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f70043eb817acc25a0aa1da3142a8a5afd17304753242f2d5bdd24e5ccc517be
+size 64679
diff --git a/images/NEET_2024_T3/NEET_2024_T3_014.png b/images/NEET_2024_T3/NEET_2024_T3_014.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4597ab92ab688400d7fae7ec6e8a50e0e347e32
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_014.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2e411ad56458df7046b6b274ab5ef22ccf24b2003d63158655b167bb5975f241
+size 71386
diff --git a/images/NEET_2024_T3/NEET_2024_T3_015.png b/images/NEET_2024_T3/NEET_2024_T3_015.png
new file mode 100644
index 0000000000000000000000000000000000000000..629e3a32bce6f6fae5afc4f13c73fb42e5be0b6d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_015.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:02881aa5aac082e77893bc437df152ec5ca2324943b43e74e8b09f47b91a02dc
+size 87367
diff --git a/images/NEET_2024_T3/NEET_2024_T3_016.png b/images/NEET_2024_T3/NEET_2024_T3_016.png
new file mode 100644
index 0000000000000000000000000000000000000000..826cf72bc9dca8f0917044b1462495c1d5c3ac78
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_016.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0c41177826118ff8c22c0972a5307246fded394a968cb4fc77040641edc1b9ac
+size 121101
diff --git a/images/NEET_2024_T3/NEET_2024_T3_017.png b/images/NEET_2024_T3/NEET_2024_T3_017.png
new file mode 100644
index 0000000000000000000000000000000000000000..1678d0e149868b30293f034aa3c3c196dd6bef17
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_017.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:27651411649038899fe1e06d275fb49fe2b30a5d800d935ac3c7dd45bd3ac60a
+size 34339
diff --git a/images/NEET_2024_T3/NEET_2024_T3_018.png b/images/NEET_2024_T3/NEET_2024_T3_018.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d0c1050c3aec862954b1f1c9fa6598c25717fc0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_018.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:958e215b103015891614f0529efd915dc62a9ef65dd5adaeaf9d5aafd189a65c
+size 52430
diff --git a/images/NEET_2024_T3/NEET_2024_T3_019.png b/images/NEET_2024_T3/NEET_2024_T3_019.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7e3fa96cc2b14bfb3fffbeac75de44582d0c090
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_019.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0c885c25cd06ff4d5d45390e176c296a2348179df37d237d2882c04211d53ae6
+size 89104
diff --git a/images/NEET_2024_T3/NEET_2024_T3_020.png b/images/NEET_2024_T3/NEET_2024_T3_020.png
new file mode 100644
index 0000000000000000000000000000000000000000..6db7eb8a35541409a5e37483a285605e42f4e0d4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_020.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0a418e9277a7259695469810fd7217904237f188a0346c3d2d618a51aa81c5a5
+size 36247
diff --git a/images/NEET_2024_T3/NEET_2024_T3_021.png b/images/NEET_2024_T3/NEET_2024_T3_021.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca81deb399e48e6a9d0a98d0c328e908df94b53b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_021.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0608ee583e05946f8a4d431e380879be4defc1774725162d2bbaf83d7279be2d
+size 33863
diff --git a/images/NEET_2024_T3/NEET_2024_T3_022.png b/images/NEET_2024_T3/NEET_2024_T3_022.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e15a54ee21627e04e0b88a1689d6e5b7339d56e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_022.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c27cdfabbbf15eb1ed1a7a1ef908976cbe042c8a7f40073eb992d4dbcbd4c901
+size 53177
diff --git a/images/NEET_2024_T3/NEET_2024_T3_023.png b/images/NEET_2024_T3/NEET_2024_T3_023.png
new file mode 100644
index 0000000000000000000000000000000000000000..f77c95764b35562c640526b3d919c7402d5ce16e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_023.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:136fe9cf17cf8d09698c75ee84d410e3f2d4c48f84e2eb5942c7b489e4ef69a5
+size 58057
diff --git a/images/NEET_2024_T3/NEET_2024_T3_024.png b/images/NEET_2024_T3/NEET_2024_T3_024.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ce326df2d52beffffdc1b479dfea191d507bdd4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_024.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82b81c6af564431feec846cd926c224f2e9dddb616a1f485bd2ff3fb8c344a6e
+size 32932
diff --git a/images/NEET_2024_T3/NEET_2024_T3_025.png b/images/NEET_2024_T3/NEET_2024_T3_025.png
new file mode 100644
index 0000000000000000000000000000000000000000..d452d9c61d17144b49867370e1e0dab3457772ac
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_025.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a1b348046ae49bda3587c598a0a9092dff7e8187b0670cf36b0a964de0e8e91d
+size 84715
diff --git a/images/NEET_2024_T3/NEET_2024_T3_026.png b/images/NEET_2024_T3/NEET_2024_T3_026.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5b0aee2674777139e8a6c1690e388047977f6af
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_026.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:995df48f0e1929c957953da81a7d163fbbd701cdbf436a24d5e8a8daf10e4fd0
+size 108549
diff --git a/images/NEET_2024_T3/NEET_2024_T3_027.png b/images/NEET_2024_T3/NEET_2024_T3_027.png
new file mode 100644
index 0000000000000000000000000000000000000000..c92fd9cf07d28b2da68f13159e977a28d780b636
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_027.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:884aaf9a1f9443093c87b34178b3459bd4664ea0f3c24886ce53d0dc43375b47
+size 42352
diff --git a/images/NEET_2024_T3/NEET_2024_T3_028.png b/images/NEET_2024_T3/NEET_2024_T3_028.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a0802931756e6f134b87891d335e81553368691
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_028.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e515023257be0f680c712575ddfc4821304d7da794588c5a2a15455f2c6c5b2
+size 38725
diff --git a/images/NEET_2024_T3/NEET_2024_T3_029.png b/images/NEET_2024_T3/NEET_2024_T3_029.png
new file mode 100644
index 0000000000000000000000000000000000000000..dee2c7110cf2e28bb6e83d860addb441624d4baa
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_029.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ebcaa38ec3c4890e8b3b0bb5ad76d04d314f0f30f3f145b6a41bb346c5fba6a4
+size 62267
diff --git a/images/NEET_2024_T3/NEET_2024_T3_030.png b/images/NEET_2024_T3/NEET_2024_T3_030.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6973d6048e123350bc2c0a629933c13894e93bb
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_030.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8d329b08cdb54f0f48efbcc911e2b570407146735689668d37e09ddc3e4ea745
+size 42263
diff --git a/images/NEET_2024_T3/NEET_2024_T3_031.png b/images/NEET_2024_T3/NEET_2024_T3_031.png
new file mode 100644
index 0000000000000000000000000000000000000000..9da5c396fe5d78f0ef3a8c896c0fdcf627d0c425
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_031.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:efd764b8fe7dc54968c6f6b616c5fcfd27e1e059934823cee0722a0d1cb90c96
+size 51220
diff --git a/images/NEET_2024_T3/NEET_2024_T3_032.png b/images/NEET_2024_T3/NEET_2024_T3_032.png
new file mode 100644
index 0000000000000000000000000000000000000000..40c84205c5285e1057396913ce23b9c46359110d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_032.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:383745cc3cf316bf4d6e3382a4293d95f0788921ef7b5ca0835bff407dcd7a65
+size 52642
diff --git a/images/NEET_2024_T3/NEET_2024_T3_033.png b/images/NEET_2024_T3/NEET_2024_T3_033.png
new file mode 100644
index 0000000000000000000000000000000000000000..1403ef56e57e015b9d927f42ffbf9c8bb10e7455
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_033.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fdd948acfac4a916a64dbd14871798a60394e49306a9cc20c0dc72a5b716863a
+size 60981
diff --git a/images/NEET_2024_T3/NEET_2024_T3_034.png b/images/NEET_2024_T3/NEET_2024_T3_034.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c5b1036dd7f23f641b60f0df217cdd7b9943a14
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_034.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4760dd4368a390f6210a0fa81eaae0f3db860e7657253973b84ba50f2057f998
+size 39454
diff --git a/images/NEET_2024_T3/NEET_2024_T3_035.png b/images/NEET_2024_T3/NEET_2024_T3_035.png
new file mode 100644
index 0000000000000000000000000000000000000000..163d17062daa8d3ce376ddfd3b7678f63ef8b206
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_035.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2e3bd7750f75ec288cebc9aacbbae8723f6bd0589578932be1bc9b5930556552
+size 55995
diff --git a/images/NEET_2024_T3/NEET_2024_T3_036.png b/images/NEET_2024_T3/NEET_2024_T3_036.png
new file mode 100644
index 0000000000000000000000000000000000000000..422cfb735ccbfd9afc4acf0f82e9b45fac7853bc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_036.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51f5b40653a12186d5e09c0857c2f4700ff8f67e097803b4d2fcff729eb57f1e
+size 85840
diff --git a/images/NEET_2024_T3/NEET_2024_T3_037.png b/images/NEET_2024_T3/NEET_2024_T3_037.png
new file mode 100644
index 0000000000000000000000000000000000000000..973deb0d8b31fbc594610daf96950a057c47181a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_037.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f293867ac4316954c569a58429967982977ca3c44f8e4e5a2ecf05c3ca0fa7a
+size 67638
diff --git a/images/NEET_2024_T3/NEET_2024_T3_038.png b/images/NEET_2024_T3/NEET_2024_T3_038.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ae437100cc6782f9802e9ef898fee870a7e559a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_038.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:603fd1fdd97e54b960dd42a9faad7a108d3d6f9b562a25a79c2e95025be2b868
+size 52963
diff --git a/images/NEET_2024_T3/NEET_2024_T3_039.png b/images/NEET_2024_T3/NEET_2024_T3_039.png
new file mode 100644
index 0000000000000000000000000000000000000000..530a16f6392330bf7e026ac7e6b43e531e4e73fa
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_039.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cfd8b60260368e2fb5d65262068f00c7ce25b4c7d5288c7e9c3276eeb3bda1a2
+size 78120
diff --git a/images/NEET_2024_T3/NEET_2024_T3_040.png b/images/NEET_2024_T3/NEET_2024_T3_040.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddb8258116981fc91660c4d42d636483e95be245
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_040.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e3231feef9bcbeda9ea0bf67948eacb3f34e81bfe8f8c5ccd3c866c12bfd974a
+size 17920
diff --git a/images/NEET_2024_T3/NEET_2024_T3_041.png b/images/NEET_2024_T3/NEET_2024_T3_041.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3874b5627dd9bb5f115f0255136c4050e285835
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_041.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51cf654195576208e456544c7804a74cfd659d4839b3b4a0d3eb47db1feee9eb
+size 27950
diff --git a/images/NEET_2024_T3/NEET_2024_T3_042.png b/images/NEET_2024_T3/NEET_2024_T3_042.png
new file mode 100644
index 0000000000000000000000000000000000000000..817bd372c0e6675bb7da98c1128b0d7e1e514ca0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_042.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9f32496e9898f595a865c3f3f150bda7a55fa9770fab5c01a1210f6388ebd64
+size 46615
diff --git a/images/NEET_2024_T3/NEET_2024_T3_043.png b/images/NEET_2024_T3/NEET_2024_T3_043.png
new file mode 100644
index 0000000000000000000000000000000000000000..a34f02c9d2d19070cf7981d84d3658536871dc25
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_043.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f487c0059a328afed5131f05990e686f21fd22743b0e3e7151e1b981140f06b9
+size 42612
diff --git a/images/NEET_2024_T3/NEET_2024_T3_044.png b/images/NEET_2024_T3/NEET_2024_T3_044.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ef327420e756aa0a68e7324e9fa45353d54224e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_044.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e53231fe7f8e8e8056672b1188f5dd12b17034bccc56c13f61b596a00cc08d36
+size 50564
diff --git a/images/NEET_2024_T3/NEET_2024_T3_045.png b/images/NEET_2024_T3/NEET_2024_T3_045.png
new file mode 100644
index 0000000000000000000000000000000000000000..80a70fec787cb942cb4f3bd2aeb0508c3f363c19
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_045.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a98f265b0f872ebba72a29db7b412f121aef78db3867c7fc175e6310b2bc642c
+size 45615
diff --git a/images/NEET_2024_T3/NEET_2024_T3_046.png b/images/NEET_2024_T3/NEET_2024_T3_046.png
new file mode 100644
index 0000000000000000000000000000000000000000..43ef2545ed37299f6024d3dccbe52aecd265c469
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_046.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:389954c5ebd7901602703d234c3ffcd8a14349a123e75f342c61bc5e64f640f7
+size 34957
diff --git a/images/NEET_2024_T3/NEET_2024_T3_047.png b/images/NEET_2024_T3/NEET_2024_T3_047.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c837433fdfb9caf2a650f358a322b4e5eff4500
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_047.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9f5e7f39cc12f33056364f0c4cc88b99524a91a042b9b3e30354041f6b4f3334
+size 53437
diff --git a/images/NEET_2024_T3/NEET_2024_T3_048.png b/images/NEET_2024_T3/NEET_2024_T3_048.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b3437a2f741bae9f8f35ef89956c3a28b7ece55
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_048.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:48c17d673b363271d1c3c13a5669afb52b25b79a0668628996785a0f77a7ef40
+size 40575
diff --git a/images/NEET_2024_T3/NEET_2024_T3_049.png b/images/NEET_2024_T3/NEET_2024_T3_049.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d1c8a5e3f57e8490169715185dc2e8f98958c20
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_049.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e9b81de948a8e24a7e52fcdbc322755c0757aa94125cf7edf894a3f7ff999964
+size 26973
diff --git a/images/NEET_2024_T3/NEET_2024_T3_050.png b/images/NEET_2024_T3/NEET_2024_T3_050.png
new file mode 100644
index 0000000000000000000000000000000000000000..95b6adbf55bad47cdfb4468b579a8270f87bc2b7
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_050.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:52a9a5aad7f8933e19667fb88845a5a11f7d3fb126b1d72c61d68e97ea784982
+size 21987
diff --git a/images/NEET_2024_T3/NEET_2024_T3_051.png b/images/NEET_2024_T3/NEET_2024_T3_051.png
new file mode 100644
index 0000000000000000000000000000000000000000..928847d19e0d349f5888f1e0a70e0ad1ae958b17
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_051.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9bd932ad8a5ac808393baf24a81899ed37a9006961f0dd7fb1b91fbfab769f21
+size 63971
diff --git a/images/NEET_2024_T3/NEET_2024_T3_052.png b/images/NEET_2024_T3/NEET_2024_T3_052.png
new file mode 100644
index 0000000000000000000000000000000000000000..69e95522ed85a3c98277408ed087eafe192a77aa
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_052.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b43171d1356f1c55b70a4b9ed7a1cab8af7664846b07a28c9c1603f9de3b6291
+size 18925
diff --git a/images/NEET_2024_T3/NEET_2024_T3_053.png b/images/NEET_2024_T3/NEET_2024_T3_053.png
new file mode 100644
index 0000000000000000000000000000000000000000..a45b75187df3b27becf6b6afb21ef2cd863c06ec
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_053.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51055fa2a197a21c788f5d36d12332ff39f192cbeed5bd1efe109889eb7b8488
+size 20392
diff --git a/images/NEET_2024_T3/NEET_2024_T3_054.png b/images/NEET_2024_T3/NEET_2024_T3_054.png
new file mode 100644
index 0000000000000000000000000000000000000000..4bd9d64c117c63d129eab4c25ff554d162aeb539
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_054.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e0fea0a08c3e4d6b113d53d4cb02841168e359610b620840a3510f13f48976ec
+size 40618
diff --git a/images/NEET_2024_T3/NEET_2024_T3_055.png b/images/NEET_2024_T3/NEET_2024_T3_055.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ccc7412d18a575bcc98a7a9e047b00d1288456e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_055.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:26ae9daf6472a839f511296bf8e9b304741d92302a1978b88ee288e106e044ee
+size 51228
diff --git a/images/NEET_2024_T3/NEET_2024_T3_056.png b/images/NEET_2024_T3/NEET_2024_T3_056.png
new file mode 100644
index 0000000000000000000000000000000000000000..12e5bf24eee5194250ada0b5404436a2144175cc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_056.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d0af9b83963a8b2f2a81dcc01523a9b2b66ef7a35cda77008e35778bfa1c7316
+size 84306
diff --git a/images/NEET_2024_T3/NEET_2024_T3_057.png b/images/NEET_2024_T3/NEET_2024_T3_057.png
new file mode 100644
index 0000000000000000000000000000000000000000..4ecd1ec18d41138c65bb0c3b8c9d583cd873353e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_057.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9915fde327b7dc0ea61d7c71d19e90c73e13597ef8237f58ea34f3c325cee5c
+size 37876
diff --git a/images/NEET_2024_T3/NEET_2024_T3_058.png b/images/NEET_2024_T3/NEET_2024_T3_058.png
new file mode 100644
index 0000000000000000000000000000000000000000..42a7c5ca6be00d2d34516df0f1dfe16dbeb49658
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_058.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1d503e2c2c798d97e489b315a3e62de10dca918bdb65421f8f5dd6558ac260a8
+size 80506
diff --git a/images/NEET_2024_T3/NEET_2024_T3_059.png b/images/NEET_2024_T3/NEET_2024_T3_059.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9ead89d3dc5ca0ac2eae2fe15c5bb2705347581
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_059.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6f84c9abdf742ddae645a674905c342753d597a54e3b0d1244dc593dc09b8d19
+size 64860
diff --git a/images/NEET_2024_T3/NEET_2024_T3_060.png b/images/NEET_2024_T3/NEET_2024_T3_060.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fc1792419bf6c1d2b52045a3d5e9281d3053b59
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_060.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ea9f5e46153151c4226c684e6154241ef0ec9b1a6485a01ed38da9ab4335800
+size 52098
diff --git a/images/NEET_2024_T3/NEET_2024_T3_061.png b/images/NEET_2024_T3/NEET_2024_T3_061.png
new file mode 100644
index 0000000000000000000000000000000000000000..c99cd9a18bafe1cdec59bbab4c9216e51c8d9f46
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_061.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6dfd71309014103d7fc2a224ff8cb82323be7274e5cef5e1b2eb26d207a72075
+size 46134
diff --git a/images/NEET_2024_T3/NEET_2024_T3_062.png b/images/NEET_2024_T3/NEET_2024_T3_062.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f6f6d05b47c18f19144745d11d4fc8d048af1f3
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_062.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cdeb59830679d0b67fa88d06bdcfd054a05e7e8c6872bb6d903548fc3dcd5bbd
+size 19770
diff --git a/images/NEET_2024_T3/NEET_2024_T3_063.png b/images/NEET_2024_T3/NEET_2024_T3_063.png
new file mode 100644
index 0000000000000000000000000000000000000000..464ebab7f3792c3367eec7380686c34075957a5c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_063.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e268bd55ae0840d49e357fa0c5a4b63100bc6936131715c47d4ef3cbb759214e
+size 40451
diff --git a/images/NEET_2024_T3/NEET_2024_T3_064.png b/images/NEET_2024_T3/NEET_2024_T3_064.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ff16788ca3238f552987f3def57b402d95c117c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_064.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f7406b172e64668374969aab0847e2468e8602962c1fb6cb46a00d67cb4a4486
+size 134010
diff --git a/images/NEET_2024_T3/NEET_2024_T3_065.png b/images/NEET_2024_T3/NEET_2024_T3_065.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9340fc61e66cf33892f54209d2e94d259df46ce
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_065.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f651f71a730884a4b863f1d5bc4b51ee193cfe5be0d4125451069329a287eb2
+size 105383
diff --git a/images/NEET_2024_T3/NEET_2024_T3_066.png b/images/NEET_2024_T3/NEET_2024_T3_066.png
new file mode 100644
index 0000000000000000000000000000000000000000..12df6d278633eb0c19913b8c8317432e86c65b95
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_066.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79fefd03262393e0f211a28819eac79bbce76ddf6afacff29a685c69cd0f2442
+size 63665
diff --git a/images/NEET_2024_T3/NEET_2024_T3_067.png b/images/NEET_2024_T3/NEET_2024_T3_067.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa8f87c1f03baec09b8e4152d88ab5ba3b24ebeb
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_067.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:93bed994a0100e0ffd9b79de8ceb87e137bbe5853720aaed76576ac75781fe19
+size 87327
diff --git a/images/NEET_2024_T3/NEET_2024_T3_068.png b/images/NEET_2024_T3/NEET_2024_T3_068.png
new file mode 100644
index 0000000000000000000000000000000000000000..c86e88c2e408b7157906c5f7fe57958bb891215c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_068.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cf4ef4ab96265453da18af6e9ff398062ea30a65689e83c5974b0d6166442885
+size 43239
diff --git a/images/NEET_2024_T3/NEET_2024_T3_069.png b/images/NEET_2024_T3/NEET_2024_T3_069.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3fa0ebf08037e9a1cd6e18c0f0cd169c31bb36d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_069.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d8eb1c4555a7de5329cdc6015d860d75a4943128f3d0d3fedd6468a98d5c8e94
+size 44343
diff --git a/images/NEET_2024_T3/NEET_2024_T3_070.png b/images/NEET_2024_T3/NEET_2024_T3_070.png
new file mode 100644
index 0000000000000000000000000000000000000000..21740a3243cf4866683508980de40a65e39c0ae6
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_070.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3807140e25d20ade9657ba0298cad6413feaf7932115771e2d2015644c117648
+size 83017
diff --git a/images/NEET_2024_T3/NEET_2024_T3_071.png b/images/NEET_2024_T3/NEET_2024_T3_071.png
new file mode 100644
index 0000000000000000000000000000000000000000..d5dc21b917af36e963cd39eb8ee28675b2190929
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_071.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0cbc5899051bfef6583a4564cb6e9cfc4b3d6cc167f836cf6831986333227fb9
+size 16067
diff --git a/images/NEET_2024_T3/NEET_2024_T3_072.png b/images/NEET_2024_T3/NEET_2024_T3_072.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b032b72e3e98d4990efdcaab248e57c37186308
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_072.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d7d9682dfcb0f1be34acb8404482f708cb5ecbab4f4007419c647e846419d8f2
+size 48340
diff --git a/images/NEET_2024_T3/NEET_2024_T3_073.png b/images/NEET_2024_T3/NEET_2024_T3_073.png
new file mode 100644
index 0000000000000000000000000000000000000000..9238280f101077050f10b75d389524f30459cfc1
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_073.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:767fe9f5dd33ad37b2d70a14f064be66816ed77b0e3ba2f734a1dd993e68adfc
+size 33201
diff --git a/images/NEET_2024_T3/NEET_2024_T3_074.png b/images/NEET_2024_T3/NEET_2024_T3_074.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e1812d1d1200ce1d0bfbe7c24ee0491113b6e35
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_074.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d28ef8328b41329deab5494140ab75965497ca0a8b32b30de1347c8f0f204bde
+size 35488
diff --git a/images/NEET_2024_T3/NEET_2024_T3_075.png b/images/NEET_2024_T3/NEET_2024_T3_075.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad42b2ec33cc28ec3ff20bf7ccc31ddfcfcbbe43
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_075.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:26215105c5d9d7eaf71ddd3982357190d2a5965469daeb11eaec27bf1ebdd7b6
+size 92468
diff --git a/images/NEET_2024_T3/NEET_2024_T3_076.png b/images/NEET_2024_T3/NEET_2024_T3_076.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a5ca0755c9be0458c788c7ba2c9b05b434cd2fa
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_076.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:068000c2b0b1414500d0eea5a8da2aba2e80bc75d834619c5a0aeb30f2d7e964
+size 30441
diff --git a/images/NEET_2024_T3/NEET_2024_T3_077.png b/images/NEET_2024_T3/NEET_2024_T3_077.png
new file mode 100644
index 0000000000000000000000000000000000000000..ebd169f1a190fa9751d3b788561b0708924afd18
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_077.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c16cfabd6d4489f2732ee048484a4981b0913bb31605009f3efcfc7e43533f6b
+size 32437
diff --git a/images/NEET_2024_T3/NEET_2024_T3_078.png b/images/NEET_2024_T3/NEET_2024_T3_078.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e08d13accc26b7920cbb78c9020b1d42b1ade67
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_078.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:af46f7ddbacc15726d56fe9452099c0dc76f6bd2e2aad095cb4275ab19a91ad7
+size 68158
diff --git a/images/NEET_2024_T3/NEET_2024_T3_079.png b/images/NEET_2024_T3/NEET_2024_T3_079.png
new file mode 100644
index 0000000000000000000000000000000000000000..b751f33c80869275600f54592b4378e8353a91f4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_079.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79a4b8cfe75a443ad65923d85c4c107fd6e59aae8aaab376749693e041fac34b
+size 38411
diff --git a/images/NEET_2024_T3/NEET_2024_T3_080.png b/images/NEET_2024_T3/NEET_2024_T3_080.png
new file mode 100644
index 0000000000000000000000000000000000000000..5a578468d52d6a2b16e9be7e9bebac069a01b393
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_080.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a159fd3e33adcfc9a6c607b92066e47db3bf3e700063aaff2b9b028453db9ba1
+size 60277
diff --git a/images/NEET_2024_T3/NEET_2024_T3_081.png b/images/NEET_2024_T3/NEET_2024_T3_081.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a61d891d9fb6cc15d177259f4f12387231467b7
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_081.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3bd16775df806d1e27a365c0cbce5fc268261d444c907cdc71a9556146c637db
+size 83836
diff --git a/images/NEET_2024_T3/NEET_2024_T3_082.png b/images/NEET_2024_T3/NEET_2024_T3_082.png
new file mode 100644
index 0000000000000000000000000000000000000000..89bffd4ff753460bff63077c2867816ab194f066
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_082.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:41e22c670f89ea7e9c4a7eae5333feff4750831e2c822643ee8a72b175cba74d
+size 36606
diff --git a/images/NEET_2024_T3/NEET_2024_T3_083.png b/images/NEET_2024_T3/NEET_2024_T3_083.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bc95062111b3bb8d81dc7e6e6dbc41f2dba29ad
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_083.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a751eb3f934ee06d56c04270251fa39fb7815dcf84ef13eafc7a5c2e859709c6
+size 18142
diff --git a/images/NEET_2024_T3/NEET_2024_T3_084.png b/images/NEET_2024_T3/NEET_2024_T3_084.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8be5b651b4dda0c05703379f9bb6c8d0a3e0a63
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_084.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:72fbc7664c345ada68acd81d53121d7cc13d67c76e31dd38c5b401a326a50f62
+size 33010
diff --git a/images/NEET_2024_T3/NEET_2024_T3_085.png b/images/NEET_2024_T3/NEET_2024_T3_085.png
new file mode 100644
index 0000000000000000000000000000000000000000..c40380cf305c209417bc70f22de771840b54ad83
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_085.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e64d703c16c762edef1ad02dc83726fca70d826ca3f8650dea00d1477997e054
+size 40741
diff --git a/images/NEET_2024_T3/NEET_2024_T3_086.png b/images/NEET_2024_T3/NEET_2024_T3_086.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fabd570e6d093cbf8292cbc462dccd159c847bd
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_086.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d40cd50753ab67bdfc49690b8fde9759d06401d1c645cb7347ff7673333e4924
+size 43876
diff --git a/images/NEET_2024_T3/NEET_2024_T3_087.png b/images/NEET_2024_T3/NEET_2024_T3_087.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbc1b8ec4f08bb8e2ed30e67f61c1a8e42dc9404
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_087.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:38b51b4334f705f244203e0e61cc42742205f6b5ea2dce3f6fc27f57e890d18a
+size 33152
diff --git a/images/NEET_2024_T3/NEET_2024_T3_088.png b/images/NEET_2024_T3/NEET_2024_T3_088.png
new file mode 100644
index 0000000000000000000000000000000000000000..c78db72340c098f1d907c0b141c0c31c1e60432e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_088.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:06b8834dd57de55ab1362b01afbd57a302cf5a2394a7dbe8d403818c24324c29
+size 35541
diff --git a/images/NEET_2024_T3/NEET_2024_T3_089.png b/images/NEET_2024_T3/NEET_2024_T3_089.png
new file mode 100644
index 0000000000000000000000000000000000000000..59578d095040a2ecbd4989e580815f850ee882cc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_089.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1ed621de733837c79c36b0fab7ea5a48529694b5a16a9afb79603c6ea0a25a58
+size 36338
diff --git a/images/NEET_2024_T3/NEET_2024_T3_090.png b/images/NEET_2024_T3/NEET_2024_T3_090.png
new file mode 100644
index 0000000000000000000000000000000000000000..f69c7c5357468182c3b551009cfdcbbdbc319dd4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_090.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:898d8c94a793ee4421058ceaa5d946a9a8dd3510bd015f21d4a0e0634ad7c371
+size 98360
diff --git a/images/NEET_2024_T3/NEET_2024_T3_091.png b/images/NEET_2024_T3/NEET_2024_T3_091.png
new file mode 100644
index 0000000000000000000000000000000000000000..68bc562c82ae3a53201447f996d9d627efb780ae
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_091.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29167d4ba183485204e5317be2a212a00ab722893d63a558d882e5953629a7a1
+size 38224
diff --git a/images/NEET_2024_T3/NEET_2024_T3_092.png b/images/NEET_2024_T3/NEET_2024_T3_092.png
new file mode 100644
index 0000000000000000000000000000000000000000..4762c3b217a5891a9477aae1cce4664e708915d1
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_092.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a3b7009165b77b846007e2f26b9fcd0594c1748300932b857fa7e98c8732d17b
+size 32732
diff --git a/images/NEET_2024_T3/NEET_2024_T3_093.png b/images/NEET_2024_T3/NEET_2024_T3_093.png
new file mode 100644
index 0000000000000000000000000000000000000000..1902fe6a51c636079548d9bf112350cf641356de
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_093.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e3afea229f728aac9bef8759a1970ae4fe2078a3272e7739da417fe5407dc213
+size 40539
diff --git a/images/NEET_2024_T3/NEET_2024_T3_094.png b/images/NEET_2024_T3/NEET_2024_T3_094.png
new file mode 100644
index 0000000000000000000000000000000000000000..f9577049b0a20760188d584ec59f06a3763207d0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_094.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d5da56c177ab72714efc3e0333c0fe678f43c614f5d7fccabc1537368a3a9733
+size 42546
diff --git a/images/NEET_2024_T3/NEET_2024_T3_095.png b/images/NEET_2024_T3/NEET_2024_T3_095.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8b6466917af2f9db005e5e3742927f217749965
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_095.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7213344701359015385c7715bebf1f23ba1e8dd6cc576953e844d641071d7c65
+size 51685
diff --git a/images/NEET_2024_T3/NEET_2024_T3_096.png b/images/NEET_2024_T3/NEET_2024_T3_096.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4c08150b5d23286b7ea750e69128a1c9a008011
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_096.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2d96ffea0d9c339d6a092a4dda1a4c975d4ac7e7cfec36500813f61e5e7cec18
+size 46884
diff --git a/images/NEET_2024_T3/NEET_2024_T3_097.png b/images/NEET_2024_T3/NEET_2024_T3_097.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c473d871ef513977e2ff684e7faab81aa9c7aee
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_097.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e4136279c6d1deb6f9c25bfbf3afa469c493ffc80b02442c0e2dea755e4b90b0
+size 34553
diff --git a/images/NEET_2024_T3/NEET_2024_T3_098.png b/images/NEET_2024_T3/NEET_2024_T3_098.png
new file mode 100644
index 0000000000000000000000000000000000000000..354cc1d9c97011e985dfe27a07ddfab84a113e60
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_098.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aab330279895bfb08534f25384e95e522b3f5c01e6b3595895cf125073395f87
+size 44397
diff --git a/images/NEET_2024_T3/NEET_2024_T3_099.png b/images/NEET_2024_T3/NEET_2024_T3_099.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd2999413e3cbc816442466ccc674b91a48f3ca2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_099.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c3368b012637c8b5db4043f494ee7a0d04a6088e3e20eb1286e6532241b0ba22
+size 72357
diff --git a/images/NEET_2024_T3/NEET_2024_T3_100.png b/images/NEET_2024_T3/NEET_2024_T3_100.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcea6c2d42c671ce6791a3e7033395d58438e326
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f5b6102c20d4e3f931d09b0ea5da8cced6cc1afd2da5e28e91525dd51e984be4
+size 30353
diff --git a/images/NEET_2024_T3/NEET_2024_T3_101.png b/images/NEET_2024_T3/NEET_2024_T3_101.png
new file mode 100644
index 0000000000000000000000000000000000000000..71e1ee4a0fedc6abb051a9e7f726efb910e49ab6
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_101.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f4988be8a3a95bcd8c6d8fb555bc9e5cb84551c2a2fc47961bd8799c876dbd65
+size 70332
diff --git a/images/NEET_2024_T3/NEET_2024_T3_102.png b/images/NEET_2024_T3/NEET_2024_T3_102.png
new file mode 100644
index 0000000000000000000000000000000000000000..1bce96737136a177824bcd8b377354cb5750a653
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_102.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:82f51a4fe10947a21bdeb11582df69e619ff266aba59ccb183b967c237756741
+size 42932
diff --git a/images/NEET_2024_T3/NEET_2024_T3_103.png b/images/NEET_2024_T3/NEET_2024_T3_103.png
new file mode 100644
index 0000000000000000000000000000000000000000..56c9cd4dc35b37cca6cda5801af289cc49867b40
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_103.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6307f95fc2903106115ab9770ff7c12f164b4481984648ce3e50d057de33e053
+size 25799
diff --git a/images/NEET_2024_T3/NEET_2024_T3_104.png b/images/NEET_2024_T3/NEET_2024_T3_104.png
new file mode 100644
index 0000000000000000000000000000000000000000..10732c1e660968667d380e0de0acec081eaa5b47
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_104.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0a4f46a7446071cd2b5fcb75a7659984eb7b42788019def026e24cef15e30015
+size 44947
diff --git a/images/NEET_2024_T3/NEET_2024_T3_105.png b/images/NEET_2024_T3/NEET_2024_T3_105.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b616fa4468e32b3158804e813df55f11074796a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_105.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a1ef23d86031054b14ef87f08657a6264eaa9a2f87d24557cca5fb4c9dc169ff
+size 27023
diff --git a/images/NEET_2024_T3/NEET_2024_T3_106.png b/images/NEET_2024_T3/NEET_2024_T3_106.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5627fb5de526908892e08a20c450b9b5814e62a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_106.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:45eadf1ef2a82773d6d75419419817b20cb81c0d04ddebb760ba5c71d472de9c
+size 56841
diff --git a/images/NEET_2024_T3/NEET_2024_T3_107.png b/images/NEET_2024_T3/NEET_2024_T3_107.png
new file mode 100644
index 0000000000000000000000000000000000000000..d32cdf1d31689038408d0d9bd7588d20021eff39
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_107.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8fed1a39be8ddc96014e82a39e1660106dcc7a1b866bb81ee47d259524e4a332
+size 32335
diff --git a/images/NEET_2024_T3/NEET_2024_T3_108.png b/images/NEET_2024_T3/NEET_2024_T3_108.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3ae50429bee72ceac6f3500095fe98c37e036d2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_108.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:58fcb067cb828646c5bcb97466ca085b5c59660865b750aa54bae1a888331f62
+size 18785
diff --git a/images/NEET_2024_T3/NEET_2024_T3_109.png b/images/NEET_2024_T3/NEET_2024_T3_109.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad2e70867b62b427655238170593819e253ad27a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_109.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c9b4b8ae2d282872a0c054d7085c7d00ca5ca3d2bd86179e67e555b0b46ed711
+size 71315
diff --git a/images/NEET_2024_T3/NEET_2024_T3_110.png b/images/NEET_2024_T3/NEET_2024_T3_110.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf32e6013e4d9707645229f86e7989d506d365cc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_110.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:72aa5e689a9a5bc94a6e69123f140cf32ab70cfa1803f34a89e847cb8f72fe63
+size 23997
diff --git a/images/NEET_2024_T3/NEET_2024_T3_111.png b/images/NEET_2024_T3/NEET_2024_T3_111.png
new file mode 100644
index 0000000000000000000000000000000000000000..f90900c668d9f2eaa9d9064ee27eb973ca487a5f
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_111.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a85526430fbd90364e0bec5f5b90f5b21ea5e9260fd36ed78d2a6b5c51618f20
+size 57491
diff --git a/images/NEET_2024_T3/NEET_2024_T3_112.png b/images/NEET_2024_T3/NEET_2024_T3_112.png
new file mode 100644
index 0000000000000000000000000000000000000000..0393a5f904bca06be9eef4584ae3f13494c64483
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_112.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3bc2407fc1d11bd817fac01f4c56618c8e31e399d6bf6b7ad1e154ae3238b1a5
+size 54567
diff --git a/images/NEET_2024_T3/NEET_2024_T3_113.png b/images/NEET_2024_T3/NEET_2024_T3_113.png
new file mode 100644
index 0000000000000000000000000000000000000000..75172e3683c77b645cf540e1930a7a9296e1816c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_113.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:21afead1e16f06a579528b1e673996ea9d1661a9a64c7326e1aa87c180052e3f
+size 24182
diff --git a/images/NEET_2024_T3/NEET_2024_T3_114.png b/images/NEET_2024_T3/NEET_2024_T3_114.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f7af77205f2bbc95f8db9bfe8b793fb0a5b4bfa
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_114.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c06d1d8cb13a2188737756d2f672ca7aa45277d07f00e670003ec2b9cbfe079a
+size 28983
diff --git a/images/NEET_2024_T3/NEET_2024_T3_115.png b/images/NEET_2024_T3/NEET_2024_T3_115.png
new file mode 100644
index 0000000000000000000000000000000000000000..6ac18785f98d8913d13e037ff8bffe5c3b22342e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_115.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:24cd193eb1fcfa82028447de8081cbc26d0dc64213ee4b8b6ca717516ef71ccb
+size 19473
diff --git a/images/NEET_2024_T3/NEET_2024_T3_116.png b/images/NEET_2024_T3/NEET_2024_T3_116.png
new file mode 100644
index 0000000000000000000000000000000000000000..a63b28311eae0e8617544ddc4fead1096a84595b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_116.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ff61ee15334e7218c27072948eb726e180dc0a7476dba91354b0dadb49a2418b
+size 114363
diff --git a/images/NEET_2024_T3/NEET_2024_T3_117.png b/images/NEET_2024_T3/NEET_2024_T3_117.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0f46447e030ccf4477bed1fe1b894535fba2888
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_117.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1e62f27525afe96d869b0320c3e865d6883a31a1983b428c4231f64361b6aa8c
+size 52340
diff --git a/images/NEET_2024_T3/NEET_2024_T3_118.png b/images/NEET_2024_T3/NEET_2024_T3_118.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe65279a0735aa938dca832ef74054f5ec490593
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_118.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2f9e18de0f749caaca261d47067b11e33fd66d6ab4ec96edf001ed54062ab00c
+size 29049
diff --git a/images/NEET_2024_T3/NEET_2024_T3_119.png b/images/NEET_2024_T3/NEET_2024_T3_119.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf65630f1d1936071cc2556f1f1a569598921dd2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_119.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:06cc97533c8a119e628df350ce7bf03ce761394e3701a0912dea2b1c514bd967
+size 17855
diff --git a/images/NEET_2024_T3/NEET_2024_T3_120.png b/images/NEET_2024_T3/NEET_2024_T3_120.png
new file mode 100644
index 0000000000000000000000000000000000000000..643db999f0a5bf431a211448a51a1f7ce0d211b4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_120.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a64f7d7307f0ebdca5c18150625b32260988746ea65205e7b8f599902a013ec2
+size 70916
diff --git a/images/NEET_2024_T3/NEET_2024_T3_121.png b/images/NEET_2024_T3/NEET_2024_T3_121.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6202a05ab90482a5a67f4d2db5d4ce934c50802
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_121.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5497d7813dec8f36009e9b72cb0d73ff5d2e786afbe1040aa8ebcb76e051a697
+size 37823
diff --git a/images/NEET_2024_T3/NEET_2024_T3_122.png b/images/NEET_2024_T3/NEET_2024_T3_122.png
new file mode 100644
index 0000000000000000000000000000000000000000..18c0025eb7cfb42d991add2cef78eedebfd262c4
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_122.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8eaf0c652fa4a8d3f36455684834dea6515caad0d056d6bc8a554e8ec7d0239d
+size 58757
diff --git a/images/NEET_2024_T3/NEET_2024_T3_123.png b/images/NEET_2024_T3/NEET_2024_T3_123.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6728f0be4bf5d3061ca6dd69175c201d5c7f8fb
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_123.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:183adfe010f8599dbb8da12836aa9843f714095fed41671589e74a7cdbde2b78
+size 65026
diff --git a/images/NEET_2024_T3/NEET_2024_T3_124.png b/images/NEET_2024_T3/NEET_2024_T3_124.png
new file mode 100644
index 0000000000000000000000000000000000000000..e90409ab259b43594455277f597771c9ed7366a5
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_124.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c351b90a1a2ab8cfefe6b4adb8c33f874fc5940f194c8f96bcbb557cd5aa1939
+size 17246
diff --git a/images/NEET_2024_T3/NEET_2024_T3_125.png b/images/NEET_2024_T3/NEET_2024_T3_125.png
new file mode 100644
index 0000000000000000000000000000000000000000..551c1d27d606b069b7e593296dcf2a6249d039e0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_125.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:011b415ddc2393ee56ecc18142ef622094001f3f62513cb2b8ddc7ae79f99593
+size 49476
diff --git a/images/NEET_2024_T3/NEET_2024_T3_126.png b/images/NEET_2024_T3/NEET_2024_T3_126.png
new file mode 100644
index 0000000000000000000000000000000000000000..283e95876f1d3143a4f9671d17f1b9347974080c
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_126.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed71186be9ae8061064e4f648a303b0a59bdd35be9fabb1c2cdddfd19837b465
+size 94172
diff --git a/images/NEET_2024_T3/NEET_2024_T3_127.png b/images/NEET_2024_T3/NEET_2024_T3_127.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0f798dc1f47e7690437223c8ebff7b086f8b755
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_127.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68a583a5993d5cf67fd4ddff8ea6a0e7fb0534c83f2a9be00df6e5f8b94f31bd
+size 38821
diff --git a/images/NEET_2024_T3/NEET_2024_T3_128.png b/images/NEET_2024_T3/NEET_2024_T3_128.png
new file mode 100644
index 0000000000000000000000000000000000000000..60017725d05d146e24cb6970c383ca712aa01cdb
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_128.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a661f2cf3290a4696f527247420be9edbb6672e17724d64c97207f0f2ee10f71
+size 13460
diff --git a/images/NEET_2024_T3/NEET_2024_T3_129.png b/images/NEET_2024_T3/NEET_2024_T3_129.png
new file mode 100644
index 0000000000000000000000000000000000000000..54abb619a66785a14c7f265c8e03169e821ba0b0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_129.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:03badd82108d0a2b4487703488ceadce011be2bf2abff6e909d14c95ca211c0e
+size 23803
diff --git a/images/NEET_2024_T3/NEET_2024_T3_130.png b/images/NEET_2024_T3/NEET_2024_T3_130.png
new file mode 100644
index 0000000000000000000000000000000000000000..4bfb6129989d5491e8ae79c3cc29ca31875eab3b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_130.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ce6116108c64004e647fc9f81c5b3f7188936af0051f55789c410dc6ebc8e0b
+size 87264
diff --git a/images/NEET_2024_T3/NEET_2024_T3_131.png b/images/NEET_2024_T3/NEET_2024_T3_131.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b0a6f04cd7b640ae050767eedb11813892205bb
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_131.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d2e1e3f2d64fd6e908cb30446bb8e372c08be668c0b9cafecf60be09f6e460c1
+size 92892
diff --git a/images/NEET_2024_T3/NEET_2024_T3_132.png b/images/NEET_2024_T3/NEET_2024_T3_132.png
new file mode 100644
index 0000000000000000000000000000000000000000..4552bc85944dc06212aa4c734c6cd11ad33aed5b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_132.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:94dc4a60294f628a9d827dcd13ff1f05339162387037c31f8f821e91b025e567
+size 63424
diff --git a/images/NEET_2024_T3/NEET_2024_T3_133.png b/images/NEET_2024_T3/NEET_2024_T3_133.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7022f5dc7ecbe23394a2014f508e5257c9c1be3
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_133.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3f41e9f40324df84e88fe48cef1b1aeb7dbc5daebbf9ad197cbe14a0422df2a3
+size 63545
diff --git a/images/NEET_2024_T3/NEET_2024_T3_134.png b/images/NEET_2024_T3/NEET_2024_T3_134.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c98bdc22e7a7c1e9a66d1ce49b6b78e95079ee3
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_134.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e0a97063f8640e97ec1969b4fb1c35284852b2607fc12844b3635bd6ccc50507
+size 67030
diff --git a/images/NEET_2024_T3/NEET_2024_T3_135.png b/images/NEET_2024_T3/NEET_2024_T3_135.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8d07795f9f92adeb68cf16dee28eb0df43b8b5a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_135.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8ddc56ff2f45723c4676ba669bc0b10bdf620a5cb2c779cdbb6238f226d31997
+size 17635
diff --git a/images/NEET_2024_T3/NEET_2024_T3_136.png b/images/NEET_2024_T3/NEET_2024_T3_136.png
new file mode 100644
index 0000000000000000000000000000000000000000..b4d93febb507c17e10755a5d806aa61261e9aa0a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_136.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:da3bd65def72b6bf1664eae33fd155a04013bfbc4311d62b7b64e30b115517c8
+size 26493
diff --git a/images/NEET_2024_T3/NEET_2024_T3_137.png b/images/NEET_2024_T3/NEET_2024_T3_137.png
new file mode 100644
index 0000000000000000000000000000000000000000..91b12dd90036ebbddb8430a9a98c6aa15206b9e3
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_137.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7f809e5fb518725835c68350259a638aa88eb57dbcc2ed63b498f66187379fea
+size 26981
diff --git a/images/NEET_2024_T3/NEET_2024_T3_138.png b/images/NEET_2024_T3/NEET_2024_T3_138.png
new file mode 100644
index 0000000000000000000000000000000000000000..d11760e8b6cd2f8ade7ebd31cb67383f339a9d4b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_138.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8f604439133a1b20fbb79fe2d53832f63bcffe7460d6f78edaa266ab845c161f
+size 110583
diff --git a/images/NEET_2024_T3/NEET_2024_T3_139.png b/images/NEET_2024_T3/NEET_2024_T3_139.png
new file mode 100644
index 0000000000000000000000000000000000000000..e106a643ff4df9b6946cb76364da6e41555f0f1a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_139.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:550cdfb8e65e8659ab9edeaec6e57cee1da36bac671f6b7b176b89e0d267fb85
+size 44688
diff --git a/images/NEET_2024_T3/NEET_2024_T3_140.png b/images/NEET_2024_T3/NEET_2024_T3_140.png
new file mode 100644
index 0000000000000000000000000000000000000000..def4f97ed6848a93e03041f2ea20a577c5d2cf64
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_140.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dfd259ddac3878d8bb90e486137f17b89fa903ae2cbd78471af84360712241aa
+size 68003
diff --git a/images/NEET_2024_T3/NEET_2024_T3_141.png b/images/NEET_2024_T3/NEET_2024_T3_141.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2afdd479167a8316ebaba85970d811cca185f95
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_141.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:145cda31ef2b232393712a04ade72d2aba05fe7ad4fec67cc4321d1e436c089c
+size 44291
diff --git a/images/NEET_2024_T3/NEET_2024_T3_142.png b/images/NEET_2024_T3/NEET_2024_T3_142.png
new file mode 100644
index 0000000000000000000000000000000000000000..161f526c34e5e7eba0920db3dcd2afa36e3b504f
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_142.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:22d28e8d6a40bfb1c78fc14f322bf2ff5151b0e35363b1034e12a9ccb72799b1
+size 77881
diff --git a/images/NEET_2024_T3/NEET_2024_T3_143.png b/images/NEET_2024_T3/NEET_2024_T3_143.png
new file mode 100644
index 0000000000000000000000000000000000000000..29da2032f09b78f13b251cec37c1f46e1b1b4b77
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_143.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:237108e14a876bc0c55906d6750469cfc278db09425464c0841378170ef8d4ba
+size 32363
diff --git a/images/NEET_2024_T3/NEET_2024_T3_144.png b/images/NEET_2024_T3/NEET_2024_T3_144.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdef94ced8ad7e7f5bbea05430cc8065dd91adaf
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_144.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:205a217f82c5291f4755858a063d98564cf017e7910fcfa86dd059f8fc612c69
+size 53595
diff --git a/images/NEET_2024_T3/NEET_2024_T3_145.png b/images/NEET_2024_T3/NEET_2024_T3_145.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac8f495e413801638ae255e614fd1e98e67b11a5
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_145.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ff3be691139ec11c7247470b7ab6a1eb572d14e57457e25289d173666a174aab
+size 60695
diff --git a/images/NEET_2024_T3/NEET_2024_T3_146.png b/images/NEET_2024_T3/NEET_2024_T3_146.png
new file mode 100644
index 0000000000000000000000000000000000000000..014c6a4c49fb833246a5c4676543d007cc8ab16a
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_146.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8cc99adca8b8d3b6b5505428777333d555dc15b325f08f151b5212f20b8b26c3
+size 60897
diff --git a/images/NEET_2024_T3/NEET_2024_T3_147.png b/images/NEET_2024_T3/NEET_2024_T3_147.png
new file mode 100644
index 0000000000000000000000000000000000000000..33296c8973f59018e87e07a8471dc87b4d7e16fc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_147.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de0267c48dfa47ecb398766c47e8c9c3970fba8074d3e3df046325072d3427b0
+size 44117
diff --git a/images/NEET_2024_T3/NEET_2024_T3_148.png b/images/NEET_2024_T3/NEET_2024_T3_148.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e8d57eaa5f085f4ebe423bd401c42f7ce23e595
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_148.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2d4892711320c4e67bd090750472b85e9c7eb35bf71c937ed05ce2213b3cc46a
+size 68006
diff --git a/images/NEET_2024_T3/NEET_2024_T3_149.png b/images/NEET_2024_T3/NEET_2024_T3_149.png
new file mode 100644
index 0000000000000000000000000000000000000000..b19bb91fe13615512840562e54d77a4ea7ab8a61
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_149.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1a1a2e1afc8dc8cd4b39a54e877d76c8071ffd6594b8d7e78dc4c354c0bf72c
+size 26621
diff --git a/images/NEET_2024_T3/NEET_2024_T3_150.png b/images/NEET_2024_T3/NEET_2024_T3_150.png
new file mode 100644
index 0000000000000000000000000000000000000000..3268dfadff984149f4c017fa9522912ec94b9cf9
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_150.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:20f041fd5e38fb295e85b66dca5dad23fcd4c819808f4f5fda09da3101d9150d
+size 87143
diff --git a/images/NEET_2024_T3/NEET_2024_T3_151.png b/images/NEET_2024_T3/NEET_2024_T3_151.png
new file mode 100644
index 0000000000000000000000000000000000000000..21a180a24902263896703a8b5cec8d8a8f4c7ace
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_151.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7fc1efbe1876910b9f5b22e914ccd078f65fd55bbb7df56fa6bbd92179fde4ee
+size 36070
diff --git a/images/NEET_2024_T3/NEET_2024_T3_152.png b/images/NEET_2024_T3/NEET_2024_T3_152.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed463a77a0e247e47117b94cbb5fc103c912f44f
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_152.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f944faf08db86c20d724c8c677124fa93faafc3c5168d9e2886a1626c85dbeed
+size 43698
diff --git a/images/NEET_2024_T3/NEET_2024_T3_153.png b/images/NEET_2024_T3/NEET_2024_T3_153.png
new file mode 100644
index 0000000000000000000000000000000000000000..eebc183e6c9dc0277b0004c60dc4a8a44f1dc148
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_153.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51cf13bb0f58f482a9a2af8ef1fc699d96aac63257a6a1849f29d4e6ed9ee58a
+size 51058
diff --git a/images/NEET_2024_T3/NEET_2024_T3_154.png b/images/NEET_2024_T3/NEET_2024_T3_154.png
new file mode 100644
index 0000000000000000000000000000000000000000..311af0e6abbf75d2b38975a5cbea454cba2fbca5
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_154.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:65acb2759ab8b007bfefd8eb7101bf9bae55b9bee545485b3fd402830130b5c6
+size 22983
diff --git a/images/NEET_2024_T3/NEET_2024_T3_155.png b/images/NEET_2024_T3/NEET_2024_T3_155.png
new file mode 100644
index 0000000000000000000000000000000000000000..421e093f551eafe02b7a3b6c50b4a5b119c9ac13
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_155.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ead9c8a60754d749baa8d7d0c5076354af959f28405a5b23cfdd645e1ca0b91
+size 78021
diff --git a/images/NEET_2024_T3/NEET_2024_T3_156.png b/images/NEET_2024_T3/NEET_2024_T3_156.png
new file mode 100644
index 0000000000000000000000000000000000000000..398b9ab0239ccb50e42db16a5a7df0655be40539
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_156.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f67f5df826871af8b5d2de78236a230307ba73154f86d3c85609a759ba53d8d6
+size 13116
diff --git a/images/NEET_2024_T3/NEET_2024_T3_157.png b/images/NEET_2024_T3/NEET_2024_T3_157.png
new file mode 100644
index 0000000000000000000000000000000000000000..bafef87c85213abc00cedd00f201391d03c2a1b8
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_157.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:28e88607d2e94afcdda72bf0465ae797ba03140f8727d1f5bef0b3eacfc62666
+size 33269
diff --git a/images/NEET_2024_T3/NEET_2024_T3_158.png b/images/NEET_2024_T3/NEET_2024_T3_158.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0d437a8dfabdbd66307571030c139ac5252efab
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_158.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d18a123f64bdbbf9f828de4f2c427fb2a0311aec290a5c88bbb218a324f51850
+size 147451
diff --git a/images/NEET_2024_T3/NEET_2024_T3_159.png b/images/NEET_2024_T3/NEET_2024_T3_159.png
new file mode 100644
index 0000000000000000000000000000000000000000..bcae6fbcbf0f5a4dc7ee67f3f4fd844be73dea93
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_159.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a17852c40b18753cb5bd37a8ac7b5dd420a11beb52ad918ac733bd420c721a49
+size 51782
diff --git a/images/NEET_2024_T3/NEET_2024_T3_160.png b/images/NEET_2024_T3/NEET_2024_T3_160.png
new file mode 100644
index 0000000000000000000000000000000000000000..27551ed05a79291089b232005487223dacc812b7
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_160.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0665ebd68d8e13ae1608f703c2739140ec369b81cf3864a41175adabd171235b
+size 40353
diff --git a/images/NEET_2024_T3/NEET_2024_T3_161.png b/images/NEET_2024_T3/NEET_2024_T3_161.png
new file mode 100644
index 0000000000000000000000000000000000000000..dee8aff693aebda34195a8d2a638018e4e619d6b
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_161.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5a80822fc5b989e6937705a95cc66d00ba93f96672dac3dc54e0f74dca48e9e8
+size 39683
diff --git a/images/NEET_2024_T3/NEET_2024_T3_162.png b/images/NEET_2024_T3/NEET_2024_T3_162.png
new file mode 100644
index 0000000000000000000000000000000000000000..2348c5fab1dba92ca1ad8d281756eaa6c4c4c740
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_162.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2aa376c991622e3a37f8fb590823446257e703ae0511eadf315f9f86e7040f57
+size 26635
diff --git a/images/NEET_2024_T3/NEET_2024_T3_163.png b/images/NEET_2024_T3/NEET_2024_T3_163.png
new file mode 100644
index 0000000000000000000000000000000000000000..85f9e983691810e7073c65c8a1c4b050f28386f6
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_163.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5fd5e8744e07a35a398f60ee33bf8753d7d006910246b038e10732d655469abb
+size 84082
diff --git a/images/NEET_2024_T3/NEET_2024_T3_164.png b/images/NEET_2024_T3/NEET_2024_T3_164.png
new file mode 100644
index 0000000000000000000000000000000000000000..f482b84e5d739860451eb59b739e724190165df8
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_164.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bd3420addf87ff6a772d8d3ed7b6b40c3ea095237816f2930ff36246dc8ac527
+size 21383
diff --git a/images/NEET_2024_T3/NEET_2024_T3_165.png b/images/NEET_2024_T3/NEET_2024_T3_165.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d87a4018f8364085e846be3ee82fd0344a0e94f
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_165.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:861c2d6be7d70e17ea3843e6adf3427decfc719b8e8ff41dc20c14f2c2243f92
+size 38708
diff --git a/images/NEET_2024_T3/NEET_2024_T3_166.png b/images/NEET_2024_T3/NEET_2024_T3_166.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa771997c5bf7f52747ad9ea47a9a973e39979cc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_166.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0b017d31ce05f8b38ecc24d54153c233a0d2cbf8095a49bf8bbf129bf9683395
+size 50619
diff --git a/images/NEET_2024_T3/NEET_2024_T3_167.png b/images/NEET_2024_T3/NEET_2024_T3_167.png
new file mode 100644
index 0000000000000000000000000000000000000000..603747aba710880946182318b725fbfa23505094
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_167.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bda6fcb3ee4cb374269011fcbd848ac66fa233939265dd8d271a0fa7cdab1907
+size 44168
diff --git a/images/NEET_2024_T3/NEET_2024_T3_168.png b/images/NEET_2024_T3/NEET_2024_T3_168.png
new file mode 100644
index 0000000000000000000000000000000000000000..59d9f098ae8e371cf9b50be99d6c7893c0f6da12
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_168.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:91e900f29c465d779f23f0ffe56d6506af35f71901617da4120c8077a0040fb2
+size 44138
diff --git a/images/NEET_2024_T3/NEET_2024_T3_169.png b/images/NEET_2024_T3/NEET_2024_T3_169.png
new file mode 100644
index 0000000000000000000000000000000000000000..864f6cfebcf6affceababd8a6bd5c3b2448c72c2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_169.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bcbe8f325d2f06db2008b0219af810af67d3e92e128f0c7b53a2981279e7cedd
+size 64868
diff --git a/images/NEET_2024_T3/NEET_2024_T3_170.png b/images/NEET_2024_T3/NEET_2024_T3_170.png
new file mode 100644
index 0000000000000000000000000000000000000000..803a0fd3190decabc214ec89634ef0f8c75837d2
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_170.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9cc2fd6e2f8d3fb7ea9f57e3ca64c0adb70174fdbe76ae9cbc2c80e2f53ac647
+size 113743
diff --git a/images/NEET_2024_T3/NEET_2024_T3_171.png b/images/NEET_2024_T3/NEET_2024_T3_171.png
new file mode 100644
index 0000000000000000000000000000000000000000..57eb59526d07bccf055825cf7711be1ea57e4d43
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_171.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:02f592d1abdf058240df0b14c599b3c80f6dba600e5a61df37cb6de1b55ccada
+size 17712
diff --git a/images/NEET_2024_T3/NEET_2024_T3_172.png b/images/NEET_2024_T3/NEET_2024_T3_172.png
new file mode 100644
index 0000000000000000000000000000000000000000..244c7b08d7e2e362534844570729148e000b53d1
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_172.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:570f2c52ec7b23290c1ee497a3df18501ba7ae4eeb7b015be0bef0922b44b0f2
+size 33764
diff --git a/images/NEET_2024_T3/NEET_2024_T3_173.png b/images/NEET_2024_T3/NEET_2024_T3_173.png
new file mode 100644
index 0000000000000000000000000000000000000000..0aa68294fbcc3ed68a8e605253b6a3a80b9b1645
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_173.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1f9fe2b735367ed1ca901279ed28f4911ea6c9cb86df9a0d3a694e962c49997b
+size 86975
diff --git a/images/NEET_2024_T3/NEET_2024_T3_174.png b/images/NEET_2024_T3/NEET_2024_T3_174.png
new file mode 100644
index 0000000000000000000000000000000000000000..d91b4573db650f71dea5c35a413f4f12b5a5b359
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_174.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c5bee31fc90e45758be5aa05c55fc1a04b0cdd74f792269c54507a4f2635ab80
+size 61335
diff --git a/images/NEET_2024_T3/NEET_2024_T3_175.png b/images/NEET_2024_T3/NEET_2024_T3_175.png
new file mode 100644
index 0000000000000000000000000000000000000000..929ff23124310b894a1c7d86ce95acfe6634d1bc
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_175.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:20ded8dad01bc352231d727991bbdef498ee5471efa79e6cd390c56c717f1e13
+size 21071
diff --git a/images/NEET_2024_T3/NEET_2024_T3_176.png b/images/NEET_2024_T3/NEET_2024_T3_176.png
new file mode 100644
index 0000000000000000000000000000000000000000..31fa4ed63bce4564d190962df90062b22c9f3ad6
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_176.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e70f479d87f02c4c09139eb100f2678b8f2268ad9d304f5457a6ee72a9def8f3
+size 44151
diff --git a/images/NEET_2024_T3/NEET_2024_T3_177.png b/images/NEET_2024_T3/NEET_2024_T3_177.png
new file mode 100644
index 0000000000000000000000000000000000000000..90c546b2829c11957d53754efb531018b75ad87e
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_177.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:85c013e2fc6a0ebc007947fa11816537978e88d3ab3b2f76c434aaae4a886eda
+size 58473
diff --git a/images/NEET_2024_T3/NEET_2024_T3_178.png b/images/NEET_2024_T3/NEET_2024_T3_178.png
new file mode 100644
index 0000000000000000000000000000000000000000..f78128ed54e56d62a1f38c71f9c1953ff4712b08
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_178.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4877bb7066072de1202ac055190b7ddfb741aa30010134c5dc184aaa73a107b0
+size 41842
diff --git a/images/NEET_2024_T3/NEET_2024_T3_179.png b/images/NEET_2024_T3/NEET_2024_T3_179.png
new file mode 100644
index 0000000000000000000000000000000000000000..6014de2487ac1b5e9525c6685a858a8d00b27cf7
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_179.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e3bea52365102e5121a4ebb1e89256f4a193bbeaab8fbdfaa64abb0345a5e6d6
+size 68260
diff --git a/images/NEET_2024_T3/NEET_2024_T3_180.png b/images/NEET_2024_T3/NEET_2024_T3_180.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a96af02d0745780fbe00772a0f891cdef25562f
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_180.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dab1301620e2b53dde45efa20721f079907c7195ff6aff3941d59d05e021b986
+size 57766
diff --git a/images/NEET_2024_T3/NEET_2024_T3_181.png b/images/NEET_2024_T3/NEET_2024_T3_181.png
new file mode 100644
index 0000000000000000000000000000000000000000..0eebd8ac174da93b3b64079e8b5b87e87016c5b0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_181.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8903082a2161a6a9659d8bdb443c744b042911ee368055f7c915e5928c6cae73
+size 71416
diff --git a/images/NEET_2024_T3/NEET_2024_T3_182.png b/images/NEET_2024_T3/NEET_2024_T3_182.png
new file mode 100644
index 0000000000000000000000000000000000000000..055bca8635dbc3bc948930bfc0e5a11b3873827d
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_182.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:325f7137916953b8074cf6a0d5f9d7d59f690505dd6be80c5545745df81f3458
+size 39178
diff --git a/images/NEET_2024_T3/NEET_2024_T3_183.png b/images/NEET_2024_T3/NEET_2024_T3_183.png
new file mode 100644
index 0000000000000000000000000000000000000000..1d9ef7368b4c47b1036a01640b25d215e51df103
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_183.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6b602d1261f0f4e28393ad9f3163672c8040e93fc9bb6ad58036828ae10b1921
+size 27863
diff --git a/images/NEET_2024_T3/NEET_2024_T3_184.png b/images/NEET_2024_T3/NEET_2024_T3_184.png
new file mode 100644
index 0000000000000000000000000000000000000000..d34326ebc6d2b8b94e002d9ce51b92c365860427
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_184.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:66a10c4fedb91a2ce497316bbcc7c2f4e827cebfd651b193c791a53e659464da
+size 22745
diff --git a/images/NEET_2024_T3/NEET_2024_T3_185.png b/images/NEET_2024_T3/NEET_2024_T3_185.png
new file mode 100644
index 0000000000000000000000000000000000000000..084efd80060dd52de7973599b70ad167b0259c15
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_185.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:caf64b4580056b113efcc0afbd9a51513eb5f532123f13d9e23deea5d7078825
+size 55902
diff --git a/images/NEET_2024_T3/NEET_2024_T3_186.png b/images/NEET_2024_T3/NEET_2024_T3_186.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce19a3885e559647d94e398cbec0fcfb7b8509b1
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_186.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:844a30300e0e38d3b081fe88c43279f63b6c2de65ea3197a865448e3865989ee
+size 41711
diff --git a/images/NEET_2024_T3/NEET_2024_T3_187.png b/images/NEET_2024_T3/NEET_2024_T3_187.png
new file mode 100644
index 0000000000000000000000000000000000000000..303967313c5d5672727f0e32d474d090bb84df28
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_187.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:08059aba81851ccbefbc3135e085ccbfec33f6cbb708c8fcbee7d78bb6de0586
+size 42775
diff --git a/images/NEET_2024_T3/NEET_2024_T3_188.png b/images/NEET_2024_T3/NEET_2024_T3_188.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc00f6c4edfc6514e5a2d45973db62aef2204435
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_188.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3aa0fc992fa60e7ff660adbcd09fec26f897ea4d96f64731d238673e76e1aefd
+size 74148
diff --git a/images/NEET_2024_T3/NEET_2024_T3_189.png b/images/NEET_2024_T3/NEET_2024_T3_189.png
new file mode 100644
index 0000000000000000000000000000000000000000..612b1a239aa65f59aa485cf4e890e44c88209e26
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_189.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d44e5514b0b463979699f5869708d963a5fdeab9bdce32c34044e92f4eedabb5
+size 62695
diff --git a/images/NEET_2024_T3/NEET_2024_T3_190.png b/images/NEET_2024_T3/NEET_2024_T3_190.png
new file mode 100644
index 0000000000000000000000000000000000000000..fbafb9ce17f26956e251196b17ccdc781f0cb8b0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_190.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:85d9e20cbbc09166e6bfa51ad38b8aa40ccccf2393eb4f5dd6df13276af66008
+size 43210
diff --git a/images/NEET_2024_T3/NEET_2024_T3_191.png b/images/NEET_2024_T3/NEET_2024_T3_191.png
new file mode 100644
index 0000000000000000000000000000000000000000..8eb6019fafd52f543a4a248c7420f7e7b6aea345
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_191.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0a2d6f222693b13330f0c8daa5ba9944d1e77d57dbe86a06d2974c10deeb2b4b
+size 85425
diff --git a/images/NEET_2024_T3/NEET_2024_T3_192.png b/images/NEET_2024_T3/NEET_2024_T3_192.png
new file mode 100644
index 0000000000000000000000000000000000000000..14d72fc638854dba356c1e363fa6fd828e50d6e0
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_192.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:559ee7dd2abea0d88211db04262254699e0f6bb881f4cdd734a619fba34b2e98
+size 53977
diff --git a/images/NEET_2024_T3/NEET_2024_T3_193.png b/images/NEET_2024_T3/NEET_2024_T3_193.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8aa2b20ff02204081fb26e8ed05c70aa6efe857
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_193.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b25624150a450c9be79d6a03bb41e5ea8bd98a9aef1fc9dfeafd108cea4aa746
+size 64595
diff --git a/images/NEET_2024_T3/NEET_2024_T3_194.png b/images/NEET_2024_T3/NEET_2024_T3_194.png
new file mode 100644
index 0000000000000000000000000000000000000000..642cb8e1369f05367eb1892406628e0742449035
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_194.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4e645a1435e4bb33c8f875709453cfbb1cf9c7cc9699d1c69f5d5b1c77163622
+size 92193
diff --git a/images/NEET_2024_T3/NEET_2024_T3_195.png b/images/NEET_2024_T3/NEET_2024_T3_195.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf74b47ad07a81f8ac45b3a9c0d13f30edcde875
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_195.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:87fd9303050ce704fc54671f2e411725854b8b5909e75b37bef4a3e0dc7e1a84
+size 43360
diff --git a/images/NEET_2024_T3/NEET_2024_T3_196.png b/images/NEET_2024_T3/NEET_2024_T3_196.png
new file mode 100644
index 0000000000000000000000000000000000000000..633f6f0a024b762f73231e50bac40732e0d65781
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_196.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c286917759f2eeeb76091b5cf164947a46a1b25e0abf1b68554ae783b0b0d3a
+size 48214
diff --git a/images/NEET_2024_T3/NEET_2024_T3_197.png b/images/NEET_2024_T3/NEET_2024_T3_197.png
new file mode 100644
index 0000000000000000000000000000000000000000..bed0cbb26bcf16d7987344ecf9263bd0b9e6e3d3
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_197.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f4ee01afae6a6a16244884104df19c1cf4fae873023f51f5a1f0eecfac21b1a
+size 54006
diff --git a/images/NEET_2024_T3/NEET_2024_T3_198.png b/images/NEET_2024_T3/NEET_2024_T3_198.png
new file mode 100644
index 0000000000000000000000000000000000000000..852a90c5f61b45293333ff0a4389f22542d2f902
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_198.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ca911d2c4c3df7c9758faec5d92f8e89812ad3e953b7b0a0003866dd4efa8c31
+size 30872
diff --git a/images/NEET_2024_T3/NEET_2024_T3_199.png b/images/NEET_2024_T3/NEET_2024_T3_199.png
new file mode 100644
index 0000000000000000000000000000000000000000..4140ec7733a78811cfd6ede2fc42ae989086db58
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_199.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a7a919105ee53d84ae8f76a504879add8f0516f4055cb1af1f2b3cee097146bf
+size 54465
diff --git a/images/NEET_2024_T3/NEET_2024_T3_200.png b/images/NEET_2024_T3/NEET_2024_T3_200.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc59e19613d07ea1382470721820c3f1d4c2b054
--- /dev/null
+++ b/images/NEET_2024_T3/NEET_2024_T3_200.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:541c1eb6c9622e1e1ca916e9bc37ce30385116e2a1c9c368300595bbb8de181b
+size 81036
diff --git a/jee_neet_benchmark_dataset.py b/jee_neet_benchmark_dataset.py
new file mode 100644
index 0000000000000000000000000000000000000000..168840ac804799a3f512f2729329d4b9797342f3
--- /dev/null
+++ b/jee_neet_benchmark_dataset.py
@@ -0,0 +1,139 @@
+import json
+import os
+import datasets
+
+_CITATION = """\
+@misc{jee-neet-benchmark,
+ title={JEE/NEET LLM Benchmark},
+ author={Md Rejaullah},
+ year={2025},
+ howpublished={\\url{https://huggingface.co/datasets/Reja1/jee-neet-benchmark}},
+}
+"""
+
+_DESCRIPTION = """\
+A benchmark dataset for evaluating Large Language Models (LLMs) on Joint Entrance Examination (JEE)
+and National Eligibility cum Entrance Test (NEET) questions from India. Questions are provided as
+images, and metadata includes exam details, subject, and correct answers.
+"""
+
+_HOMEPAGE = "https://huggingface.co/datasets/Reja1/jee-neet-benchmark"
+
+_LICENSE = "MIT License"
+
+
+class JeeNeetBenchmarkConfig(datasets.BuilderConfig):
+ """BuilderConfig for JeeNeetBenchmark."""
+
+ def __init__(self, **kwargs):
+ """BuilderConfig for JeeNeetBenchmark.
+ Args:
+ **kwargs: keyword arguments forwarded to super.
+ """
+ super(JeeNeetBenchmarkConfig, self).__init__(**kwargs)
+
+
+class JeeNeetBenchmark(datasets.GeneratorBasedBuilder):
+ """JEE/NEET LLM Benchmark Dataset."""
+
+ VERSION = datasets.Version("1.0.0") # Start with version 1.0.0
+
+ BUILDER_CONFIGS = [
+ JeeNeetBenchmarkConfig(
+ name="default",
+ version=VERSION,
+ description="Default config for JEE/NEET Benchmark",
+ ),
+ ]
+
+ DEFAULT_CONFIG_NAME = "default"
+
+ def _info(self):
+ features = datasets.Features(
+ {
+ "image": datasets.Image(),
+ "question_id": datasets.Value("string"),
+ "exam_name": datasets.Value("string"),
+ "exam_year": datasets.Value("int32"),
+ "exam_code": datasets.Value("string"),
+ "subject": datasets.Value("string"),
+ "question_type": datasets.Value("string"),
+ "correct_answer": datasets.Sequence(datasets.Value("int32")), # List of integers
+ }
+ )
+ return datasets.DatasetInfo(
+ description=_DESCRIPTION,
+ features=features,
+ homepage=_HOMEPAGE,
+ license=_LICENSE,
+ citation=_CITATION,
+ )
+
+ def _split_generators(self, dl_manager):
+ """Returns SplitGenerators."""
+ # dl_manager is useful if downloading/extracting files, but here we use local paths
+ # Determine the base directory for data files
+ # Use data_dir if provided (for local loading), otherwise use the script's directory
+ base_dir = self.config.data_dir if self.config.data_dir is not None else os.path.dirname(__file__)
+ metadata_path = os.path.join(base_dir, "data", "metadata.jsonl")
+ image_dir = os.path.join(base_dir, "images")
+
+ # Check if metadata file exists
+ if not os.path.exists(metadata_path):
+ raise FileNotFoundError(
+ f"Metadata file not found at {metadata_path}. "
+ f"Make sure 'data/metadata.jsonl' exists in your dataset repository. "
+ f"If running locally, you might need to specify the path using --data_dir argument "
+ f"or ensure the script is run from the project root."
+ )
+
+ return [
+ datasets.SplitGenerator(
+ name=datasets.Split.TEST, # Using TEST split as it's standard for evaluation-only data
+ # Or use name="evaluate" if you prefer that specific name
+ gen_kwargs={
+ "metadata_filepath": metadata_path,
+ "image_base_dir": image_dir, # Pass the base image directory
+ },
+ ),
+ ]
+
+ def _generate_examples(self, metadata_filepath, image_base_dir):
+ """Yields examples."""
+ with open(metadata_filepath, "r", encoding="utf-8") as f:
+ for idx, line in enumerate(f):
+ try:
+ row = json.loads(line)
+ except json.JSONDecodeError as e:
+ print(f"Error decoding JSON on line {idx+1}: {e}")
+ continue # Skip malformed lines
+
+ image_path_relative = row.get("image_path")
+ if not image_path_relative:
+ print(f"Warning: Missing 'image_path' on line {idx+1}. Skipping.")
+ continue
+
+ # Construct the full path relative to the dataset root
+ image_path_full = os.path.join(image_base_dir, os.path.relpath(image_path_relative, start="images"))
+ # Alternative if image_path is already relative to root:
+ # image_path_full = os.path.join(image_base_dir, image_path_relative)
+
+ if not os.path.exists(image_path_full):
+ print(f"Warning: Image file not found at {image_path_full} referenced on line {idx+1}. Skipping.")
+ # Yielding with None image might cause issues later, better to skip or handle
+ # image_data = None
+ continue
+ # else:
+ # Let datasets.Image() handle the loading by passing the path
+ # image_data = image_path_full
+
+ yield idx, {
+ "image": image_path_full, # Pass the full path to the image feature
+ "question_id": row.get("question_id", ""),
+ "exam_name": row.get("exam_name", ""),
+ "exam_year": row.get("exam_year", -1), # Use a default if missing
+ "exam_code": row.get("exam_code", ""),
+ "subject": row.get("subject", ""),
+ "question_type": row.get("question_type", ""),
+ "correct_answer": row.get("correct_answer", []),
+ }
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c14eaec10c0812c71600a0a90f7ed82e9501ed5e
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,22 @@
+# Core Hugging Face library for dataset loading
+datasets>=2.0.0
+
+# For interacting with the Hugging Face Hub (optional but recommended)
+huggingface_hub>=0.10.0
+
+# Image processing library (required by datasets.Image)
+Pillow>=9.0.0
+
+# For making API calls (e.g., to OpenRouter)
+requests>=2.25.0
+
+# For handling YAML configuration files (if used in configs/)
+PyYAML>=5.4.0
+
+# For managing environment variables (e.g., API keys)
+python-dotenv>=0.19.0
+
+# For handling retries during API calls
+tenacity>=8.0.0
+
+# Add other dependencies as needed for your benchmark scripts (e.g., numpy, scikit-learn for evaluation)
diff --git a/results/.gitkeep b/results/.gitkeep
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/results/google_gemini-2.5-pro-preview-03-25/predictions.jsonl b/results/google_gemini-2.5-pro-preview-03-25/predictions.jsonl
new file mode 100644
index 0000000000000000000000000000000000000000..cddf0ab604a12a0e4d3e7d9fd817ee91b743d085
--- /dev/null
+++ b/results/google_gemini-2.5-pro-preview-03-25/predictions.jsonl
@@ -0,0 +1,200 @@
+{"question_id": "NEET_2024_T3_001", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_002", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_003", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_004", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_005", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_006", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_007", "ground_truth": [4], "predicted_answer": [4], "raw_response": "``` C\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_008", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_009", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_010", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```json\n{\"reasoning\": \"The question asks about the result of using white light instead of monochromatic light in Young's double-slit experiment. White light consists of multiple wavelengths (colors). In Young's experiment, the condition for constructive interference (bright fringes) is path difference = n\u03bb, and for destructive interference (dark fringes) is path difference = (n+1/2)\u03bb. At the center of the screen, the path difference from both slits is zero. For zero path difference, all wavelengths interfere constructively. Therefore, the central fringe (n=0) will be bright and formed by the superposition of all colors, resulting in a white fringe. Away from the center, the positions of bright fringes depend on the wavelength (y_bright = n\u03bbD/d). Since different colors have different wavelengths, their bright fringes will occur at slightly different positions for n \u2260 0. This leads to the formation of colored fringes flanking the central white fringe. For example, the first-order bright fringe (n=1) will be spread out, with violet (shortest visible wavelength) closest to the center and red (longest visible wavelength) farthest. Only the first few orders of fringes will be distinctly colored before they overlap significantly and wash out. Option (1) correctly describes this phenomenon: a central bright white fringe surrounded by a few colored fringes. Option (2) is incorrect because fringe width (\u03b2 = \u03bbD/d) depends on wavelength, so fringes for different colors (and the composite colored fringes) will not have equal widths. Option (3) is incorrect because an interference pattern is observed, albeit different from the monochromatic case. Option (4) is incorrect because the central fringe is bright, not dark (assuming 'dear' is a typo for 'dark').\", \"correct_options\": [\"1\"]}\n```\n1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_011", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_012", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_013", "ground_truth": [3], "predicted_answer": [4], "raw_response": "```\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_014", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_015", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n{\n \"reasoning\": \"The user wants to find the refractive index (n) of the prism based on the given information and diagram, and then identify the corresponding option number.\\n\\n1. **Analyze the setup:** A light ray enters face AB of a right-angled prism (A=90\u00b0) with an angle of incidence i = 30\u00b0. The ray travels parallel to the base BC and emerges along face AC (angle of emergence e = 90\u00b0).\\n2. **Apply Snell's Law at face AB:** Let r1 be the angle of refraction at face AB. The refractive index of air is n_air \u2248 1.\\n n_air * sin(i) = n * sin(r1)\\n 1 * sin(30\u00b0) = n * sin(r1)\\n 1/2 = n * sin(r1) (Equation 1)\\n3. **Apply Snell's Law at face AC:** Let r2 be the angle of incidence at face AC. The ray emerges along the face, so the angle of emergence e = 90\u00b0.\\n n * sin(r2) = n_air * sin(e)\\n n * sin(r2) = 1 * sin(90\u00b0)\\n n * sin(r2) = 1 * 1\\n n * sin(r2) = 1 (Equation 2)\\n4. **Use Prism Geometry:** For a prism with angle A, the sum of the internal angles of refraction and incidence is equal to the prism angle: A = r1 + r2. Since the prism is right-angled at A, A = 90\u00b0.\\n r1 + r2 = 90\u00b0\\n Therefore, r2 = 90\u00b0 - r1.\\n5. **Substitute r2 into Equation 2:**\\n n * sin(90\u00b0 - r1) = 1\\n Using the trigonometric identity sin(90\u00b0 - \u03b8) = cos(\u03b8):\\n n * cos(r1) = 1 (Equation 3)\\n6. **Solve for n using Equations 1 and 3:** We have two equations:\\n n * sin(r1) = 1/2\\n n * cos(r1) = 1\\n Square both equations and add them:\\n (n * sin(r1))\u00b2 + (n * cos(r1))\u00b2 = (1/2)\u00b2 + 1\u00b2\\n n\u00b2 * sin\u00b2(r1) + n\u00b2 * cos\u00b2(r1) = 1/4 + 1\\n n\u00b2 * (sin\u00b2(r1) + cos\u00b2(r1)) = 5/4\\n Using the identity sin\u00b2(\u03b8) + cos\u00b2(\u03b8) = 1:\\n n\u00b2 * 1 = 5/4\\n n\u00b2 = 5/4\\n n = sqrt(5/4) (Refractive index must be positive)\\n n = sqrt(5) / sqrt(4)\\n n = sqrt(5) / 2\\n7. **Match the result with the options:**\\n (1) sqrt(3)/4\\n (2) sqrt(3)/2\\n (3) sqrt(5)/4\\n (4) sqrt(5)/2\\n The calculated refractive index n = sqrt(5) / 2 matches option (4).\\n8. **Format the output:** The correct option number is 4.\",\n \"answer\": \"4\"\n}\n```\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_016", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_017", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_018", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_019", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_020", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_021", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_022", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_023", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_024", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_025", "ground_truth": [1, 3], "predicted_answer": null, "raw_response": "```json\n{\"thought\": \"1. **Analyze Statement I:** \\\"Atoms are electrically neutral as they contain equal number of positive and negative charges.\\\" An atom has protons (positive) in the nucleus and electrons (negative) orbiting. In a neutral atom, the number of protons equals the number of electrons. Thus, the total positive charge cancels the total negative charge, making the atom electrically neutral. Statement I is correct.\n\n2. **Analyze Statement II:** \\\"Atoms of each element are stable and emit their characteristic spectrum.\\\" Atoms are generally stable in their ground state. However, they only emit a characteristic spectrum when their electrons are excited to higher energy levels and then fall back to lower levels, releasing energy as photons. They do not continuously emit spectra in their stable ground state. Also, not all atoms are inherently stable (e.g., radioactive isotopes). Therefore, Statement II is incorrect as a general, unconditional statement.\n\n3. **Evaluate the Options:**\n * Option (1): Statement I is correct but Statement II is incorrect. This aligns with the analysis.\n * Option (2): Statement I is incorrect but Statement II is correct. This contradicts the analysis.\n * Option (3): Both Statement I and Statement II are correct. This contradicts the analysis.\n * Option (4): Both Statement I and Statement II are incorrect. This contradicts the analysis.\n\n4. **Determine the Correct Integer:** The analysis shows that Statement I is correct and Statement II is incorrect. This corresponds to option (1).\n\n5. **Format the Output:** Enclose the integer 1 within tags.\", \"answer\": \"1\"}\n```", "parse_successful": false, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_026", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_027", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_028", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```python\nimport math\n\n# Define the given values\nradius_cm = 4.5 # cm\nsurface_tension = 0.07 # Nm^-1\n\n# Convert radius to meters\nradius_m = radius_cm / 100.0 # m\n\n# Calculate the circumference (length of contact)\nlength_contact = 2 * math.pi * radius_m\n\n# Calculate the excess force required\n# The force acts along the circumference\n# F = T * L\nforce = surface_tension * length_contact\n\n# Calculate the numerical value\nforce_value = 0.07 * (2 * math.pi * (4.5 / 100.0))\n# force_value = 0.07 * 2 * 3.14159 * 0.045\n# force_value = 0.14 * 3.14159 * 0.045\n# force_value = 0.43982 * 0.045\n# force_value = 0.0197919 N\n\n# Convert the force to milliNewtons (mN)\n# 1 N = 1000 mN\nforce_mN = force_value * 1000\n# force_mN = 19.7919 mN\n\n# Round the value to match the options\nforce_mN_rounded = round(force_mN, 1) # Round to one decimal place as in option (3)\n\n# Compare with options\n# (1) 1.98 mN\n# (2) 99 N\n# (3) 19.8 mN\n# (4) 198 N\n\n# The calculated value 19.7919 mN is approximately 19.8 mN.\n\ncorrect_option = 3\n```\n\n3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_029", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_030", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_031", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_032", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_033", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_034", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_035", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_036", "ground_truth": [2], "predicted_answer": [2], "raw_response": "``` C\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_037", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_038", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_039", "ground_truth": [3], "predicted_answer": [4], "raw_response": "1. **Analyze the question:** The question asks to identify the correct circuit diagram that represents a Wheatstone bridge capable of achieving balance. This means we need to find the circuit(s) with the correct topology for a Wheatstone bridge measurement, where the source, resistors, and detector(s) are placed correctly. The bridge doesn't necessarily need to be balanced with the given resistance values.\n\n2. **Analyze the options:**\n * A standard Wheatstone bridge consists of four resistors (forming a diamond or square), a voltage source connected across one pair of opposite junctions, and a detector (like a galvanometer) connected across the other pair of opposite junctions. The balance condition (zero current through the detector) is achieved when the ratios of resistances in adjacent arms are equal (e.g., R1/R2 = R3/R4).\n * **Option (1):** The voltage source (E) is connected vertically. The galvanometer (G) is connected horizontally between the resistor junctions. However, the detector (D) is placed in series with the 5\u03a9 resistor (R4). This series placement is incorrect for a standard bridge detector.\n * **Option (2):** The voltage source (E) is connected horizontally. The galvanometer (G) is connected vertically between the top and bottom junctions. Similar to option (1), the detector (D) is incorrectly placed in series with the 5\u03a9 resistor (R4).\n * **Option (3):** The voltage source (E) is connected horizontally. Both the galvanometer (G) and the detector (D) are connected in parallel across the vertical junctions (top and bottom). This topology (source across one diagonal, detector(s) across the other) is a valid Wheatstone bridge configuration.\n * **Option (4):** The voltage source (E) is connected vertically. Both the galvanometer (G) and the detector (D) are connected in parallel across the horizontal junctions (left and right midpoints). This topology is also a valid Wheatstone bridge configuration and is perhaps the most common way it is drawn.\n\n3. **Determine the correct option(s):** Options (1) and (2) are incorrect because the detector D is misplaced in series with an arm resistor. Options (3) and (4) both represent topologically correct Wheatstone bridge circuits. In both, the source is connected across one pair of opposite nodes, and the detectors (G and D shown in parallel, which is redundant but topologically valid) are connected across the other pair of opposite nodes. Since the question asks for the correct circuit which *can* achieve balance, and both (3) and (4) are valid configurations, we need to consider if there's a reason to prefer one or if the intended answer might select the most conventional representation. Option (4) is the most conventional diagram. However, *both* 3 and 4 depict circuits that represent a Wheatstone bridge structure capable of balance if the resistance values were appropriate. Assuming the question expects the standard, well-formed bridge circuit diagrams, both 3 and 4 fit. If only one answer can be selected, often the most standard representation (Option 4) is intended. But without further clarification or context suggesting only one is correct, both topologies are valid. Let's check if any option *is* balanced with the given values (although the question asks which *can* achieve balance).\n * Option 3 Balance: (10/15) vs (10/5) or (10/10) vs (15/5). Neither matches.\n * Option 4 Balance: (10/15) vs (10/5) or (10/10) vs (15/5). Neither matches.\n Since neither circuit is balanced as shown, the question must refer to the correctness of the circuit topology. Both 3 and 4 have correct topology. In multiple-choice questions where more than one option seems plausible based on strict criteria, sometimes the most standard or common representation is considered the single \"best\" answer. Option 4 is generally the most common depiction. However, it is possible that the exam allows multiple correct answers or intended both 3 and 4. Given the constraint to provide integer numbers, and the possibility of ambiguity, if only one answer is accepted, option 4 is the most likely intended answer due to convention. If multiple answers were allowed, it would be 3 and 4. Assuming a single best answer based on conventional representation.\n\nLet's assume the question expects the most standard configuration.\nFinal check: Option 4 has source top-bottom, detector left-right. Resistors 10, 10, 15, 5. Topology is correct. Option 3 has source left-right, detector top-bottom. Resistors 10, 10, 15, 5. Topology is correct. Options 1 and 2 have Detector D in series with resistor - incorrect topology. So, 3 and 4 are potentially correct. Given it's a single-choice question format usually, 4 is the most standard representation.\n\nReconsidering common errors or interpretations: sometimes the labelling implies ratios. For example, in Circuit 4, ratio 10/15 compared to 10/5; or 10/10 compared to 15/5. No balance. The wording \"can achieve the bridge balance\" usually refers to the structural possibility.\n\nLet's select 4 as the most standard representation of a correct Wheatstone bridge topology.\n\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_040", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_041", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_042", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```cpp\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_043", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_044", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n```json\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_045", "ground_truth": [4], "predicted_answer": [4], "raw_response": "``` Mmh ``` 4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_046", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_047", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```json\n1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_048", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n```json\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_049", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_050", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_051", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```xml\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_052", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_053", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_054", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_055", "ground_truth": [4], "predicted_answer": [4], "raw_response": "``` Phemistry\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_056", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```xml\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_057", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_058", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_059", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_060", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_061", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_062", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_063", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_064", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_065", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_066", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_067", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```json\n1\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_068", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_069", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```json\n1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_070", "ground_truth": [1], "predicted_answer": [1], "raw_response": "``` C2 molecule bonding clarification:\nMolecular Orbital Theory for C2 (8 valence electrons):\n(\u03c32s)\u00b2 (\u03c3*2s)\u00b2 (\u03c02py)\u00b2 (\u03c02pz)\u00b2\nBond Order = (Number of bonding electrons - Number of antibonding electrons) / 2\nBond Order = (2 + 2 + 2 - 2) / 2 = 6 / 2 = 3 -> incorrect count, it's (2+4 - 2)/2 = 4/2 = 2.\nThe bonding consists of two \u03c0 bonds from (\u03c02py)\u00b2 and (\u03c02pz)\u00b2. The \u03c32p orbital is higher in energy than the \u03c0 orbitals for C2.\nSo, C2 has a bond order of 2, consisting solely of two \u03c0 bonds according to simple MO theory for second-period homonuclear diatomics up to N2.\n\nMatching:\nA. Ethane (C-C): Single bond = one \u03c3-bond -> III\nB. Ethene (C=C): Double bond = one \u03c3-bond and one \u03c0-bond -> IV\nC. Carbon molecule (C\u2082): Two \u03c0-bonds -> II\nD. Ethyne (C\u2261C): Triple bond = one \u03c3-bond and two \u03c0-bonds -> I\n\nMatches: A-III, B-IV, C-II, D-I\n\nChecking options:\n(1) A-III, B-IV, C-II, D-I -> This matches.\n(2) A-III, B-IV, C-I, D-II\n(3) A-I, B-IV, C-II, D-III\n(4) A-IV, B-III, C-II, D-I\n\nThe correct option is (1).\n```\n1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_071", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_072", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```json\n```\n1\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_073", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_074", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_075", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_076", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_077", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n\"3\"\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_078", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_079", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_080", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_081", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_082", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_083", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_084", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_085", "ground_truth": [4], "predicted_answer": [4], "raw_response": "``` D:\\code-generation\\Grounded_generation\\Exam_Analysis\\extraction\\21637196\\ocr_image.png\n4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_086", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```4```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_087", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_088", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n{\n \"query\": \"The plot of osmotic pressure (\u03a0) vs concentration (mol L\u207b\u00b9) for a solution gives a straight line with slope 25.73 L bar mol\u207b\u00b9. The temperature at which the osmotic pressure measurement is done is: (Use R = 0.083 L bar mol\u207b\u00b9 K\u207b\u00b9)\",\n \"options\": {\n \"1\": \"25.73\u00b0C\",\n \"2\": \"12.05\u00b0C\",\n \"3\": \"37\u00b0C\",\n \"4\": \"310\u00b0C\"\n },\n \"solution\": {\n \"step1\": \"Recall the van't Hoff equation for osmotic pressure: \u03a0 = iCRT. Assuming a non-electrolyte or that concentration refers to the total solute particle concentration, we can often use \u03a0 = CRT.\",\n \"step2\": \"Identify the variables from the plot described. The plot is \u03a0 vs C. This matches the form y = mx + b, where \u03a0 is y, C is x.\",\n \"step3\": \"Comparing \u03a0 = CRT to y = mx, we see that the slope (m) of the \u03a0 vs C plot is equal to RT.\",\n \"step4\": \"Use the given values: slope = 25.73 L bar mol\u207b\u00b9 and R = 0.083 L bar mol\u207b\u00b9 K\u207b\u00b9.\",\n \"step5\": \"Set the slope equal to RT: 25.73 L bar mol\u207b\u00b9 = (0.083 L bar mol\u207b\u00b9 K\u207b\u00b9) * T.\",\n \"step6\": \"Solve for the absolute temperature T (in Kelvin): T = (25.73 L bar mol\u207b\u00b9) / (0.083 L bar mol\u207b\u00b9 K\u207b\u00b9) = 25.73 / 0.083 K \u2248 310 K.\",\n \"step7\": \"Convert the temperature from Kelvin to Celsius: T(\u00b0C) = T(K) - 273.15. Using 273 for approximation: T(\u00b0C) = 310 K - 273 = 37\u00b0C.\",\n \"step8\": \"Compare the calculated temperature with the given options: Option (3) is 37\u00b0C.\",\n \"final_answer\": 3\n }\n}\n```\n3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_089", "ground_truth": [4], "predicted_answer": [1, 2, 3, 4], "raw_response": "``` C-H KMnO4/H+ OH OH (1) (major product) 'P\" CH-CH (2) C-C (3) CHO (4)COOH ```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_090", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_091", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_092", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_093", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_094", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_095", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_096", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_097", "ground_truth": [4], "predicted_answer": [4], "raw_response": "``` MSON ```\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_098", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_099", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_100", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```xml\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_101", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```xml\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_102", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_103", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_104", "ground_truth": [1], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_105", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_106", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_107", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_108", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_109", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_110", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_111", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_112", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_113", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_114", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_115", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_116", "ground_truth": [2], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_117", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_118", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_119", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_120", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_121", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_122", "ground_truth": [2], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_123", "ground_truth": [3], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_124", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_125", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_126", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```xml\n1\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_127", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_128", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_129", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_130", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_131", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_132", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_133", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_134", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_135", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_136", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_137", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_138", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```xml\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_139", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_140", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_141", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```json\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_142", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```xml\n1\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_143", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_144", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_145", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_146", "ground_truth": [1], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_147", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_148", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_149", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_150", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_151", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_152", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_153", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_154", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_155", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_156", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_157", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_158", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```shell\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_159", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_160", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_161", "ground_truth": [1], "predicted_answer": [1], "raw_response": "```xml\n1\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_162", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_163", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_164", "ground_truth": [2], "predicted_answer": [3], "raw_response": "``` BASH\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_165", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_166", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_167", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_168", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_169", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_170", "ground_truth": [4], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_171", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_172", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_173", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```xml\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_174", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```swift\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_175", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_176", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_177", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_178", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_179", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_180", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_181", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_182", "ground_truth": [4], "predicted_answer": [4], "raw_response": "```json\n4\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_183", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_184", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_185", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_186", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_187", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_188", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_189", "ground_truth": [3], "predicted_answer": [3], "raw_response": "``` MSON\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_190", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_191", "ground_truth": [2], "predicted_answer": [2], "raw_response": "```json\n2\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_192", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_193", "ground_truth": [3], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_194", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_195", "ground_truth": [1], "predicted_answer": [1], "raw_response": "1", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_196", "ground_truth": [4], "predicted_answer": [4], "raw_response": "4", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_197", "ground_truth": [3], "predicted_answer": [3], "raw_response": "```xml\n3\n```", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_198", "ground_truth": [2], "predicted_answer": [2], "raw_response": "2", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_199", "ground_truth": [3], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
+{"question_id": "NEET_2024_T3_200", "ground_truth": [1], "predicted_answer": [3], "raw_response": "3", "parse_successful": true, "api_call_successful": true}
diff --git a/results/google_gemini-2.5-pro-preview-03-25/summary.json b/results/google_gemini-2.5-pro-preview-03-25/summary.json
new file mode 100644
index 0000000000000000000000000000000000000000..a7f572b19af5e1081cc8628503b97ef83506b024
--- /dev/null
+++ b/results/google_gemini-2.5-pro-preview-03-25/summary.json
@@ -0,0 +1,7 @@
+{
+ "model_name": "google/gemini-2.5-pro-preview-03-25",
+ "total_questions": 200,
+ "successful_predictions": 199,
+ "api_failures": 0,
+ "accuracy": 0.9396984924623115
+}
\ No newline at end of file
diff --git a/src/__init__.py b/src/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/benchmark_runner.py b/src/benchmark_runner.py
new file mode 100644
index 0000000000000000000000000000000000000000..40937eba4f99ad19a79803e5bfd74bf9398bf50c
--- /dev/null
+++ b/src/benchmark_runner.py
@@ -0,0 +1,218 @@
+import argparse
+import yaml
+import os
+import json
+import logging
+from datasets import load_dataset, Image as HFImage # Import Image feature type
+from tqdm import tqdm
+from PIL import Image as PILImage # Import PIL for type hinting
+
+# Import local modules
+from utils import load_api_key
+from llm_interface import get_openrouter_prediction
+from evaluation import calculate_accuracy
+
+# Configure logging
+logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
+
+def load_config(config_path: str) -> dict:
+ """Loads the benchmark configuration from a YAML file."""
+ try:
+ with open(config_path, 'r') as f:
+ config = yaml.safe_load(f)
+ logging.info(f"Configuration loaded from {config_path}")
+ return config
+ except FileNotFoundError:
+ logging.error(f"Configuration file not found at {config_path}")
+ raise
+ except yaml.YAMLError as e:
+ logging.error(f"Error parsing configuration file {config_path}: {e}")
+ raise
+
+def save_results(output_dir: str, model_name: str, results: list, summary: dict):
+ """Saves detailed predictions and summary results to files."""
+ # Sanitize model name for directory/filename usage
+ safe_model_name = model_name.replace('/', '_')
+ model_output_dir = os.path.join(output_dir, safe_model_name)
+ os.makedirs(model_output_dir, exist_ok=True)
+
+ # Save detailed predictions
+ predictions_path = os.path.join(model_output_dir, "predictions.jsonl")
+ try:
+ with open(predictions_path, 'w') as f:
+ for result in results:
+ json.dump(result, f)
+ f.write('\n')
+ logging.info(f"Detailed predictions saved to {predictions_path}")
+ except IOError as e:
+ logging.error(f"Failed to save detailed predictions to {predictions_path}: {e}")
+
+ # Save summary
+ summary_path = os.path.join(model_output_dir, "summary.json")
+ try:
+ with open(summary_path, 'w') as f:
+ json.dump(summary, f, indent=4)
+ logging.info(f"Summary results saved to {summary_path}")
+ except IOError as e:
+ logging.error(f"Failed to save summary results to {summary_path}: {e}")
+
+
+def run_benchmark(config: dict, api_key: str, models_override: list[str] | None = None, output_dir_override: str | None = None):
+ """Runs the benchmark evaluation loop."""
+
+ # Determine models to run
+ models_to_run = models_override if models_override else config.get("openrouter_models", [])
+ if not models_to_run:
+ logging.error("No models specified in config or via --models argument.")
+ return
+
+ # Determine output directory
+ output_dir = output_dir_override if output_dir_override else config.get("results_base_dir", "results")
+ os.makedirs(output_dir, exist_ok=True)
+
+ # Load dataset
+ dataset_path = config.get("dataset_path", ".") # Default to current dir if not specified
+ try:
+ # Load the dataset using the loading script from the specified path
+ # Ensure the 'image' column is decoded
+ # Explicitly specify data_files and data_dir for local loading.
+ # data_dir should be the project root ('.') when loading a local script,
+ # as the script is copied to a cache and needs to know where the actual data is.
+ dataset = load_dataset(dataset_path, split='test', data_files={'test': 'data/metadata.jsonl'}, data_dir='.', trust_remote_code=True)
+ dataset = dataset.cast_column("image", HFImage(decode=True)) # Ensure images are loaded as PIL
+ logging.info(f"Dataset loaded successfully from path: {dataset_path}. Number of questions: {len(dataset)}")
+ except Exception as e:
+ logging.error(f"Failed to load dataset from path '{dataset_path}': {e}")
+ logging.error("Ensure the path is correct and 'jee_neet_benchmark_dataset.py' exists.")
+ return
+
+ total_questions = len(dataset)
+
+ # --- Main Loop: Iterate through models ---
+ for model_id in models_to_run:
+ logging.info(f"--- Starting benchmark for model: {model_id} ---")
+ model_results = []
+ predictions = []
+ ground_truths = []
+ api_failures = 0
+
+ # --- Inner Loop: Iterate through questions ---
+ for example in tqdm(dataset, desc=f"Processing {model_id}", total=total_questions):
+ question_id = example["question_id"]
+ image: PILImage.Image = example["image"] # Image should be decoded to PIL by cast_column
+ truth = example["correct_answer"]
+ ground_truths.append(truth) # Store ground truth for accuracy calculation
+
+ try:
+ # Get prediction from LLM interface
+ parsed_answer, raw_response = get_openrouter_prediction(
+ image=image,
+ model_identifier=model_id,
+ api_key=api_key,
+ max_tokens=config.get("max_tokens", 50), # Get from config or default
+ request_timeout=config.get("request_timeout", 60) # Get from config or default
+ )
+ predictions.append(parsed_answer) # Store parsed answer (list or None)
+
+ # Provide live feedback on correctness
+ if parsed_answer is not None:
+ is_correct = sorted(parsed_answer) == sorted(truth)
+ logging.info(f"Question {question_id}: {'Correct' if is_correct else 'Incorrect'}")
+ else:
+ logging.info(f"Question {question_id}: Failed to get or parse answer")
+
+
+ # Store detailed result for this question
+ model_results.append({
+ "question_id": question_id,
+ "ground_truth": truth,
+ "predicted_answer": parsed_answer,
+ "raw_response": raw_response,
+ "parse_successful": parsed_answer is not None,
+ "api_call_successful": True
+ })
+
+ except Exception as e:
+ # Catch potential failures from get_openrouter_prediction after retries
+ logging.error(f"API call failed permanently for question {question_id} with model {model_id}: {e}")
+ predictions.append(None) # Mark prediction as failed (None)
+ api_failures += 1
+ model_results.append({
+ "question_id": question_id,
+ "ground_truth": truth,
+ "predicted_answer": None,
+ "raw_response": None,
+ "parse_successful": False,
+ "api_call_successful": False,
+ "error": str(e)
+ })
+ # Provide live feedback for failed questions
+ logging.info(f"Question {question_id}: API call failed")
+
+
+ # --- Evaluation for the current model ---
+ # Filter out None predictions before calculating accuracy
+ valid_predictions = [p for p in predictions if p is not None]
+ corresponding_ground_truths = [truth for p, truth in zip(predictions, ground_truths) if p is not None]
+
+ if not valid_predictions:
+ logging.warning(f"No valid predictions were generated for model {model_id}. Skipping accuracy calculation.")
+ accuracy = 0.0
+ else:
+ try:
+ accuracy = calculate_accuracy(valid_predictions, corresponding_ground_truths)
+ except ValueError as e:
+ logging.error(f"Error calculating accuracy for model {model_id}: {e}")
+ accuracy = 0.0 # Or handle as appropriate
+
+ summary = {
+ "model_name": model_id,
+ "total_questions": total_questions,
+ "successful_predictions": len([p for p in predictions if p is not None]),
+ "api_failures": api_failures,
+ "accuracy": accuracy
+ }
+
+ logging.info(f"--- Results for model: {model_id} ---")
+ logging.info(f"Accuracy: {accuracy:.4f}")
+ logging.info(f"API Failures: {api_failures}/{total_questions}")
+ logging.info("-------------------------------------")
+
+ # Save results for the current model
+ save_results(output_dir, model_id, model_results, summary)
+
+ logging.info("Benchmark run completed.")
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Run JEE/NEET LLM Benchmark.")
+ parser.add_argument(
+ "--config",
+ type=str,
+ default="configs/benchmark_config.yaml",
+ help="Path to the benchmark configuration YAML file."
+ )
+ parser.add_argument(
+ "--models",
+ nargs='+', # Allows specifying multiple models
+ type=str,
+ help="Override the list of models specified in the config file."
+ )
+ parser.add_argument(
+ "--output_dir",
+ type=str,
+ help="Override the base output directory specified in the config file."
+ )
+ args = parser.parse_args()
+
+ try:
+ # Load API key first - fail fast if not set
+ api_key = load_api_key()
+ # Load configuration
+ config = load_config(args.config)
+ # Run the benchmark
+ run_benchmark(config, api_key, args.models, args.output_dir)
+ except (ValueError, FileNotFoundError, yaml.YAMLError) as e:
+ logging.error(f"Setup failed: {e}")
+ except Exception as e:
+ logging.error(f"An unexpected error occurred during benchmark execution: {e}", exc_info=True)
diff --git a/src/data_loader.py b/src/data_loader.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/evaluation.py b/src/evaluation.py
new file mode 100644
index 0000000000000000000000000000000000000000..afd0685fa8e4a2016ee67ba84acd5138cfd0d9f6
--- /dev/null
+++ b/src/evaluation.py
@@ -0,0 +1,102 @@
+import logging
+from typing import List, Optional, Union
+
+# Configure logging
+logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
+
+def calculate_accuracy(predictions: List[Optional[List[int]]], ground_truths: List[List[int]]) -> float:
+ """
+ Calculates the accuracy of LLM predictions against ground truths.
+
+ Accuracy is defined as the percentage of predictions where the predicted list
+ of answer numbers exactly matches the ground truth list of answer numbers
+ (order within the list does not matter). A prediction of None (due to parsing failure)
+ is considered incorrect.
+
+ Args:
+ predictions (List[Optional[List[int]]]): A list where each element is either a list
+ of predicted answer integers or None if
+ parsing failed for that question.
+ ground_truths (List[List[int]]): A list where each element is a list of
+ ground truth answer integers.
+
+ Returns:
+ float: The calculated accuracy (between 0.0 and 1.0).
+
+ Raises:
+ ValueError: If the lengths of predictions and ground_truths lists do not match.
+ """
+ if len(predictions) != len(ground_truths):
+ raise ValueError(f"Length mismatch: Predictions ({len(predictions)}) vs Ground Truths ({len(ground_truths)})")
+
+ if not ground_truths:
+ return 0.0 # Avoid division by zero if the list is empty
+
+ correct_count = 0
+ for i, pred in enumerate(predictions):
+ truth = ground_truths[i]
+
+ # Sort both lists for order-independent comparison
+ # Handle None case for prediction
+ sorted_pred = sorted(pred) if pred is not None else None
+ sorted_truth = sorted(truth)
+
+ if sorted_pred is not None and sorted_pred == sorted_truth:
+ correct_count += 1
+ else:
+ logging.debug(f"Incorrect prediction for index {i}: Pred={sorted_pred}, Truth={sorted_truth}")
+
+
+ accuracy = correct_count / len(ground_truths)
+ logging.info(f"Accuracy calculated: {correct_count}/{len(ground_truths)} = {accuracy:.4f}")
+ return accuracy
+
+# Example Usage (for testing)
+if __name__ == '__main__':
+ print("Running evaluation tests...")
+
+ # Test case 1: Perfect match
+ preds1 = [[1], [2], [1, 3]]
+ truths1 = [[1], [2], [3, 1]]
+ acc1 = calculate_accuracy(preds1, truths1)
+ print(f"Test Case 1: Preds={preds1}, Truths={truths1} -> Accuracy: {acc1} (Expected: 1.0)")
+ assert acc1 == 1.0
+
+ # Test case 2: One wrong
+ preds2 = [[1], [4], [1, 3]]
+ truths2 = [[1], [2], [3, 1]]
+ acc2 = calculate_accuracy(preds2, truths2)
+ print(f"Test Case 2: Preds={preds2}, Truths={truths2} -> Accuracy: {acc2} (Expected: ~0.6667)")
+ assert abs(acc2 - 2/3) < 1e-6
+
+ # Test case 3: Parsing failure (None)
+ preds3 = [[1], None, [1, 3]]
+ truths3 = [[1], [2], [3, 1]]
+ acc3 = calculate_accuracy(preds3, truths3)
+ print(f"Test Case 3: Preds={preds3}, Truths={truths3} -> Accuracy: {acc3} (Expected: ~0.6667)")
+ assert abs(acc3 - 2/3) < 1e-6
+
+ # Test case 4: Empty lists
+ preds4 = []
+ truths4 = []
+ acc4 = calculate_accuracy(preds4, truths4)
+ print(f"Test Case 4: Preds={preds4}, Truths={truths4} -> Accuracy: {acc4} (Expected: 0.0)")
+ assert acc4 == 0.0
+
+ # Test case 5: Length mismatch (should raise ValueError)
+ preds5 = [[1]]
+ truths5 = [[1], [2]]
+ try:
+ calculate_accuracy(preds5, truths5)
+ print("Test Case 5: FAILED - ValueError not raised")
+ except ValueError as e:
+ print(f"Test Case 5: PASSED - Raised ValueError: {e}")
+
+ # Test case 6: Partial match in multiple correct is still wrong
+ preds6 = [[1], [2], [1]]
+ truths6 = [[1], [2], [1, 3]]
+ acc6 = calculate_accuracy(preds6, truths6)
+ print(f"Test Case 6: Preds={preds6}, Truths={truths6} -> Accuracy: {acc6} (Expected: ~0.6667)")
+ assert abs(acc6 - 2/3) < 1e-6
+
+ print("\nEvaluation tests completed.")
diff --git a/src/llm_interface.py b/src/llm_interface.py
new file mode 100644
index 0000000000000000000000000000000000000000..a514d4d7db38a3381c4e382fa3ad6430e127f8d3
--- /dev/null
+++ b/src/llm_interface.py
@@ -0,0 +1,182 @@
+import base64
+import requests
+import time
+import logging
+from io import BytesIO
+from PIL import Image
+from tenacity import retry, stop_after_attempt, wait_exponential, retry_if_exception_type
+
+from utils import parse_llm_answer
+
+# Configure logging
+logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
+
+# OpenRouter API endpoint
+OPENROUTER_API_ENDPOINT = "https://openrouter.ai/api/v1/chat/completions"
+
+# Define exceptions for retry logic
+RETRYABLE_EXCEPTIONS = (
+ requests.exceptions.Timeout,
+ requests.exceptions.ConnectionError,
+ requests.exceptions.RequestException # Catch broader request errors for retries
+)
+
+# Define status codes that warrant a retry
+RETRYABLE_STATUS_CODES = {500, 502, 503, 504}
+
+def should_retry_response(response):
+ """Check if the response status code warrants a retry."""
+ return response.status_code in RETRYABLE_STATUS_CODES
+
+# Retry decorator configuration
+retry_config = dict(
+ stop=stop_after_attempt(3), # Retry up to 3 times
+ wait=wait_exponential(multiplier=1, min=2, max=10), # Exponential backoff: 2s, 4s, 8s...
+ retry=(retry_if_exception_type(RETRYABLE_EXCEPTIONS)) # Retry on specific exceptions
+ # We will handle status code retries manually within the function for more control
+)
+
+def encode_image_to_base64(image: Image.Image) -> str:
+ """Encodes a PIL Image object to a base64 string."""
+ buffered = BytesIO()
+ # Ensure image is in RGB format for broad compatibility
+ if image.mode != 'RGB':
+ image = image.convert('RGB')
+ image.save(buffered, format="JPEG") # Save as JPEG for potentially smaller size
+ img_str = base64.b64encode(buffered.getvalue()).decode('utf-8')
+ return img_str
+
+def construct_prompt(base64_image: str) -> list:
+ """Constructs the message list for the OpenRouter API call."""
+ # Modified prompt to encourage structured thinking and tag usage
+ prompt_text = """You are an expert at analyzing exam questions and extracting the correct answer option(s).
+
+Examine the provided image of a multiple-choice question carefully.
+1. Analyze the question and the provided options.
+2. Determine the correct integer number(s) corresponding to the correct option(s).
+3. Format your final answer by enclosing ONLY the integer number(s) within tags.
+
+Examples:
+- If the correct option is 2: 2
+- If the correct options are 1 and 3: 1,3
+
+It is crucial that your response contains ONLY the tags with the correct integer number(s) inside. Do not include any other text, explanation, or formatting."""
+
+ messages = [
+ {
+ "role": "user",
+ "content": [
+ {"type": "text", "text": prompt_text},
+ {
+ "type": "image_url",
+ "image_url": {
+ "url": f"data:image/jpeg;base64,{base64_image}"
+ }
+ }
+ ]
+ }
+ ]
+ return messages
+
+@retry(**retry_config)
+def get_openrouter_prediction(image: Image.Image, model_identifier: str, api_key: str, max_tokens: int = 100, request_timeout: int = 60) -> tuple[list[int] | None, str | None]:
+ """
+ Gets a prediction from an OpenRouter vision model for a given image.
+
+ Args:
+ image (Image.Image): The question image as a PIL Image object.
+ model_identifier (str): The OpenRouter model identifier (e.g., "openai/gpt-4o").
+ api_key (str): The OpenRouter API key.
+ max_tokens (int): Max tokens for the response.
+ request_timeout (int): Timeout for the API request in seconds.
+
+ Returns:
+ tuple[list[int] | None, str | None]: A tuple containing:
+ - The parsed answer as a list of integers (or None if failed).
+ - The raw response text from the LLM (or None if API call failed).
+ """
+ logging.info(f"Requesting prediction from model: {model_identifier}")
+ try:
+ base64_image = encode_image_to_base64(image)
+ messages = construct_prompt(base64_image)
+
+ headers = {
+ "Authorization": f"Bearer {api_key}",
+ "Content-Type": "application/json"
+ }
+
+ data = {
+ "model": model_identifier,
+ "messages": messages,
+ "max_tokens": max_tokens
+ }
+
+ response = requests.post(
+ OPENROUTER_API_ENDPOINT,
+ headers=headers,
+ json=data,
+ timeout=request_timeout
+ )
+
+ # Handle specific status code retries (though tenacity handles exceptions)
+ if response.status_code in RETRYABLE_STATUS_CODES:
+ logging.warning(f"Received retryable status code {response.status_code} from {model_identifier}. Retrying might occur if configured.")
+ # Raise an exception to trigger tenacity retry based on status code if needed,
+ # or handle retry logic more explicitly here if preferred.
+ # For simplicity, we rely on tenacity for exception-based retries.
+ # If the request fails multiple times with these codes, it will eventually raise.
+ response.raise_for_status() # Raise HTTPError for bad status codes after retries fail
+
+ # Handle non-retryable client/server errors
+ if not response.ok:
+ logging.error(f"API Error for model {model_identifier}: Status {response.status_code} - {response.text}")
+ return None, None # Failed API call
+
+ response_json = response.json()
+ raw_response_text = response_json.get("choices", [{}])[0].get("message", {}).get("content")
+
+ if not raw_response_text:
+ logging.warning(f"Empty response content received from model: {model_identifier}")
+ return None, None
+
+ logging.info(f"Raw response received from {model_identifier}: '{raw_response_text[:100]}...'")
+ parsed_answer = parse_llm_answer(raw_response_text)
+
+ if parsed_answer is None:
+ logging.warning(f"Failed to parse answer from model {model_identifier}. Raw response: '{raw_response_text}'")
+
+ return parsed_answer, raw_response_text
+
+ except requests.exceptions.Timeout as e:
+ logging.error(f"Request timed out for model {model_identifier}: {e}")
+ raise # Re-raise to allow tenacity to handle retry
+ except requests.exceptions.RequestException as e:
+ logging.error(f"Request failed for model {model_identifier}: {e}")
+ raise # Re-raise to allow tenacity to handle retry
+ except Exception as e:
+ logging.error(f"An unexpected error occurred for model {model_identifier}: {e}")
+ # Don't re-raise unexpected errors unless retry logic is designed for them
+ return None, None # Failed due to unexpected error
+
+# Example Usage (requires a valid API key in .env and Pillow/requests/tenacity installed)
+if __name__ == '__main__':
+ from src.utils import load_api_key
+ try:
+ # Create a dummy black image for testing
+ dummy_image = Image.new('RGB', (60, 30), color = 'black')
+ api_key = load_api_key()
+ # Replace with a model you have access to via OpenRouter, e.g., "openai/gpt-4o"
+ # Note: Free models might not support vision or follow instructions well.
+ test_model = "anthropic/claude-3-haiku" # Example model
+
+ print(f"\nTesting prediction with model: {test_model}")
+ parsed_ans, raw_resp = get_openrouter_prediction(dummy_image, test_model, api_key)
+
+ print(f"Model: {test_model}")
+ print(f"Parsed Answer: {parsed_ans}")
+ print(f"Raw Response: {raw_resp}")
+
+ except ValueError as e:
+ print(f"Setup Error: {e}")
+ except Exception as e:
+ print(f"Runtime Error: {e}")
diff --git a/src/utils.py b/src/utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..ef4551327723bed3f6398a90b003da3805c67b20
--- /dev/null
+++ b/src/utils.py
@@ -0,0 +1,121 @@
+import os
+import re
+from dotenv import load_dotenv
+import logging
+
+logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
+
+def load_api_key(key_name="OPENROUTER_API_KEY"):
+ """
+ Loads the specified API key from environment variables.
+ Loads .env file first if it exists.
+
+ Args:
+ key_name (str): The name of the environment variable holding the API key.
+
+ Returns:
+ str: The API key.
+
+ Raises:
+ ValueError: If the API key environment variable is not set.
+ """
+ load_dotenv() # Load environment variables from .env file if it exists
+ api_key = os.getenv(key_name)
+ if not api_key:
+ raise ValueError(f"'{key_name}' environment variable not set. Please create a .env file or set the variable.")
+ return api_key
+
+def parse_llm_answer(response_text: str) -> list[int] | None:
+ """
+ Parses the LLM response text to extract integer answers within tags.
+ Handles potential newlines within the tags and comma-separated values for multiple answers.
+
+ Args:
+ response_text (str): The raw text response from the LLM.
+
+ Returns:
+ list[int] | None: A list of integers representing the parsed answer(s),
+ or None if parsing fails (no tag found, non-integer content).
+ """
+ if not response_text:
+ return None
+
+ # Regex to find content within ..., allowing for newlines (re.DOTALL)
+ # It captures the content inside the tags.
+ match = re.search(r'(.*?)', response_text, re.DOTALL | re.IGNORECASE)
+
+ if match:
+ extracted_content = match.group(1).strip()
+ if not extracted_content:
+ logging.warning(f"Found tag but content is empty.")
+ return None # Empty content within tags
+
+ # Split by comma and strip whitespace for each potential number
+ potential_answers = [item.strip() for item in extracted_content.split(',')]
+
+ parsed_answers = []
+ valid = True
+ for ans_str in potential_answers:
+ if not ans_str: continue # Skip empty strings resulting from trailing commas etc.
+ try:
+ # Attempt to convert to integer
+ parsed_answers.append(int(ans_str))
+ except ValueError:
+ logging.warning(f"Could not parse '{ans_str}' as an integer within tag. Content: '{extracted_content}'")
+ valid = False
+ break # Stop parsing this tag content if any part is invalid
+
+ if valid and parsed_answers:
+ # Return sorted list for consistent comparison later
+ return sorted(parsed_answers)
+ else:
+ # Parsing failed or resulted in empty list after validation
+ return None
+ else:
+ # Fallback: Try to find numbers directly if tags are missing
+ logging.warning(f"Could not find tag in response: '{response_text[:100]}...'. Attempting fallback parsing.")
+ # Regex to find one or more digits, potentially separated by commas and whitespace
+ # This is less precise and might pick up unintended numbers.
+ numbers = re.findall(r'\b\d+\b', response_text)
+ if numbers:
+ try:
+ parsed_answers = sorted([int(n) for n in numbers])
+ logging.info(f"Fallback parsing extracted: {parsed_answers}")
+ return parsed_answers
+ except ValueError:
+ logging.warning(f"Fallback parsing failed to convert found numbers: {numbers}")
+ return None # Found digits but couldn't convert all
+ else:
+ logging.warning(f"Fallback parsing found no digits.")
+ return None # Tag not found and no digits found
+
+# Example Usage (for testing)
+if __name__ == '__main__':
+ test_responses = [
+ "Some text before 2 and after.",
+ "Blah blah 1 blah",
+ "1,3",
+ " 4 , 2 end",
+ "\n 3 \n",
+ "\n 1,\n 4 \n",
+ "No answer tag here.",
+ "",
+ " ",
+ "abc",
+ "1, abc",
+ "1, ",
+ ",2",
+ None,
+ ""
+ ]
+
+ for resp in test_responses:
+ parsed = parse_llm_answer(resp)
+ print(f"Response: '{str(resp)[:50]}...' -> Parsed: {parsed}")
+
+ # Test API key loading (will raise error if .env or env var not set)
+ # try:
+ # key = load_api_key()
+ # print(f"\nAPI Key loaded successfully (partially hidden): {key[:4]}...{key[-4:]}")
+ # except ValueError as e:
+ # print(f"\nError loading API key: {e}")