From eb4878f05f9b4b60a71cf17829e32771cc674ddc Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Mon, 4 Dec 2023 23:34:46 -0800 Subject: [PATCH 1/9] auto rater, sample data and prompt engineering --- example/autorate/auto-rater.ipynb | 4698 +++++++++++++++++++++ example/autorate/data/Chapter 5 Rome.docx | Bin 0 -> 1942873 bytes example/autorate/data/rome.txt | 497 +++ 3 files changed, 5195 insertions(+) create mode 100644 example/autorate/auto-rater.ipynb create mode 100644 example/autorate/data/Chapter 5 Rome.docx create mode 100644 example/autorate/data/rome.txt diff --git a/example/autorate/auto-rater.ipynb b/example/autorate/auto-rater.ipynb new file mode 100644 index 0000000..f0a64a4 --- /dev/null +++ b/example/autorate/auto-rater.ipynb @@ -0,0 +1,4698 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "8e97c809-9637-4bcc-b1bf-d970ef8758e4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: openai in /opt/conda/envs/pykoi/lib/python3.10/site-packages (0.27.8)\n", + "Requirement already satisfied: requests>=2.20 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from openai) (2.31.0)\n", + "Requirement already satisfied: tqdm in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from openai) (4.66.1)\n", + "Requirement already satisfied: aiohttp in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from openai) (3.8.6)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (3.3.1)\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (3.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (2.0.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (2023.7.22)\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (23.1.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (6.0.4)\n", + "Requirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (4.0.3)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.9.2)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.4.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.3.1)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Since the GPL-licensed package `unidecode` is not installed, using Python's `unicodedata` package which yields worse results.\n" + ] + } + ], + "source": [ + "! pip install openai\n", + "import dataclasses\n", + "import logging\n", + "import math\n", + "import ast\n", + "import re\n", + "import os\n", + "import io\n", + "import sys\n", + "import time\n", + "import json\n", + "import tqdm\n", + "import copy\n", + "import openai\n", + "import pandas as pd\n", + "\n", + "from typing import Optional, Sequence, Union\n", + "from cleantext import clean\n", + "import nltk\n", + "from nltk.corpus import stopwords\n", + "from nltk.stem import SnowballStemmer\n", + "from nltk.tokenize import word_tokenize\n", + "\n", + "# from openai import openai_object\n", + "openai.api_key = \"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\"" + ] + }, + { + "cell_type": "markdown", + "id": "ef295321-5c2d-44b4-92f1-202fb42a7f8c", + "metadata": {}, + "source": [ + "## Load data " + ] + }, + { + "cell_type": "markdown", + "id": "70cdc7e3-b93d-4ef9-ab0d-e4e218b1c75d", + "metadata": {}, + "source": [ + "#### Augmented Question and Answer pairs with row 0\\~R_AUG-1 augmented from Q0, row R_AUG\\~2*R_AUG-1 augmented from Q1... " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "2e76d16d-e586-48c0-8f07-d56a62560d27", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
_question_answer
0Can I initiate the green card process if my H-...Yes, the employer can initiate the green card ...
1If I have a masters in engineering management ...Yes, the employer can begin the green card pro...
2Do I have the option to initiate the green car...Yes, the employer can commence the green card ...
3What is the eligibility and process for portin...It is possible to upgrade from EB-3 to EB-2 as...
4What is the criteria for and the steps of port...It is possible to move up from EB-3 to EB-2 as...
.........
270Can my wife take advantage of EB2 processing w...There is no special status for OTs like there ...
271Does my wife's OT degree make her eligible for...OTs do not have the same privileges as physica...
272I have three years of work experience and am p...Yes, you can apply for an EB-2 green card once...
273I have been working in the IT field for three ...Yes, you can apply for an EB-2 green card when...
274I have three years of experience in the IT fie...Yes, you can apply for an EB-2 green card when...
\n", + "

275 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " _question \\\n", + "0 Can I initiate the green card process if my H-... \n", + "1 If I have a masters in engineering management ... \n", + "2 Do I have the option to initiate the green car... \n", + "3 What is the eligibility and process for portin... \n", + "4 What is the criteria for and the steps of port... \n", + ".. ... \n", + "270 Can my wife take advantage of EB2 processing w... \n", + "271 Does my wife's OT degree make her eligible for... \n", + "272 I have three years of work experience and am p... \n", + "273 I have been working in the IT field for three ... \n", + "274 I have three years of experience in the IT fie... \n", + "\n", + " _answer \n", + "0 Yes, the employer can initiate the green card ... \n", + "1 Yes, the employer can begin the green card pro... \n", + "2 Yes, the employer can commence the green card ... \n", + "3 It is possible to upgrade from EB-3 to EB-2 as... \n", + "4 It is possible to move up from EB-3 to EB-2 as... \n", + ".. ... \n", + "270 There is no special status for OTs like there ... \n", + "271 OTs do not have the same privileges as physica... \n", + "272 Yes, you can apply for an EB-2 green card once... \n", + "273 Yes, you can apply for an EB-2 green card when... \n", + "274 Yes, you can apply for an EB-2 green card when... \n", + "\n", + "[275 rows x 2 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# current_directory = os.getcwd()\n", + "qaa = pd.read_csv(\"data/raw_input/immigration_qa_augment.csv\", encoding = \"utf8\") # LLMs usually requires input text data with character encoding utf8\n", + "qaa" + ] + }, + { + "cell_type": "markdown", + "id": "d3072fec-9ebc-4e07-b2d1-0337a9c3c86c", + "metadata": {}, + "source": [ + "### Randomly select rows from the augmented qa pairs" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "e1bcdf12-e7fa-4f17-bbb1-5b7118889572", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "R_AUG = 3 # each question and answer pair is augmented to R_AUG pairs\n", + "N_AUG_SEL = 90\n", + "idx_q_sel = np.random.choice(len(qaa) // R_AUG, N_AUG_SEL, replace=False) # Firt, randomly select N_AUG_SEL distinctive questions \n", + "idx_row_sel = np.random.choice(R_AUG, N_AUG_SEL, replace=True) + idx_q_sel # Second, randomly select an augmented qa pair for each selected question\n", + "\n", + "# alternativaly, randomly sample N_AUG_SEL directly from the augmented data.\n", + "# idx_q_sel = np.random.choice(len(qaa), N_AUG_SEL, replace=False) " + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "dc65cc9e-9105-4663-8fca-93e74f2928ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([65, 61, 72, 69, 54, 67, 78, 58, 29, 90, 70, 44, 83, 45, 14, 1, 80,\n", + " 40, 50, 0, 42, 86, 56, 28, 8, 89, 10, 35, 3, 53, 41, 81, 62, 18,\n", + " 74, 17, 60, 30, 63, 71, 7, 64, 76, 13, 73, 36, 32, 34, 85, 5, 15,\n", + " 4, 68, 77, 27, 31, 43, 66, 49, 22, 52, 47, 20, 39, 88, 87, 2, 12,\n", + " 6, 23, 9, 59, 75, 38, 24, 26, 84, 82, 21, 57, 33, 25, 37, 19, 51,\n", + " 48, 79, 46, 55, 16])" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "idx_q_sel\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "cf2d4e58-6136-4217-9800-87a2b907fa1d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([67, 62, 72, 71, 54, 68, 79, 60, 31, 92, 70, 45, 84, 47, 14, 3, 82,\n", + " 41, 51, 1, 43, 86, 57, 28, 8, 89, 10, 37, 5, 54, 42, 83, 64, 19,\n", + " 74, 18, 61, 32, 65, 73, 8, 64, 77, 14, 75, 38, 32, 35, 87, 6, 15,\n", + " 4, 69, 77, 27, 31, 45, 68, 50, 22, 52, 47, 21, 40, 89, 89, 4, 12,\n", + " 7, 24, 9, 61, 76, 40, 24, 26, 84, 84, 22, 57, 34, 25, 39, 20, 53,\n", + " 50, 79, 47, 57, 17])" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "idx_row_sel" + ] + }, + { + "cell_type": "markdown", + "id": "2c00dac5-3f06-488f-80db-c1b1910797c7", + "metadata": {}, + "source": [ + "### Create negative samples by giving unrelated answers to immigration" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "75916996-e39a-4acc-b60d-586d110a2558", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "3716b100-4ffa-4e61-bbaa-e72baca89e82", + "metadata": {}, + "source": [ + "### Creat negative dataset by shifting the answers in augmented data. So the answer is inaccurate but related to immigration." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "18fba436-e42a-4c8f-b381-0cc39109843d", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "8ef6e4dc-424c-4c6d-b94b-73e32e318420", + "metadata": {}, + "source": [ + "### Load original question answer pairs" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "2acbdd07-bf19-4c8c-926d-2888ea2023df", + "metadata": {}, + "outputs": [], + "source": [ + "qaa = pd.read_csv(\"data/raw_input/qd_immigration.csv\", encoding = \"utf8\")" + ] + }, + { + "cell_type": "markdown", + "id": "95c5b6dc-d862-41cb-88dc-82cead6a9d9b", + "metadata": {}, + "source": [ + "### prompt engineering that evaluate the correctness" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "06b1172c-0e7d-4551-8ba7-457581be2bb5", + "metadata": {}, + "outputs": [], + "source": [ + "prompt = \"\"\"you act as an expert evaluater who evaluate two answers to a question.\n", + "You'll be given a function grading_function which you'll call for each provided question and answer to submit your reasoning and score for the correctness, comprehensiveness and readability of the answer. \n", + "Please make sure you always call the function to submit result\n", + "\n", + "\n", + " Please act as an impartial judge and evaluate the quality of the provided answer which attempts to answer the provided question based on a provided context.\n", + "\n", + "You'll be given a function grading_function which you'll call for each provided context, question and answer to submit your reasoning and score for the correctness, comprehensiveness and readability of the answer. \n", + "Please make sure you always call the function to submit result\n", + "\n", + "\n", + " Below is your grading rubric: \n", + "\n", + "- Correctness: If the answer correctly answer the question, below are the details for different scores:\n", + " - Score 0: the answer is completely incorrect, doesn’t mention anything about the question or is completely contrary to the correct answer.\n", + " - Example: when asked “How to terminate a databricks cluster”, the answer is empty string, or content that’s completely irrelevant, or sorry I don’t know the answer.\n", + " - Score 0: the answer provides some relevance to the question and answer one aspect of the question correctly.\n", + " - Example:\n", + " - Question: How to terminate a databricks cluster\n", + " - Answer: Databricks cluster is a cloud-based computing environment that allows users to process big data and run distributed data processing tasks efficiently.\n", + " - Or answer: In the Databricks workspace, navigate to the \"Clusters\" tab. And then this is a hard question that I need to think more about it\n", + " - Score 1: the answer mostly answer the question but is missing or hallucinating on one critical aspect.\n", + " - Example:\n", + " - Question: How to terminate a databricks cluster”\n", + " - Answer: “In the Databricks workspace, navigate to the \"Clusters\" tab.\n", + " Find the cluster you want to terminate from the list of active clusters.\n", + " And then you’ll find a button to terminate all clusters at once”\n", + " - Score 1: the answer correctly answer the question and not missing any major aspect\n", + " - Example:\n", + " - Question: How to terminate a databricks cluster\n", + " - Answer: In the Databricks workspace, navigate to the \"Clusters\" tab.\n", + " Find the cluster you want to terminate from the list of active clusters.\n", + " Click on the down-arrow next to the cluster name to open the cluster details.\n", + " Click on the \"Terminate\" button. A confirmation dialog will appear. Click \"Terminate\" again to confirm the action.”\n", + "- Comprehensiveness: How comprehensive is the answer, does it fully answer all aspects of the question and provide comprehensive explanation and other necessary information. Below are the details for different scores:\n", + " - Score 0: typically if the answer is completely incorrect, then the comprehensiveness is also zero score.\n", + " - Score 0: if the answer is correct but too short to fully answer the question, then we can give score 1 for comprehensiveness.\n", + " - Example:\n", + " - Question: How to use databricks API to create a cluster?\n", + " - Answer: First, you will need a Databricks access token with the appropriate permissions. You can generate this token through the Databricks UI under the 'User Settings' option. And then (the rest is missing)\n", + " - Score 1: the answer is correct and roughly answer the main aspects of the question, but it’s missing description about details. Or is completely missing details about one minor aspect.\n", + " - Example:\n", + " - Question: How to use databricks API to create a cluster?\n", + " - Answer: You will need a Databricks access token with the appropriate permissions. Then you’ll need to set up the request URL, then you can make the HTTP Request. Then you can handle the request response.\n", + " - Example:\n", + " - Question: How to use databricks API to create a cluster?\n", + " - Answer: You will need a Databricks access token with the appropriate permissions. Then you’ll need to set up the request URL, then you can make the HTTP Request. Then you can handle the request response.\n", + " - Score 1: the answer is correct, and covers all the main aspects of the question\n", + "- Readability: How readable is the answer, does it have redundant information or incomplete information that hurts the readability of the answer.\n", + " - Score 0: the answer is completely unreadable, e.g. fully of symbols that’s hard to read; e.g. keeps repeating the words that it’s very hard to understand the meaning of the paragraph. No meaningful information can be extracted from the answer.\n", + " - Score 0: the answer is slightly readable, there are irrelevant symbols or repeated words, but it can roughly form a meaningful sentence that cover some aspects of the answer.\n", + " - Example:\n", + " - Question: How to use databricks API to create a cluster?\n", + " - Answer: You you you you you you will need a Databricks access token with the appropriate permissions. And then then you’ll need to set up the request URL, then you can make the HTTP Request. Then Then Then Then Then Then Then Then Then\n", + " - Score 1: the answer is correct and mostly readable, but there is one obvious piece that’s affecting the readability (mentioning of irrelevant pieces, repeated words)\n", + " - Example:\n", + " - Question: How to terminate a databricks cluster\n", + " - Answer: In the Databricks workspace, navigate to the \"Clusters\" tab.\n", + " Find the cluster you want to terminate from the list of active clusters.\n", + " Click on the down-arrow next to the cluster name to open the cluster details.\n", + " Click on the \"Terminate\" button…………………………………..\n", + " A confirmation dialog will appear. Click \"Terminate\" again to confirm the action.\n", + " - Score 1: the answer is correct and reader friendly, no obvious piece that affect readability.\n", + "\n", + "\n", + "\n", + "Provided question:\n", + "xxx\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "id": "604c831b-de89-4fb7-854f-4845df3bade9", + "metadata": {}, + "source": [ + "### prompt engineering that evaluate the F1 score" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "42ed8430-01fe-4636-b475-4d68ec4035dd", + "metadata": {}, + "outputs": [], + "source": [ + "prompt = \"\"\"you act as an expert evaluater who evaluate two answers to a question. The evaluation is based on instruction following\n", + "You'll be given a function F1 score which you'll call to submit your score based on the F1 score. \n", + "Please make sure you always call the function to submit result. Your score should be an integer ranging 0 to 3" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "60271f90-b458-475e-a013-02331cae762a", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "target_df = pd.read_csv(\"pre_grade_datasets/pre_grade_doc_qa_mpt_30b_chat.csv\")\n", + "target_df = target_df.head(10)\n", + "\n", + "from databricks.labs.doc_qa.evaluators.templated_evaluator import OpenAIEvaluator, AnthropicEvaluator, ParameterDef, NoRetryPolicy\n", + "\n", + "output_parameters = [\n", + " ParameterDef(\"reasoning_for_correctness\", \"string\"),\n", + " ParameterDef(\"correctness\", \"number\", display_name=\"Score for correctness\"),\n", + " ParameterDef(\"reasoning_for_comprehensiveness\", \"string\"),\n", + " ParameterDef(\"comprehensiveness\", \"number\", display_name=\"Score for comprehensiveness\"),\n", + " ParameterDef(\"reasoning_for_readability\", \"string\"),\n", + " ParameterDef(\"readability\", \"number\", display_name=\"Score for readability\"),\n", + "]\n", + "\n", + "anthropic_claude_2_evaluator = AnthropicEvaluator(model='claude-2', temperature=0.1, \n", + " grading_prompt_tempate=anthropic_grading_prompt, input_columns=[\"question\", \"answer\", \"context\"], \n", + " output_parameters=output_parameters, retry_policy=retry_policy)\n", + "eval_result = anthropic_claude_2_evaluator.run_eval(dataset_df=target_df, concurrency=20, catch_error=catch_error)\n", + "result_df = eval_result.to_dataframe()\n", + "print(eval_result.summary())\n", + "result_df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c203777d-6a4b-412f-a39f-5fbe42cac15c", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "03831638-54f7-4091-b220-fd636f479eaa", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5c7298b5-96ff-4256-b886-12938938e8f3", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "02ed069e-128e-4b8f-99d0-c980f3ff1a4a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "6fb87057-8c10-478c-850b-1342b5cc3064", + "metadata": { + "jp-MarkdownHeadingCollapsed": true + }, + "source": [ + "#### Check the number of missing values" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e2377b09-ecfb-47af-ba20-d8914f19f732", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Unnamed: 0 0\n", + "ID 0\n", + "Question 0\n", + "Answer 0\n", + "Vote Status 0\n", + "Timestamp 96\n", + "dtype: int64\n" + ] + } + ], + "source": [ + "print(qaa.isna().sum())" + ] + }, + { + "cell_type": "markdown", + "id": "2d4cd094-ae42-48ad-8c5a-cb027babc38b", + "metadata": {}, + "source": [ + "## Data preprocessing" + ] + }, + { + "cell_type": "markdown", + "id": "a00b6aef-78ec-4fd6-919a-a2f24d97eb6a", + "metadata": {}, + "source": [ + "#### Stop words removal and stemming (Optional)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "dcebd404-ead1-4fb5-adb9-1970c8a0268b", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[nltk_data] Downloading package punkt to /home/ubuntu/nltk_data...\n", + "[nltk_data] Package punkt is already up-to-date!\n", + "[nltk_data] Downloading package stopwords to /home/ubuntu/nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nltk.download('punkt')\n", + "nltk.download('stopwords')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "5c51d2fc-125b-4041-82f1-1e58196fcd82", + "metadata": {}, + "outputs": [], + "source": [ + "stop = stopwords.words('english')\n", + "# These words are important for the problem. Exclude them from the stop words.\n", + "excluding = ['against', 'not', 'don', \"don't\",'ain', 'aren', \"aren't\", 'couldn', \"couldn't\",\n", + " 'didn', \"didn't\", 'doesn', \"doesn't\", 'hadn', \"hadn't\", 'hasn', \"hasn't\", \n", + " 'haven', \"haven't\", 'isn', \"isn't\", 'mightn', \"mightn't\", 'mustn', \"mustn't\",\n", + " 'needn', \"needn't\",'shouldn', \"shouldn't\", 'wasn', \"wasn't\", 'weren', \n", + " \"weren't\", 'won', \"won't\", 'wouldn', \"wouldn't\"]\n", + "# New stop word list\n", + "stop_words = [word for word in stop if word not in excluding]\n", + "\n", + "snow = SnowballStemmer('english')\n", + "\n", + "def process_text(texts): \n", + " final_text_list=[]\n", + " for sent in texts:\n", + " \n", + " # Check if the sentence is a missing value\n", + " if isinstance(sent, str) == False:\n", + " sent = \"\"\n", + " \n", + " filtered_sentence=[]\n", + " \n", + " sent = sent.lower() # Lowercase \n", + " sent = sent.strip() # Remove leading/trailing whitespace\n", + " sent = re.sub('\\s+', ' ', sent) # Remove extra space and tabs\n", + " sent = re.compile('<.*?>').sub('', sent) # Remove HTML tags/markups:\n", + "\n", + " for w in word_tokenize(sent):\n", + " # We are applying some custom filtering here, feel free to try different things\n", + " # Check if it is not numeric and its length>2 and not in stop words\n", + " if(not w.isnumeric()) and (len(w)>2) and (w not in stop_words): \n", + " # Stem and add to filtered list\n", + " filtered_sentence.append(snow.stem(w))\n", + " final_string = \" \".join(filtered_sentence) #final string of cleaned words\n", + " \n", + " final_text_list.append(final_string)\n", + " \n", + " return final_text_list\n", + "\n", + "stop_stem=False\n", + "if stop_stem:\n", + " question_l_raw, answer_l_raw = qaa[\"Question\"].to_list(), qaa[\"Answer\"].to_list()\n", + " qaa[\"Question\"] = process_text(question_l_raw)\n", + " qaa[\"Answer\"] = process_text(answer_l_raw)" + ] + }, + { + "cell_type": "markdown", + "id": "e72db19d-b1dc-4869-9ae1-dd24c2474525", + "metadata": {}, + "source": [ + "#### Personal Identification Information (PII) removal and other preprocessing using cleantext" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "3390bf56-1a0b-4b29-ac64-fa88f8b62416", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: clean-text in /opt/conda/envs/pykoi/lib/python3.10/site-packages (0.6.0)\n", + "Requirement already satisfied: emoji<2.0.0,>=1.0.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from clean-text) (1.7.0)\n", + "Requirement already satisfied: ftfy<7.0,>=6.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from clean-text) (6.1.1)\n", + "Requirement already satisfied: wcwidth>=0.2.5 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from ftfy<7.0,>=6.0->clean-text) (0.2.8)\n" + ] + } + ], + "source": [ + "! pip install clean-text\n", + "f_clean = lambda qaa_pair_raw : clean(qaa_pair_raw,\n", + " fix_unicode=True, # fix various unicode errors\n", + " to_ascii=True, # transliterate to closest ASCII representation\n", + " lower=True, # lowercase text\n", + " no_line_breaks=False, # fully strip line breaks as opposed to only normalizing them\n", + " no_urls=False, # replace all URLs with a special token\n", + " no_emails=False, # replace all email addresses with a special token\n", + " no_phone_numbers=False, # replace all phone numbers with a special token\n", + " no_numbers=False, # replace all numbers with a special token\n", + " no_digits=False, # replace all digits with a special token\n", + " no_currency_symbols=False, # replace all currency symbols with a special token\n", + " no_punct=False, # remove punctuations\n", + " replace_with_punct=\"\", # instead of removing punctuations you may replace them\n", + " replace_with_url=\"\",\n", + " replace_with_email=\"\",\n", + " replace_with_phone_number=\"\",\n", + " replace_with_number=\"\",\n", + " replace_with_digit=\"0\",\n", + " replace_with_currency_symbol=\"\",\n", + " lang=\"en\" # set to 'de' for German special handling\n", + ")\n", + "#import pdb; pdb.set_trace()\n", + "question_l_raw = qaa[\"Question\"].to_list()\n", + "question_l = [f_clean(p) for p in question_l_raw]\n", + "\n", + "answer_l_raw = qaa[\"Answer\"].to_list()\n", + "answer_l = [f_clean(p) for p in answer_l_raw]\n", + "\n", + "\n", + "qaa[\"Question\"] = question_l\n", + "qaa[\"Answer\"] = answer_l\n" + ] + }, + { + "cell_type": "markdown", + "id": "0a48d15f-0698-41c0-b26a-58d650ddf8fc", + "metadata": {}, + "source": [ + "#### Dataset customized clenaup" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "59344b41-74e7-41ae-aea9-e1c915149193", + "metadata": {}, + "outputs": [], + "source": [ + "answer_l_raw = qaa[\"Answer\"].to_list()\n", + "qaa[\"Answer\"] = [re.compile(r'<.*?>|More\\.\\.\\.', flags=re.IGNORECASE).sub('', p) for p in answer_l_raw] # Remove HTML tags/markups: " + ] + }, + { + "cell_type": "markdown", + "id": "0d478a24-2a09-4725-9a25-1692f8f7e0d5", + "metadata": {}, + "source": [ + "#### Data structure conversion" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "7b64e1ff-b6da-45c4-af28-99ec5badcc95", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "96\n", + "[{'Question': 'h-1b to eb-2 process . i would like to know if i have an advanced degree (masters engineering management) and my employer filed my h-1b and if the lottery is picked can i initiate the green card process? i also heard that there is a minimum salary cap for eb-2 advanced degree.', 'Answer': 'the employer can start the green card process at any time, even before you join. to see the salary figures by county and profession, you can review this link -https://www.flcdatacenter.com/'}, {'Question': 'eligibility for and the process of eb-3 to eb-2 porting . can you talk about this upgrade process from eb3 to eb2 for pending i-485? does it need another i-485 application or just a letter to uscis?', 'Answer': \"you can always go up and you can always go down as long as your perm was filed as an eb-2. if you filed your prm as an eb-3 then you're not going to be able to upgrade to eb-2. but if your perm was filed as an eb-2 you can downgrade i-140 eb-3. you can go back upgrade toeb-2if you already have aneb-2approval. you can file a downgrade second case aseb-3with the sameperm.faq in detail...\"}, {'Question': 'how can i qualify for eb-1c/international managers or executives . i was in usa on h1b for 11 yrs until august 2019 as senior software engineer and moved/transferred to canada on september 2019 as software development manager, managing 5 direct reports plus 4 second level reports with the same company in usa and canada. and now promoted as director, software development projects support and maintenance, before completing one year as manager. have i-140 approved and priority date is 2012 july.
1.what is my success rate of getting l1a
2. also need to re-apply my green card in eb1c, do i need to be in usa or when i am in canada my company can apply for this. and upon eb1c i-140 approval can i get l1a and move to usa
3. is this the correct time to apply eb1c in the next couple of months when 1 year completes or should i wait for visa ban to complete.', 'Answer': \"1. please discuss your job description that is intended in the foreign country outside usa with your lawyers. make sure you plan for it from day one because if you try to plan for it a year down the line you won't succeed.\"}, {'Question': \"downgrading from eb-2 to eb-3 . my wife and i are currently on ead's since feb 2012 when the dates became current for our priority date and we were able to apply for the i-485. she is the primary applicant and i am the dependent on her application. since 2012 the ead/ap card is being renewed every 2 years. with the eb3 category now going ahead of eb2 does it make sense for her to downgrade to eb3 - apply for i-140 under eb3. i believe it takes 6 months for approval so we would essentially be doing this preemptively in anticipation of our date becoming current under eb3 in 6+ months.\", 'Answer': 'i see no problem applying for eb-3 and then using whichever one is faster when the time comes.'}, {'Question': \"how to get h-1b approved for three years, not shorter duration . 1. i got my h1b approved for a period of one year only and expires on oct 27th, 2019. i work through a consultancy. any precautions i can take in the future which can help me getting the h1b approved for 3 years in the upcoming h1b extension after oct 27th, 2019.
2. any particular documents needed for getting the h1b approved for 3 years?
3. if i go for stamping, do i need to be careful with social media at the port of entry? any tips or recommendations you can give with reference to social media during port of entry?
4. my eb2 priority date is feb 4th, 2015 and i'm planning to marry a girl who is a nepal citizen and she's on opt right now. can i move my priority date to eb2 nepal category after marriage? if yes, what would be my next steps - how soon can i file for i-485 interview?\", 'Answer': '1. typically the only way you can get three year extension is if you can prove that the project will go on for three years.'}, {'Question': 'options to stay in the usa after expiration of h-1b . 1. i am currently in h1-b more than 10 years in the usa and i have approved i-140 priority date mar 2011 - eb2. my current employment is getting over in 3 weeks. and my current h1-b and i-94 expires in mid-august 2019. my question is if i am not able to find another job within my h1-b and i-94 expires on mid august 2019. what are the options available for me to legally stay in the usa after my h1-b and i-94 expires? i have own house. is there an exceptional case we can file gc ead?
2. without a job how many days i can stay in usa before my i-94 expires using i-140?', 'Answer': \"1. i don't think you would get the tourist visa or tourist status but you can apply for it.\"}, {'Question': 'downgrading a case from eb-2 to eb-3 for priority date advantage . i am with my current employer since 2008. my gc is filled in eb2 with aug-2010 priority date. only i-140 is approved so far.
1) can my employer file me under eb-3 concurrently without affecting my existing eb-2 filling?
2) if yes then what is the procedure for that? do i have to do my labor and i-140 once again?', 'Answer': '1. your eb-2 does not get affected. you can file eb-3/i-140 and i believe you can file a i-485 also if your dates are current.'}, {'Question': 'eb-2 approved - applying for eb-3 . i applied for eb3 in 2011 and port to eb2, now eb3 dates are moving forward and if it reach to my priority date am i still eligible for eb3 as i initially applied for or do i need to downgrade to eb3. will there be any questions raised?', 'Answer': 'this is mostly a question of procedure and policy. the uscis has been indicating that if you have only one i-140 approved under eb-2 but you want to file under eb-3 you have to file another i-140 using the copy of the same labor certification - perm application and get an eb-3 approval first.'}, {'Question': \"not worked for green card sponsoring company fraud implication for naturalization/citizenship . in summary,
* i worked for the same company from 2004 to 2014 (2004 - 2011 in us on h1b, and 2011-2014 in india)
* but, after green card, i did not work for the company in us.
* i don't have even a single paycheck from us company after receiving gc.
* since then, i have been working in a job with same job description that my gc was filed for.
* all other history is clean. i have two us born children, always paid taxes on time, no legal cases.
i heard from reliable sources that under current circumstances, my case will be marked as fraud and there is a 99% chance that they will revoke my gc and deport me, as i didn't stay with the employer that sponsored my gc.
questions
* should i be really concerned?
* what are my options?
* i have the option of going back to the same employer now. does that help?
* if my wife applies for naturalization instead of me, is that going to be any different?\", 'Answer': \"this is a difficult situation. i would argue that this is fine because once you went and got the green card you took the job and you are just working for the company's operations outside the usa temporarily. so i think it's going to be a touch and go, but that is what i would argue. you definitely need to take a lawyer with you.\"}, {'Question': 'how can i downgrade from eb-2 to eb-3 and consequences . i have i-140 approved in eb2, priority date is 2010. when date become current for eb3, i want to downgrade from eb2 to eb3 (i know i have to only refile i-140 and i-485 concurrent). what will happen if uscis denied newly filed i-140 (eb3)? can i-485 also denied? if newly filed i-140 (eb3) denied, can i used my previously approved i-140 (eb2)?', 'Answer': \"if we have an eb-2 approved i-140 we apply for an eb-3 approval on the same form or you can file eb-3 i-140 and i-485 concurrently if the dates are current. if you file a i-485 that is prematurely filed when the priority date of eb-2 is not current, if eb-3 is denied on which basis you had filed the i-485 then the i-485 will also be denied. i would want your lawyers to review your case very carefully. make sure that you don't have any other issues. if the second eb-3 filing gets denied it should not have any impact on the already approved i-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"}]\n" + ] + } + ], + "source": [ + "qaa_list = qaa[[\"Question\", \"Answer\"]].to_dict('records')\n", + "print(len(qaa_list))\n", + "print(qaa_list[:10])" + ] + }, + { + "cell_type": "markdown", + "id": "2b415e10-e725-4183-bf92-73b8fe0488d4", + "metadata": {}, + "source": [ + "### Prompt Engineering" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "7848e9a4-22e4-4e90-8ef6-09d634de1b33", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "294\n" + ] + } + ], + "source": [ + "prompts= \"\"\"Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\"\"\"\n", + "print(len(prompts))" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "36ada685-4c31-4356-99f9-1f82bf3f17cf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "len(qaa_list_encoded): 96\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"h-1b to eb-2 process . i would like to know if i have an advanced degree (masters engineering management) and my employer filed my h-1b and if the lottery is picked can i initiate the green card process? i also heard that there is a minimum salary cap for eb-2 advanced degree.\",\n", + "\"_answer\": \"the employer can start the green card process at any time, even before you join. to see the salary figures by county and profession, you can review this link -https://www.flcdatacenter.com/\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"eligibility for and the process of eb-3 to eb-2 porting . can you talk about this upgrade process from eb3 to eb2 for pending i-485? does it need another i-485 application or just a letter to uscis?\",\n", + "\"_answer\": \"you can always go up and you can always go down as long as your perm was filed as an eb-2. if you filed your prm as an eb-3 then you're not going to be able to upgrade to eb-2. but if your perm was filed as an eb-2 you can downgrade i-140 eb-3. you can go back upgrade toeb-2if you already have aneb-2approval. you can file a downgrade second case aseb-3with the sameperm.faq in detail...\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"how can i qualify for eb-1c/international managers or executives . i was in usa on h1b for 11 yrs until august 2019 as senior software engineer and moved/transferred to canada on september 2019 as software development manager, managing 5 direct reports plus 4 second level reports with the same company in usa and canada. and now promoted as director, software development projects support and maintenance, before completing one year as manager. have i-140 approved and priority date is 2012 july.
1.what is my success rate of getting l1a
2. also need to re-apply my green card in eb1c, do i need to be in usa or when i am in canada my company can apply for this. and upon eb1c i-140 approval can i get l1a and move to usa
3. is this the correct time to apply eb1c in the next couple of months when 1 year completes or should i wait for visa ban to complete.\",\n", + "\"_answer\": \"1. please discuss your job description that is intended in the foreign country outside usa with your lawyers. make sure you plan for it from day one because if you try to plan for it a year down the line you won't succeed.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"downgrading from eb-2 to eb-3 . my wife and i are currently on ead's since feb 2012 when the dates became current for our priority date and we were able to apply for the i-485. she is the primary applicant and i am the dependent on her application. since 2012 the ead/ap card is being renewed every 2 years. with the eb3 category now going ahead of eb2 does it make sense for her to downgrade to eb3 - apply for i-140 under eb3. i believe it takes 6 months for approval so we would essentially be doing this preemptively in anticipation of our date becoming current under eb3 in 6+ months.\",\n", + "\"_answer\": \"i see no problem applying for eb-3 and then using whichever one is faster when the time comes.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"how to get h-1b approved for three years, not shorter duration . 1. i got my h1b approved for a period of one year only and expires on oct 27th, 2019. i work through a consultancy. any precautions i can take in the future which can help me getting the h1b approved for 3 years in the upcoming h1b extension after oct 27th, 2019.
2. any particular documents needed for getting the h1b approved for 3 years?
3. if i go for stamping, do i need to be careful with social media at the port of entry? any tips or recommendations you can give with reference to social media during port of entry?
4. my eb2 priority date is feb 4th, 2015 and i'm planning to marry a girl who is a nepal citizen and she's on opt right now. can i move my priority date to eb2 nepal category after marriage? if yes, what would be my next steps - how soon can i file for i-485 interview?\",\n", + "\"_answer\": \"1. typically the only way you can get three year extension is if you can prove that the project will go on for three years.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"options to stay in the usa after expiration of h-1b . 1. i am currently in h1-b more than 10 years in the usa and i have approved i-140 priority date mar 2011 - eb2. my current employment is getting over in 3 weeks. and my current h1-b and i-94 expires in mid-august 2019. my question is if i am not able to find another job within my h1-b and i-94 expires on mid august 2019. what are the options available for me to legally stay in the usa after my h1-b and i-94 expires? i have own house. is there an exceptional case we can file gc ead?
2. without a job how many days i can stay in usa before my i-94 expires using i-140?\",\n", + "\"_answer\": \"1. i don't think you would get the tourist visa or tourist status but you can apply for it.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"downgrading a case from eb-2 to eb-3 for priority date advantage . i am with my current employer since 2008. my gc is filled in eb2 with aug-2010 priority date. only i-140 is approved so far.
1) can my employer file me under eb-3 concurrently without affecting my existing eb-2 filling?
2) if yes then what is the procedure for that? do i have to do my labor and i-140 once again?\",\n", + "\"_answer\": \"1. your eb-2 does not get affected. you can file eb-3/i-140 and i believe you can file a i-485 also if your dates are current.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"eb-2 approved - applying for eb-3 . i applied for eb3 in 2011 and port to eb2, now eb3 dates are moving forward and if it reach to my priority date am i still eligible for eb3 as i initially applied for or do i need to downgrade to eb3. will there be any questions raised?\",\n", + "\"_answer\": \"this is mostly a question of procedure and policy. the uscis has been indicating that if you have only one i-140 approved under eb-2 but you want to file under eb-3 you have to file another i-140 using the copy of the same labor certification - perm application and get an eb-3 approval first.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"not worked for green card sponsoring company fraud implication for naturalization/citizenship . in summary,
* i worked for the same company from 2004 to 2014 (2004 - 2011 in us on h1b, and 2011-2014 in india)
* but, after green card, i did not work for the company in us.
* i don't have even a single paycheck from us company after receiving gc.
* since then, i have been working in a job with same job description that my gc was filed for.
* all other history is clean. i have two us born children, always paid taxes on time, no legal cases.
i heard from reliable sources that under current circumstances, my case will be marked as fraud and there is a 99% chance that they will revoke my gc and deport me, as i didn't stay with the employer that sponsored my gc.
questions
* should i be really concerned?
* what are my options?
* i have the option of going back to the same employer now. does that help?
* if my wife applies for naturalization instead of me, is that going to be any different?\",\n", + "\"_answer\": \"this is a difficult situation. i would argue that this is fine because once you went and got the green card you took the job and you are just working for the company's operations outside the usa temporarily. so i think it's going to be a touch and go, but that is what i would argue. you definitely need to take a lawyer with you.\"}\n", + "\n", + "\n", + "Paraphrase the below question and answer pair in 3 different ways.\n", + "Try not to repeat the verb for each pair to maximize diversity.\n", + "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", + "Seperate each pair with \"######\" rather than commas.\n", + "\n", + "######\n", + "{\"_question\": \"how can i downgrade from eb-2 to eb-3 and consequences . i have i-140 approved in eb2, priority date is 2010. when date become current for eb3, i want to downgrade from eb2 to eb3 (i know i have to only refile i-140 and i-485 concurrent). what will happen if uscis denied newly filed i-140 (eb3)? can i-485 also denied? if newly filed i-140 (eb3) denied, can i used my previously approved i-140 (eb2)?\",\n", + "\"_answer\": \"if we have an eb-2 approved i-140 we apply for an eb-3 approval on the same form or you can file eb-3 i-140 and i-485 concurrently if the dates are current. if you file a i-485 that is prematurely filed when the priority date of eb-2 is not current, if eb-3 is denied on which basis you had filed the i-485 then the i-485 will also be denied. i would want your lawyers to review your case very carefully. make sure that you don't have any other issues. if the second eb-3 filing gets denied it should not have any impact on the already approved i-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"}\n", + "\n", + "\n" + ] + } + ], + "source": [ + "def encode_prompt_QA(prompts=prompts, QA_list=[]):\n", + " \"\"\"Encode multiple prompt instructions into a single string.\"\"\"\n", + " listof_prompt_QA = []\n", + " for idx, task_dict in enumerate(QA_list):\n", + " single_prompt_QA = prompts+\"\\n\"\n", + " (question, answer) = task_dict[\"Question\"], task_dict[\"Answer\"]\n", + " question = re.sub(r\"\\s+\", \" \", question).strip().rstrip(\":\")\n", + " answer = \"\" if answer.lower() == \"\" else answer\n", + " single_prompt_QA += f\"######\\n\"\n", + " single_prompt_QA += \"{\"\n", + " single_prompt_QA += f\"\\\"_question\\\": \\\"{question}\\\",\\n\"\n", + " single_prompt_QA += f\"\\\"_answer\\\": \\\"{answer}\\\"\"\n", + " single_prompt_QA += \"}\"\n", + " # single_prompt_QA += f\"###\\n\"\n", + " listof_prompt_QA.append(single_prompt_QA)\n", + " return listof_prompt_QA\n", + "\n", + "qaa_list_encoded = encode_prompt_QA(prompts, qaa_list)\n", + "print(\"len(qaa_list_encoded): \", len(qaa_list_encoded))\n", + "for id, qa in enumerate(qaa_list_encoded[:10]):\n", + " print(qa)\n", + " print(\"\\n\")" + ] + }, + { + "cell_type": "markdown", + "id": "011cb89e-9a46-41c4-90fc-1c28f021579f", + "metadata": {}, + "source": [ + "#### Generate synthetic data with low temparature" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "39e8c494-c5a1-41c3-9830-94903bdef3f5", + "metadata": {}, + "outputs": [], + "source": [ + "qaa_augmented_raw = []" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "898c89a3-9bc4-4f26-9057-5edb2ca59ac3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I initiate the green card process if my employer has filed my H-1B and it is selected in the lottery?\",\n", + "\"_answer\": \"Yes, the employer can initiate the green card process at any time, even before you join. To find out the salary figures by county and profession, you can review this link -https://www.flcdatacenter.com/\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my employer has submitted my H-1B and it is picked in the lottery, can I start the green card process?\",\n", + "\"_answer\": \"Yes, the employer can begin the green card process at any point, even before you join. To view the salary figures by county and profession, you can check out this link -https://www.flcdatacenter.com/\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my employer has filed my H-1B and it is chosen in the lottery, can I initiate the green card process?\",\n", + "\"_answer\": \"Yes, the employer can initiate the green card process at any time, even before you join. To find out the salary figures by county and profession, you can look at this link -https://www.flcdatacenter.com/\"} \n", + "\n", + "\n", + "\n", + "1 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility and process for porting from EB-3 to EB-2 for a pending I-485? Does it require a new I-485 application or just a letter to USCIS?\",\n", + "\"_answer\": \"You can always move up or down in classification as long as your PERM was filed as an EB-2. If you filed your PERM as an EB-3, you won't be able to upgrade to EB-2. However, if your PERM was filed as an EB-2, you can downgrade your I-140 to EB-3. You can go back and upgrade to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For more information, please refer to the FAQs.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the requirements and steps to port from EB-3 to EB-2 for a pending I-485? Is a new I-485 application necessary or just a letter to USCIS?\",\n", + "\"_answer\": \"It is possible to move up or down in classification as long as your PERM was filed as an EB-2. If you filed your PERM as an EB-3, you won't be able to upgrade to EB-2. However, if your PERM was filed as an EB-2, you can downgrade your I-140 to EB-3. You can go back and upgrade to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For more information, please consult the FAQs.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility and procedure for porting from EB-3 to EB-2 for a pending I-485? Is a new I-485 application necessary or just a letter to USCIS?\",\n", + "\"_answer\": \"It is possible to move up or down in classification as long as your PERM was filed as an EB-2. If you filed your PERM as an EB-3, you won't be able to upgrade to EB-2. However, if your PERM was filed as an EB-2, you can downgrade your I-140 to EB-3. You can go back and upgrade to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For further information, please refer to the FAQs.\"} \n", + "\n", + "\n", + "\n", + "2 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are my chances of obtaining an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both countries. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is this the right time to apply for an EB1C in the next couple of months, when I have completed one year as Manager, or should I wait for the visa ban to end?\",\n", + "\"_answer\": \"It is best to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from the beginning, as attempting to plan for it a year down the line may not be successful.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of me getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I moved to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both countries. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is now the right time to apply for an EB1C in the next couple of months, when I have finished one year as Manager, or should I wait for the visa ban to end?\",\n", + "\"_answer\": \"It is best to consult with your lawyers about your job description that is intended in the foreign country outside the US. Make sure you plan for it from the start, as attempting to plan for it a year down the line may not be successful.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of me getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both countries. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is this the correct time to apply for an EB1C in the next couple of months, when I have completed one year as Manager, or should I wait for the visa ban to end?\",\n", + "\"_answer\": \"It is best to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from day one, as trying to plan for it a year down the line may not be successful.\"} \n", + "\n", + "\n", + "\n", + "3 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Would it be beneficial for my wife and I to switch from EB-2 to EB-3 and apply for I-140 under EB-3?\",\n", + "\"_answer\": \"It could be advantageous to apply for EB-3 and then use whichever one is quicker when the time comes.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it a good idea to switch from EB-2 to EB-3 and file for I-140 under EB-3?\",\n", + "\"_answer\": \"It could be beneficial to apply for EB-3 and then utilize whichever one is faster when the time arrives.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Should my wife and I switch from EB-2 to EB-3 and submit an I-140 under EB-3?\",\n", + "\"_answer\": \"It might be advantageous to apply for EB-3 and then take advantage of whichever one is quicker when the time comes.\"} \n", + "\n", + "\n", + "\n", + "4 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What can I do to ensure I get a three year H-1B visa extension? I currently have a one year visa that expires on October 27th, 2019 and I work through a consultancy. Are there any documents I need to provide? What should I be aware of when I go for stamping at the port of entry? Additionally, my EB2 priority date is February 4th, 2015 and I am planning to marry a Nepal citizen who is on OPT. Can I move my priority date to the EB2 Nepal category after marriage and if so, what are the next steps?\", \n", + "\"_answer\": \"The only way to get a three year extension is to prove that the project will last that long. You will need to provide documents to support this. When you go for stamping, be aware of what you post on social media as it can be used against you. If you marry a Nepal citizen, you can move your priority date to the EB2 Nepal category. You will need to file for an I-485 interview soon after.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What precautions should I take to get a three year H-1B visa extension? My current visa is only valid for one year and expires on October 27th, 2019. I am employed through a consultancy. Are there any documents I need to provide? What should I consider when I go for stamping at the port of entry? Additionally, my EB2 priority date is February 4th, 2015 and I am planning to marry a Nepal citizen who is on OPT. Can I transfer my priority date to the EB2 Nepal category after marriage and if so, what are the next steps?\", \n", + "\"_answer\": \"The only way to get a three year extension is to prove that the project will last that long. You will need to provide documents to support this. When you go for stamping, be mindful of what you post on social media as it can be used against you. If you marry a Nepal citizen, you can move your priority date to the EB2 Nepal category. You will need to file for an I-485 interview soon after.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What can I do to ensure I get a three year H-1B visa extension? I have a one year visa that expires on October 27th, 2019 and I work through a consultancy. Are there any documents I need to provide? What should I be aware of when I go for stamping at the port of entry? Additionally, my EB2 priority date is February 4th, 2015 and I am planning to marry a Nepal citizen who is on OPT. Can I move my priority date to the EB2 Nepal category after marriage and if so, what are the next steps?\", \n", + "\"_answer\": \"The only way to get a three year extension is to demonstrate that the project will last that long. You will need to provide documents to support this. When you go for stamping, be conscious of what you post on social media as it can be used against you. If you marry a Nepal citizen, you can transfer your priority date to the EB2 Nepal category. You will need to file for an I-485 interview soon after.\"} \n", + "\n", + "\n", + "\n", + "5 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the possibilities for me to remain in the US after my H-1B and I-94 expire?\", \n", + "\"_answer\": \"I don't believe you would be able to get a tourist visa or tourist status, but you can apply for it.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are my choices for staying in the US after my H-1B and I-94 have expired?\", \n", + "\"_answer\": \"I don't think you would be able to obtain a tourist visa or tourist status, but you can try to apply for it.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the options for me to legally stay in the US after my H-1B and I-94 have expired?\", \n", + "\"_answer\": \"I don't believe you would be able to acquire a tourist visa or tourist status, but you can attempt to apply for it.\"} \n", + "\n", + "\n", + "\n", + "6 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I downgrade my case from EB-2 to EB-3 for priority date advantage while still being employed by my current employer since 2008? My green card is filled in EB-2 with an August 2010 priority date and only the I-140 has been approved so far. What is the process for filing EB-3 concurrently without affecting my existing EB-2 filing?\",\n", + "\"_answer\": \"Your EB-2 will not be affected. You can file EB-3/I-140 and if your dates are current, you can also file an I-485.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to switch my case from EB-2 to EB-3 to take advantage of the priority date while I have been with my current employer since 2008? My green card application is in EB-2 with an August 2010 priority date and only the I-140 has been approved. What is the procedure for filing EB-3 concurrently without impacting my EB-2 filing?\",\n", + "\"_answer\": \"Your EB-2 will remain unaffected. You can submit EB-3/I-140 and if your dates are current, you can also file an I-485.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I downgrade my case from EB-2 to EB-3 to gain priority date advantage while still employed by my current employer since 2008? My green card is filled in EB-2 with an August 2010 priority date and only the I-140 has been approved so far. What is the process for filing EB-3 concurrently without affecting my existing EB-2 filing?\",\n", + "\"_answer\": \"Your EB-2 will not be affected. You can file EB-3/I-140 and if your dates are current, you can also submit an I-485.\"} \n", + "\n", + "\n", + "\n", + "7 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the procedure if I have an approved EB-2 and I want to apply for EB-3, but the EB-3 dates have moved forward and are now ahead of my priority date? Will I still be eligible for EB-3 or do I need to downgrade to EB-3? Will there be any questions raised?\",\n", + "\"_answer\": \"This is largely a matter of policy and procedure. The USCIS has indicated that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you must submit another I-140 using the same labor certification and PERM application and get an EB-3 approval first.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have an EB-2 approval and I am now applying for EB-3, but the EB-3 dates have progressed past my priority date, am I still eligible for EB-3 or do I need to downgrade? Will there be any queries raised?\",\n", + "\"_answer\": \"This is mainly an issue of policy and procedure. The USCIS has stated that if you have only one I-140 approved under EB-2 but you wish to file under EB-3, you must submit another I-140 using the same labor certification and PERM application and get an EB-3 approval first.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have an EB-2 approval and I am now applying for EB-3, but the EB-3 dates have advanced beyond my priority date, am I still eligible for EB-3 or do I need to downgrade? Will there be any questions asked?\",\n", + "\"_answer\": \"This is mainly a question of policy and procedure. The USCIS has indicated that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you must submit another I-140 using the same labor certification and PERM application and get an EB-3 approval first.\"} \n", + "\n", + "\n", + "\n", + "8 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the implications of not working for the green card sponsoring company after receiving the green card? Is there a chance of deportation if I don't stay with the employer that sponsored my green card?\",\n", + "\"_answer\": \"This is a difficult situation. I would suggest that it should be alright since you took the job after you got the green card and are just working for the company's operations outside the US temporarily. It is a risky situation, so it is best to consult a lawyer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the risks of not working for the green card sponsoring company after obtaining the green card? Could I be deported if I don't remain with the employer that sponsored my green card?\",\n", + "\"_answer\": \"This is a tricky situation. I would argue that it should be okay since you accepted the job after you got the green card and are just working for the company's operations outside the US temporarily. It is a risky situation, so it is best to seek legal advice.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the consequences of not working for the green card sponsoring company after getting the green card? Is there a possibility of deportation if I don't stay with the employer that sponsored my green card?\",\n", + "\"_answer\": \"This is a difficult situation. I would suggest that it should be alright since you took the job after you got the green card and are just working for the company's operations outside the US temporarily. It is a risky situation, so it is best to consult a lawyer.\"} \n", + "\n", + "\n", + "\n", + "9 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What will happen if I attempt to downgrade from EB-2 to EB-3 and my newly filed I-140 is denied? Can I use my previously approved I-140 (EB-2)?\",\n", + "\"_answer\": \"If you file an I-485 prematurely when the priority date of EB-2 is not current and the EB-3 filing is denied, the I-485 will also be denied. It is important to have your lawyer review your case carefully to ensure there are no other issues. If the second EB-3 filing is denied, it should not have any impact on the already approved I-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What will be the outcome if I try to downgrade from EB-2 to EB-3 and my new I-140 is rejected? Can I still use my approved I-140 (EB-2)?\",\n", + "\"_answer\": \"If you submit an I-485 before the priority date of EB-2 is current and the EB-3 filing is denied, the I-485 will also be denied. It is important to have your lawyer carefully review your case to make sure there are no other issues. If the second EB-3 filing is rejected, it should not affect the already approved I-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What will happen if I try to downgrade from EB-2 to EB-3 and my new I-140 is not accepted? Can I still use my previously approved I-140 (EB-2)?\",\n", + "\"_answer\": \"If you file an I-485 prematurely when the priority date of EB-2 is not current and the EB-3 filing is denied, the I-485 will also be denied. It is important to have your lawyer thoroughly examine your case to make sure there are no other issues. If the second EB-3 filing is not accepted, it should not have any impact on the already approved I-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"} \n", + "\n", + "\n", + "\n", + "10 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What do I need to do to get an EB-2 green card with a master's degree?\", \n", + "\"_answer\": \"You must attend an accredited university in the US to obtain a master's degree in order to be eligible for an EB-2 green card. The US Department of Education has a list of state-level agencies who can accredit programs, and your university should be able to tell you who has accredited them or their programs.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What qualifications do I need to meet to be eligible for an EB-2 green card?\", \n", + "\"_answer\": \"To be eligible for an EB-2 green card, you must attend an accredited university in the US to obtain a master's degree. The US Department of Education has a list of state-level agencies who can accredit programs, and your university should be able to tell you who has certified them or their programs.\"}\n", + "\n", + "######\n", + "{\"_question\": \"How can I get an EB-2 green card with a master's degree?\", \n", + "\"_answer\": \"In order to get an EB-2 green card with a master's degree, you must attend an accredited university in the US. The US Department of Education has a list of state-level agencies who can accredit programs, and your university should be able to tell you who has validated them or their programs.\"} \n", + "\n", + "\n", + "\n", + "11 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to initiate a green card application while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed an H1B for me this year and I am waiting for the approval. Can my employer start the green card process while I am on F1 status?\",\n", + "\"_answer\": \"For individuals from countries where priority dates are extremely delayed, such as India, China, Philippines, and Mexico, it is not recommended to initiate a green card application while on F-1 status. This is because F-1 status does not permit dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If one files for a green card while on a status that does not permit dual intent, they may have difficulty getting extensions, visa stamping, or re-entry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not delayed, it may be possible to complete the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I begin the green card process while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed an H1B for me this year and I am waiting for the approval. Is it possible for my employer to start the green card process while I am on F1 status?\",\n", + "\"_answer\": \"For individuals from countries where priority dates are significantly delayed, such as India, China, Philippines, and Mexico, it is not recommended to start a green card application while on F-1 status. This is because F-1 status does not allow dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If one files for a green card while on a status that does not allow dual intent, they may have difficulty getting extensions, visa stamping, or re-entry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not delayed, it may be possible to complete the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to initiate a green card application while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed an H1B for me this year and I am waiting for the approval. Can my employer initiate the green card process while I am on F1 status?\",\n", + "\"_answer\": \"For individuals from countries where priority dates are significantly delayed, such as India, China, Philippines, and Mexico, it is not recommended to initiate a green card application while on F-1 status. This is because F-1 status does not permit dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If one files for a green card while on a status that does not permit dual intent, they may have difficulty getting extensions, visa stamping, or re-entry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not delayed, it may be possible to complete the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"} \n", + "\n", + "\n", + "\n", + "12 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to submit multiple green card applications at the same time? What are the potential consequences? My employer has already filed for my green card in the EB-2 category and the I-140 has been approved with a priority date of 2013. Can I try to apply for an EB-1 green card on my own? If the EB-1 application is not approved, will it have an impact on my EB-2 green card? Should the job description be the same for both the EB-1 and EB-2 applications? What are the possible issues that may arise?\",\n", + "\"_answer\": \"Yes, you can file green cards through multiple categories such as employment, family, or investment. As long as the applications are submitted honestly, any number of green cards can be filed. If the EB-1 application is not approved, it will not have an effect on the EB-2 green card. The job description does not need to be the same for both applications, however, it is recommended to be consistent. Possible issues that may arise include delays in processing or denial of the application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I submit multiple green card applications at the same time? What could be the repercussions? My employer has already filed a green card application for me in the EB-2 category and the I-140 has been approved with a priority date of 2013. Can I attempt to apply for an EB-1 green card on my own? If the EB-1 application is not successful, will it affect my EB-2 green card? Should the job description be the same for both the EB-1 and EB-2 applications? What potential problems may arise?\",\n", + "\"_answer\": \"Yes, you can file green cards through multiple categories such as employment, family, or investment. As long as the applications are submitted honestly, any number of green cards can be filed. If the EB-1 application is not approved, it will not have an effect on the EB-2 green card. The job description does not need to be the same for both applications, however, it is recommended to be consistent. Possible issues that may occur include delays in processing or denial of the application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to submit multiple green card applications at the same time? What could be the consequences? My employer has already filed for my green card in the EB-2 category and the I-140 has been approved with a priority date of 2013. Can I try to apply for an EB-1 green card on my own? If the EB-1 application is not accepted, will it have an effect on my EB-2 green card? Should the job description be the same for both the EB-1 and EB-2 applications? What are the possible issues that may arise?\",\n", + "\"_answer\": \"Yes, you can file green cards through multiple categories such as employment, family, or investment. As long as the applications are submitted honestly, any number of green cards can be filed. If the EB-1 application is not accepted, it will not have an effect on the EB-2 green card. The job description does not need to be the same for both applications, however, it is recommended to be consistent. Possible issues that may come up include delays in processing or denial of the application.\"} \n", + "\n", + "\n", + "\n", + "13 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch employers while my NIW application is in process?\",\n", + "\"_answer\": \"You can change employers at any point if you are a self-applicant and will remain in the same field of national interest. However, the NIW priority date will take the same amount of time as a regular EB-2 application. See: http://www.immigration.com/visa-bulletin under Employment-Based Category 2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the processing times for NIW?\",\n", + "\"_answer\": \"If you are a self-applicant and will stay in the same area of national interest, you can switch employers at any time. The NIW priority date will take the same amount of time as a regular EB-2 application. See: http://www.immigration.com/visa-bulletin under Employment-Based Category 2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I change employers while my NIW application is being processed?\",\n", + "\"_answer\": \"If you are a self-applicant and will stay in the same field of national interest, you can switch employers whenever you want. However, the NIW priority date will take the same amount of time as a regular EB-2 application. See: http://www.immigration.com/visa-bulletin under Employment-Based Category 2.\"} \n", + "\n", + "\n", + "\n", + "14 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"regarding form g-884 (returns of original documents) . i got i-140 approved and also got ead with eb2 category in april 2012. i need to change my employer but my employer did not give me my green card paper like i-140 approval copy, labor code etc. i have only receipt copy of i-140 and i-485. i heard about uscis form g-884 (returns of original documents) which use to get all green card documents from uscis. i have following questions to ask you. based on g-884, can i obtain my all green card documents from uscis without knowing my employer?\",\n", + "\"_answer\": \"form g-884 is used to request the return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"}\n", + "\n", + "######\n", + "{\"_question\": \"regarding form g-884 (returns of original documents) . i got i-140 approved and also got ead with eb2 category in april 2012. i need to change my employer but my employer did not give me my green card paper like i-140 approval copy, labor code etc. i have only receipt copy of i-140 and i-485. i heard about uscis form g-884 (returns of original documents) which use to get all green card documents from uscis. i have following questions to ask you. based on g-884, can i retrieve my all green card documents from uscis without knowing my employer?\",\n", + "\"_answer\": \"form g-884 is used to request the return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"}\n", + "\n", + "######\n", + "{\"_question\": \"regarding form g-884 (returns of original documents) . i got i-140 approved and also got ead with eb2 category in april 2012. i need to change my employer but my employer did not give me my green card paper like i-140 approval copy, labor code etc. i have only receipt copy of i-140 and i-485. i heard about uscis form g-884 (returns of original documents) which use to get all green card documents from uscis. i have following questions to ask you. based on g-884, can i acquire my all green card documents from uscis without knowing my employer?\",\n", + "\"_answer\": \"form g-884 is used to request the return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"} \n", + "\n", + "\n", + "\n", + "15 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I submit an adjustment of status application if my 'schedule a' application falls into the EB-2 or employment based second preference category?\", \n", + "\"_answer\": \"Yes, you can submit an adjustment of status application concurrently with the form I-140 if your priority date for EB-2 is not backlogged.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to file for adjustment of status if my 'schedule a' application is in the EB-2 or employment based second preference category?\", \n", + "\"_answer\": \"Yes, you can file for adjustment of status simultaneously with the form I-140 if your priority date for EB-2 is up to date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I submit an adjustment of status application if my 'schedule a' application is in the EB-2 or employment based second preference category?\", \n", + "\"_answer\": \"Yes, you can submit an adjustment of status application concurrently with the form I-140 provided that your priority date for EB-2 is not backlogged.\"} \n", + "\n", + "\n", + "\n", + "16 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the status of Obama's immigration action regarding I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category, but I am still waiting for the dates to become current. Will I be given an EAD or any other form of documentation due to the executive action?\",\n", + "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would grant you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document yet.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the status of Obama's immigration action for those at the I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category, but I am still waiting for the dates to become current. Will I receive an EAD or any other form of documentation due to the executive action?\",\n", + "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would give you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document up to this point.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the status of Obama's immigration action for those at the I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category, but I am still waiting for the dates to become current. Will I be given an EAD or any other form of documentation due to the executive action?\",\n", + "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would provide you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document as of now.\"} \n", + "\n", + "\n", + "\n", + "17 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the options for expediting a background check for an EB-2 with a priority date of June 2008 and an I-485 application filed in January 2012?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", + "\n", + "######\n", + "{\"_question\": \"What can be done to speed up the background check process for an EB-2 with a priority date of June 2008 and an I-485 application filed in January 2012?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", + "\n", + "######\n", + "{\"_question\": \"What steps can be taken to hasten the background check for an EB-2 with a priority date of June 2008 and an I-485 application filed in January 2012?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"} \n", + "\n", + "\n", + "\n", + "18 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my current employer's experience in India while filing for a PERM?\",\n", + "\"_answer\": \"Yes, you can use the experience gained with an employer who has a tax id number other than your petitioning employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I include my Indian experience with my current employer while filing for a PERM?\",\n", + "\"_answer\": \"Yes, you can use the experience gained with an employer who has a different tax id number than your petitioning employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my Indian experience with my current employer for the PERM application?\",\n", + "\"_answer\": \"Yes, you can utilize the experience gained with an employer who has a different tax id number than your petitioning employer.\"} \n", + "\n", + "\n", + "\n", + "19 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I have two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Am I eligible for an EB-2 visa with this? In the event that I do not qualify for EB-2, should I wait another year to apply for EB-2 or should I just file for EB-3 now? Additionally, do internships count when calculating the number of years of work after school?\",\n", + "\"_answer\": \"Internships are taken into account when calculating experience. You must first have your degrees evaluated under AACRAO EDGE standards.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Can I be considered for an EB-2 visa with this? If I am not eligible for EB-2, should I wait another year to submit an EB-2 application or should I just file for EB-3 now? Also, do internships count when determining the number of years of work after school?\",\n", + "\"_answer\": \"Internships are included when determining experience. You must first have your degrees evaluated under AACRAO EDGE standards.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Am I qualified for an EB-2 visa with this? In the event that I do not qualify for EB-2, should I wait another year to apply for EB-2 or should I just file for EB-3 now? Also, do internships count when calculating the number of years of work after school?\",\n", + "\"_answer\": \"Internships are taken into account when calculating experience. You must first have your degrees evaluated under AACRAO EDGE standards.\"} \n", + "\n", + "\n", + "\n", + "20 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the timeline for applying for a green card if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Can I choose between EB-1 and EB-2? Do I need a Bachelor's or Master's degree to apply for a green card? Can I apply for the green card myself or do I need to go through my employer?\", \n", + "\"_answer\": \"You can apply for green card without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the timeline for initiating the green card process if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Do I have the option to select between EB-1 and EB-2? Is a Bachelor's or Master's degree necessary to apply for a green card? Can I apply for the green card independently or do I need to go through my employer?\", \n", + "\"_answer\": \"You can start the green card process without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the timeline for beginning the green card process if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Do I have the choice of EB-1 or EB-2? Is a Bachelor's or Master's degree required to apply for a green card? Can I apply for the green card on my own or do I need to go through my employer?\", \n", + "\"_answer\": \"You can commence the green card process without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"} \n", + "\n", + "\n", + "\n", + "21 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Will I be eligible for an EB-2 visa if I have a three year bachelor's degree from India and 16 years of experience in the US, and I am currently in the process of applying for an EB-3 visa with a priority date of 10/2006? If I pursue a master's degree here, either online or through an executive program, will I qualify for EB-2 without needing to demonstrate progressive experience since obtaining the master's degree?\",\n", + "\"_answer\": \"If the master's degree is accredited, you should not need to have any post-master's experience in order to be eligible for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should resolve them.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a three year bachelor's degree from India and 16 years of experience in the US. I am currently in the process of applying for an EB-3 visa with a priority date of 10/2006. If I get a master's degree here, either online or through an executive program, will I be eligible for an EB-2 visa without needing to demonstrate progressive experience since obtaining the master's degree?\",\n", + "\"_answer\": \"If the master's degree is accredited, you should not need to have any post-master's experience in order to qualify for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should resolve them.\"} \n", + "\n", + "\n", + "\n", + "22 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I'm on a J-1 visa and still have four years left. I'm considering applying for an EB2-NIW. Will I have any issues travelling if I don't get the EB2?\",\n", + "\"_answer\": \"There is a chance that having exhibited immigrant intent could lead to problems with your J-1 visa. It is not certain, but the risk is there.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I'm currently on a J-1 visa and have four more years left. I'm thinking of submitting an EB2-NIW application. What are the chances of having trouble travelling if I don't get the EB2?\",\n", + "\"_answer\": \"There is a possibility that not receiving the EB2 could lead to issues with your J-1 visa due to exhibiting immigrant intent. It is not definite, but the possibility is there.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I'm on a J-1 visa and have four more years on it. I'm considering applying for an EB2-NIW. Could I have problems travelling if I don't get the EB2?\",\n", + "\"_answer\": \"There is a potential for difficulties with your J-1 visa due to exhibiting immigrant intent. It is not certain, but the risk is present.\"} \n", + "\n", + "\n", + "\n", + "23 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB-2 visa if I'm a veterinary assistant from Bulgaria with a master's degree in veterinary medicine?\",\n", + "\"_answer\": \"In order to be eligible for an EB-2 visa, you must have a degree that is equivalent to a U.S. advanced degree and the job must require an advanced degree or equivalent experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB-2 visa if I'm a veterinary assistant from Bulgaria with a master's degree in veterinary medicine?\",\n", + "\"_answer\": \"In order to be eligible for an EB-2 visa, you must meet two criteria: 1. Your degree must be equal to a U.S. advanced degree (a credentials evaluation service must assess that under proper standards); and 2. The job must require an advanced degree or equivalent experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I'm a veterinary assistant from Bulgaria with a master's degree in veterinary medicine, am I eligible for an EB-2 visa?\",\n", + "\"_answer\": \"In order to be considered for an EB-2 visa, two conditions must be fulfilled: 1. Your degree must be equivalent to a U.S. advanced degree (a credentials evaluation service must assess that under proper standards); and 2. The job must necessitate an advanced degree or equivalent experience.\"} \n", + "\n", + "\n", + "\n", + "24 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the best way to reach out to the USCIS Service Centers to inform them that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the best way to notify the USCIS Service Centers that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to review.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the best way to communicate with the USCIS Service Centers to inform them that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to examine.\"} \n", + "\n", + "\n", + "\n", + "25 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it necessary for a beneficiary petitioned for a green card under EB-2 classification to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a beneficiary must possess a degree from an accredited university in order to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not sufficient to show accreditation for green card purposes. To determine a university's accreditation status, please visit the following website: http://ope.ed.gov/accreditation/ Additionally, you may watch this video prepared by Mr. Khanna, 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do beneficiaries petitioned for a green card under EB-2 classification need to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a degree from an accredited university is required for a beneficiary to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to prove accreditation for green card purposes. To find out a university's accreditation status, please visit the following website: http://ope.ed.gov/accreditation/ Additionally, you may watch this video prepared by Mr. Khanna, 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it a requirement for a beneficiary petitioned for a green card under EB-2 classification to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to demonstrate accreditation for green card purposes. To determine a university's accreditation status, please visit the following website: http://ope.ed.gov/accreditation/ Additionally, you may watch this video prepared by Mr. Khanna, 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", + "\n", + "\n", + "\n", + "26 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Did I finish my master's degree in one year? I have a master's degree in science and I have been given the final degree certificate by the university, but I completed the normal 2 year program in just 1 year. Will USCIS consider my M.Sc degree incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come in. We have had problems with USCIS in these scenarios. Evaluation done through the EDGE database should be enough to convince USCIS.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Did I finish my master's degree in one year? I have a master's degree in science and I have been presented the final degree certificate by the university, but I completed the regular 2 year program in just 1 year. Will USCIS view my M.Sc degree as incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come into play. We have had issues with USCIS in these cases. Evaluation done through the EDGE database should be enough to persuade USCIS.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Did I complete my master's degree in one year? I have a master's degree in science and I have been given the final degree certificate by the university, but I finished the regular 2 year program in just 1 year. Will USCIS see my M.Sc degree as incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come in. We have had difficulties with USCIS in these situations. Evaluation done through the EDGE database should be enough to convince USCIS.\"} \n", + "\n", + "\n", + "\n", + "27 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What qualifications are necessary for EB-2?\",\n", + "\"_answer\": \"In June 2007, the USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Generally, a U.S. master's degree is required, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, may be accepted. Additionally, a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field may be accepted, but five years of progressive experience is also required. Furthermore, a three-year bachelor's degree plus two-year master's degree (India) may be accepted, but five years of progressive experience is also required. Lastly, a three-year bachelor's degree plus two-year master's degree plus one-year postgraduate diploma (India) may be accepted, but five years of progressive experience is also required. Documentation such as an official academic record and letters from employers showing five years of progressive post-baccalaureate experience in the specialty must be included in the petition.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What credentials are needed for EB-2?\",\n", + "\"_answer\": \"In June 2007, the USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Generally, a U.S. master's degree is necessary, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, may be accepted. Additionally, a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field may be accepted, but five years of progressive experience is also required. Furthermore, a three-year bachelor's degree plus two-year master's degree (India) may be accepted, but five years of progressive experience is also required. Lastly, a three-year bachelor's degree plus two-year master's degree plus one-year postgraduate diploma (India) may be accepted, but five years of progressive experience is also required. Supporting documents such as an official academic record and letters from employers showing five years of progressive post-baccalaureate experience in the specialty must be included in the petition.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What educational qualifications are necessary for EB-2?\",\n", + "\"_answer\": \"In June 2007, the USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Generally, a U.S. master's degree is required, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, may be accepted. Additionally, a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field may be accepted, but five years of progressive experience is also required. Furthermore, a three-year bachelor's degree plus two-year master's degree (India) may be accepted, but five years of progressive experience is also required. Lastly, a three-year bachelor's degree plus two-year master's degree plus one-year postgraduate diploma (India) may be accepted, but five years of progressive experience is also required. Supporting documents such as an official academic record and letters from employers showing five years of progressive post-baccalaureate experience in the specialty must be submitted with the petition.\"} \n", + "\n", + "\n", + "\n", + "28 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to qualify for EB-2 with a diploma, AMIE, and M.Tech, and 7 years of experience post M.Tech from a previous employer and 5 years from the current employer, even though the job requirements state a Bachelor's in engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is uncertain. I remember a decision from the AAO that said they would not recognize it, but a more recent decision was more ambiguous. Nonetheless, I think an EB-2 should be attempted. The M.Tech should help.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I meet the criteria for EB-2 if I have a diploma, AMIE, and M.Tech, plus 7 years of experience post M.Tech from a prior job and 5 years from the current job, even though the job requirements state a Bachelor's in engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is questionable. I recall an AAO decision that said they would not accept it, but a more recent decision was more uncertain. Nevertheless, I think an EB-2 should be attempted. The M.Tech should be beneficial.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB-2 if I have a diploma, AMIE, and M.Tech, and 7 years of experience post M.Tech from a prior job and 5 years from the current job, even though the job requirements state a Bachelor's in engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is uncertain. I remember an AAO decision that said they would not accept it, but a more recent decision was more vague. Nonetheless, I think an EB-2 should be attempted. The M.Tech should be advantageous.\"} \n", + "\n", + "\n", + "\n", + "29 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB-2 considering I have a 4 year bachelor's degree from India and 7 years of experience? My company has applied for a green card in EB-3 and my I-140 is approved with a priority date of September 2010. The company name has changed and they are saying the process needs to be restarted from the PERM, but I can keep my same priority date. The lawyers said no, as my job description states a bachelor's degree and 3 or 5 years of experience. They argued that the USCIS will deny the application as the job can be done by someone with 3 years of experience. Is this true?\",\n", + "\"_answer\": \"Take note of these points. First, a change in the employer's name does not necessitate restarting the green card process. Second, if the sponsoring employer ceases operations, the USCIS can take away your priority date. Lastly, the job must require 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB-2 with my 4 year bachelor's degree from India and 7 years of experience? My company has already applied for a green card in EB-3 and my I-140 has been approved with a priority date of September 2010. The company name has changed and they are saying the process must start from the PERM again, but I can keep my same priority date. The lawyers said no, as my job description states a bachelor's degree and 3 or 5 years of experience. They argued that the USCIS will deny the application as the job can be done by someone with 3 years of experience. Is this accurate?\",\n", + "\"_answer\": \"Remember these points. First, a change in the employer's name does not necessitate restarting the green card process. Second, if the sponsoring employer ceases operations, the USCIS can take away your priority date. Lastly, the job must require 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB-2 with my 4 year bachelor's degree from India and 7 years of experience? My company has already applied for a green card in EB-3 and my I-140 has been approved with a priority date of September 2010. The company name has changed and they are saying the process must be restarted from the PERM, but I can keep my same priority date. The lawyers said no, as my job description states a bachelor's degree and 3 or 5 years of experience. They argued that the USCIS will deny the application as the job can be done by someone with 3 years of experience. Is this true?\",\n", + "\"_answer\": \"Keep in mind these points. First, a mere name change of the employer does not require that green card be started all over again. Second, if the sponsoring employer stops business operations, the USCIS can take away your priority date. Lastly, the job must require 5 year's experience.\"} \n", + "\n", + "\n", + "\n", + "30 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I restart the green card process under the EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? My labor was filed in EB-3 and my priority date is October 2003. I received my EAD in 2007.\",\n", + "\"_answer\": \"It is possible to restart the green card process under the EB-2 category if you have over 5 years of experience after a 4-year degree. This would involve redoing the PERM and I-140 for an EB-2 level job and porting your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a Bachelor's degree from India and 8 years of work experience in the US. My labor was filed in EB-3 and my priority date is October 2003. I received my EAD in 2007. Am I eligible to restart the green card process under the EB-2 category?\",\n", + "\"_answer\": \"If you have more than 5 years of experience after a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This would involve submitting a new PERM and I-140 for an EB-2 level job.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a Bachelor's degree from India and 8 years of work experience in the US. My labor was filed in EB-3 and my priority date is October 2003. I received my EAD in 2007. Is it possible to restart the green card process under the EB-2 category?\",\n", + "\"_answer\": \"If you have more than 5 years of experience after a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This would involve filing a new PERM and I-140 for an EB-2 level job.\"} \n", + "\n", + "\n", + "\n", + "31 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can you bypass the requirement for perm if you apply for eb-2?\",\n", + "\"_answer\": \"It is possible to avoid the perm requirement if you are eligible for a national interest waiver under the eb-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to get around the perm requirement by using the eb-2 category?\",\n", + "\"_answer\": \"You may be able to sidestep the perm requirement if you qualify for a national interest waiver under the eb-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can one evade the perm requirement by applying through the eb-2 category?\",\n", + "\"_answer\": \"It is possible to circumvent the perm requirement if you are eligible for a national interest waiver under the eb-2 category.\"} \n", + "\n", + "\n", + "\n", + "32 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the most likely way to get an EB-2 application approved quickly? Is it through the master's equivalency (evaluating a bachelor's degree to be equivalent to a master's) or with five years of progressive experience? I know someone who was approved through the master's equivalency, and they didn't even have five years of experience. Does it depend on the employer's ability to provide documents or the lawyer's attention to detail?\",\n", + "\"_answer\": \"It all starts with the lawyer. Make sure your attorney is thorough and plan for any possible outcome they can think of. The job must be accurately described.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the most probable way to get an EB-2 application accepted quickly? Is it the master's equivalency (evaluating a bachelor's degree to be equal to a master's) or five years of progressive experience? I know someone who was accepted through the master's equivalency, and they didn't even have five years of experience. Does it rely on the employer's capability to provide documents or the lawyer's precision with the details to be submitted to the USCIS?\",\n", + "\"_answer\": \"It all begins with the lawyers. So, make sure your counsel is precise and plan for every potential outcome they can think of. The job has to be described accurately.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the most likely way to get an EB-2 application approved quickly? Is it through the master's equivalency (evaluating a bachelor's degree to be equivalent to a master's) or with five years of progressive experience? I know someone who was approved through the master's equivalency, and they didn't even have five years of experience. Does it depend on the employer's ability to provide documents or the lawyer's attention to detail?\",\n", + "\"_answer\": \"It all starts with the lawyer. Make sure your attorney is meticulous and plan for any possible result they can think of. The job must be described truthfully.\"} \n", + "\n", + "\n", + "\n", + "33 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB-2 visa with the same employer if I have more than 10 years of experience, including the experience with the current employer?\",\n", + "\"_answer\": \"Yes, you can, provided the job offered is more than 50% different than the job you were performing so far with the same employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to apply for an EB-2 visa with the same employer if I have more than 10 years of experience, including the experience with the current employer?\",\n", + "\"_answer\": \"Yes, you can do so, as long as the job offered is more than 50% different than the job you were performing so far with the same employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have an EB-3 visa with the same employer and more than 10 years of experience, including the experience with the current employer, can I apply for an EB-2 visa?\",\n", + "\"_answer\": \"Yes, you can, if the job offered is more than 50% different than the job you were performing so far with the same employer.\"} \n", + "\n", + "\n", + "\n", + "34 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I be qualified for an EB-2 visa? I have been a professor at a major US university for only 9 months (on an H1B visa). I have a physician and PhD degree, 16 years of professional experience in Europe, and have published 20 papers and one book. Is it too early to apply for an EB green card?\",\n", + "\"_answer\": \"You are eligible for an EB-2 visa and should apply as soon as possible. Professorial jobs can reuse existing advertisements if they filepermwithin 18 months of when the job was offered to them. You should also have your resume evaluated for a potential simultaneous EB1 application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 visa? I have been a professor at a major US university for only 9 months (on an H1B visa). I have a physician and PhD degree, 16 years of professional experience in Europe, and have published 20 papers and one book. Is it too soon to apply for an EB green card?\",\n", + "\"_answer\": \"You are certainly eligible for an EB-2 visa and should submit your application as soon as possible. Professorial jobs can reuse existing advertisements if they filepermwithin 18 months of when the job was offered to them. You should also have your resume assessed for a possible simultaneous EB1 application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for an EB-2 visa? I have been a professor at a major US university for only 9 months (on an H1B visa). I have a physician and PhD degree, 16 years of professional experience in Europe, and have published 20 papers and one book. Is it too early to apply for an EB green card?\",\n", + "\"_answer\": \"You are eligible for an EB-2 visa and should submit your application promptly. Professorial jobs can reuse existing advertisements if they filepermwithin 18 months of when the job was offered to them. You should also have your resume examined for a potential simultaneous EB1 application.\"} \n", + "\n", + "\n", + "\n", + "35 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"am i eligible for eb-2 ? i completed a 3 year bachelor of computer science degree from india in june 2005. then i started a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while still in the masters program, i began a full time job in a software company in jan 2006. i earned my master of computer applications(3 year degree)in 2008, and worked with the same company in a full time job until dec 2010 (5 years). after that, i moved to the US and have been employed with a US based company for 7 months as a full time employee (total experience 5 years 7 months). am i eligible for eb-2?\",\n", + "\"_answer\": \"yes, you are eligible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"do i meet the requirements for eb-2 ? i acquired a 3 year bachelor of computer science degree from india in june 2005. then i began a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while still studying for my masters, i started a full time job in a software company in jan 2006. i was awarded my master of computer applications(3 year degree)in 2008, and worked with the same company in a full time job until dec 2010 (5 years). after that, i moved to the US and have been employed with a US based company for 7 months as a full time employee (total experience 5 years 7 months). do i meet the requirements for eb-2?\",\n", + "\"_answer\": \"you fulfill the requirements.\"} \n", + "\n", + "\n", + "\n", + "36 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of getting an EB2 visa with my qualifications? I have a B.Sc. from Israel from 2006, and in 2002 I started a M.Sc. while working as a QA Engineer for 1.5 years. I stopped my M.Sc. and joined the company I'm currently working for. After 3 years I was relocated to the US and have been here for 4 years. My company's law firm has suggested I apply for an EB3 visa. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\",\n", + "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree in order to be eligible for an EB2 visa. Incomplete degrees are not considered.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the odds of getting an EB2 visa with my background? I earned my B.Sc. from Israel in 2006, and in 2002 I began a M.Sc. while also working as a QA Engineer for 1.5 years. I ended my M.Sc. and joined the company I'm currently employed with. After 3 years I was transferred to the US and have been here for 4 years. My company's law firm has recommended I apply for an EB3 visa. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\",\n", + "\"_answer\": \"Your degree must be equal to a US Bachelor's degree in order to be eligible for an EB2 visa. Unfinished degrees are not accepted.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the prospects of getting an EB2 visa with my credentials? I have a B.Sc. from Israel from 2006, and in 2002 I began a M.Sc. while also working as a QA Engineer for 1.5 years. I stopped my M.Sc. and joined the company I'm currently employed with. After 3 years I was relocated to the US and have been here for 4 years. My company's law firm has suggested I apply for an EB3 visa. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\",\n", + "\"_answer\": \"Your degree must be comparable to a US Bachelor's degree in order to be eligible for an EB2 visa. Incomplete degrees are not taken into account.\"} \n", + "\n", + "\n", + "\n", + "37 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my prior experience for EB-2 qualification?\",\n", + "\"_answer\": \"You can use your experience prior to August 2010 for EB-2 qualification, even if you have not been continuously employed with the same employer, as long as the job you used to perform and the job you will perform after the green card are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my experience from before August 2010 for EB-2?\",\n", + "\"_answer\": \"Yes, you can use your experience from before August 2010 for EB-2, even if you have not been continuously employed with the same employer, provided the job you used to do and the job you will do after the green card are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to be continuously employed to use my experience for EB-2?\",\n", + "\"_answer\": \"No, you do not need to be continuously employed to use your experience for EB-2, as long as the job you used to do and the job you will do after the green card are more than 50% different.\"} \n", + "\n", + "\n", + "\n", + "38 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I keep my priority date if I move to a new company after my I-140 application was approved on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 is in its 8th year expiring on May 12th, 2021?\",\n", + "\"_answer\": \"Yes, you can retain your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I change employers after my I-140 was approved on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 is in its 8th year expiring on May 12th, 2021, can I keep my priority date?\",\n", + "\"_answer\": \"Yes, you may retain your priority date provided the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I switch jobs after my I-140 approval on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 is in its 8th year expiring on May 12th, 2021, can I still keep my priority date from my current employer?\",\n", + "\"_answer\": \"Yes, you can maintain your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"} \n", + "\n", + "\n", + "\n", + "39 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the costs associated with an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer is required to pay for all expenses related to the PERM process, such as legal fees, but not the other parts of the green card process.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am applying for an employment-based green card in the EB2 category, who is responsible for the expenses?\",\n", + "\"_answer\": \"The employer is obligated to cover all costs related to the PERM process, such as attorney's fees, but not the other parts of the green card process.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am applying for an EB2 green card, can I pay for the entire process?\",\n", + "\"_answer\": \"The employer is obligated to pay for all expenses related to the PERM process, such as filing fees and legal fees, but not the other parts of the green card process.\"} \n", + "\n", + "\n", + "\n", + "40 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB-2 with my educational background and work experience?\",\n", + "\"_answer\": \"Yes, you could qualify for EB-2 with a Bachelor's degree plus five years of progressive experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB-2 visa with my qualifications?\",\n", + "\"_answer\": \"Yes, you could be eligible for EB-2 with a Bachelor's degree and five years of progressive work experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I have the qualifications to apply for an EB-2 visa?\",\n", + "\"_answer\": \"Yes, you could be eligible for EB-2 with a Bachelor's degree and five years of progressive work experience.\"} \n", + "\n", + "\n", + "\n", + "41 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I include skills I acquired while working for the company sponsoring my green card in the job description for the EB-2? I have been employed with them for 2.5 years.\",\n", + "\"_answer\": \"It is permissible to use the skills you have gained since starting with the sponsoring company, provided the job you had then and the one you are applying for are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have been employed with the company sponsoring my green card for 2.5 years and have gained some skills during this time. Can I include these in the job description for the EB-2?\",\n", + "\"_answer\": \"It is acceptable to use the skills you have obtained since beginning with the sponsoring company, as long as the job you had then and the one you are applying for are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have been with the company sponsoring my green card for 2.5 years and have gained some skills during this time. Is it valid to include these in the job description for the EB-2?\",\n", + "\"_answer\": \"It is possible to use the skills you have obtained since starting with the sponsoring company, provided the job you had then and the one you are applying for are more than 50% different.\"} \n", + "\n", + "\n", + "\n", + "42 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I file for a green card while on OPT? I recently completed my Master's and have been working for two months. Is it possible to file for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Does the green card process depend on H1B?\",\n", + "\"_answer\": \"This requires your lawyer to evaluate the situation. Generally, nothing prevents you from submitting a PERM application while on OPT and an EB2 appears feasible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to file for a green card while on OPT? I just finished my Master's and have been employed for two months. Is it possible to file for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Is the green card process dependent on H1B?\",\n", + "\"_answer\": \"This question needs your lawyer to assess the case. Generally, nothing hinders you from filing a PERM application while on OPT and an EB2 appears possible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for a green card while on OPT? I recently graduated with my Master's and have been working for two months. Is it possible to apply for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Does the green card process rely on H1B?\",\n", + "\"_answer\": \"This requires your attorney to evaluate the situation. Generally, nothing stops you from submitting a PERM application while on OPT and an EB2 appears feasible.\"} \n", + "\n", + "\n", + "\n", + "43 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, but you will need to restart the green card process from the PERM stage.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to change my classification from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, but you must begin the green card process again from the PERM level.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I alter my EB3 status to EB2?\",\n", + "\"_answer\": \"Yes, but you must restart the green card process from the PERM stage.\"} \n", + "\n", + "\n", + "\n", + "44 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"is it possible to submit an application for green card in the eb-2 category? i have a bachelor's degree from india, a two-year diploma from niit (in h1 and l1 they considered my diploma as a master degree), and 10 years of experience. could i apply for a green card in the eb-2 category?\",\n", + "\"_answer\": \"it's hard to say. it's unlikely that you would qualify for eb-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i able to apply for a green card in the eb-2 category? i have a bsc from india, plus a two-year diploma from niit (in h1 and l1 they thought of my diploma as a master degree) and 10 years of experience. could i submit an application for a green card in the eb-2 category?\",\n", + "\"_answer\": \"it's difficult to tell. it's unlikely that you would be eligible for eb-2.\"} \n", + "\n", + "\n", + "\n", + "45 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Can I apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"It looks like you are eligible for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of experience in the related field. Can I submit a Green Card application in the EB2 category?\",\n", + "\"_answer\": \"You seem to be qualified for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I fulfill the criteria for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of experience in the related field. Am I able to apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"You appear to be eligible for EB-2.\"} \n", + "\n", + "\n", + "\n", + "46 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for the EB-2 category? I am currently working as a Mechanical Engineer for one of the largest companies and am transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree from four years ago, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Do I qualify for the EB-2 category?\",\n", + "\"_answer\": \"The minimum requirements for the job are two years of experience, so this job does not qualify for EB-2. You do, however.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the criteria for the EB-2 category? I am employed as a Mechanical Engineer with one of the largest companies and am transitioning to a Product Development Engineer role within the same organization. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree from four years ago, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Am I eligible for the EB-2 category?\",\n", + "\"_answer\": \"The job requires a minimum of two years of experience, so it does not qualify for EB-2. You, however, do.\"} \n", + "\n", + "\n", + "\n", + "47 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB-2 with my 3 year Bachelor's in Computer Science and 2 year Master's in Computer Science from India?\",\n", + "\"_answer\": \"It is a possibility, but your legal counsel should determine the best course of action: compare the two degrees to be equal to a Bachelor's and use the Bachelor's plus 5 years for EB-2 or just use the Master's degree (risky).\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a 3 year Bachelor's in Computer Science and a 2 year Master's in Computer Science from India, can I apply for EB-2?\",\n", + "\"_answer\": \"It is feasible, but your lawyer must decide which path is best for you: assess the two degrees to be equivalent to a Bachelor's and use the Bachelor's plus 5 years for EB-2 or just use the Master's degree (risky).\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB-2 with my 3 year Bachelor's in Computer Science and 2 year Master's in Computer Science from India?\",\n", + "\"_answer\": \"It is possible, but your attorney must evaluate which route is best for you: evaluate the two degrees to be equal to a Bachelor's and use the Bachelor's plus 5 years for EB-2 or just use the Master's degree (risky).\"} \n", + "\n", + "\n", + "\n", + "48 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 or EB3 with a 4 year degree in civil engineering and 13 years of documented progressive experience in the IT industry?\",\n", + "\"_answer\": \"It is possible to qualify for EB2\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB2 or EB3 visa with a 4 year degree in civil engineering and 13 years of documented progressive experience in the IT industry?\",\n", + "\"_answer\": \"It is possible to get an EB2\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2 or EB3 with a 4 year degree in civil engineering and 13 years of documented progressive experience in the IT industry?\",\n", + "\"_answer\": \"It is possible to meet the requirements for EB2\"} \n", + "\n", + "\n", + "\n", + "49 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country and a CA. I have 10 years of accounting experience, plus a CPA. My firm's lawyers refused to file EB-2 and insisted on EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", + "\"_answer\": \"Your lawyers are correct in that the CA is not accepted as education by USCIS. Consult with a credentials evaluation agency about master's degrees.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country and a CA. I have 10 years of accounting experience, plus a CPA. My firm's lawyers refused to file EB-2 and insisted on EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", + "\"_answer\": \"Your lawyers are accurate in that the CA is not accepted as education by USCIS. Talk to a credentials evaluation agency about master's degrees.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country and a CA. I have 10 years of accounting experience, plus a CPA. My firm's lawyers refused to file EB-2 and insisted on EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", + "\"_answer\": \"Your lawyers are right in that the CA is not accepted as education by USCIS. Consult with a credentials evaluation agency about master's degrees.\"} \n", + "\n", + "\n", + "\n", + "50 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible for me to switch jobs and submit an I-140 and PERM under EB-2 instead of EB-3 with a new employer? How risky is this situation? I could stay with my current employer, but it would take another three years to get my green card under EB-3 with my priority date of February 2007.\",\n", + "\"_answer\": \"You can submit an I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I do not see any issue with carrying the priority date forward if you file an EB-2 through a new employer. As to the risk, that needs to be evaluated by your lawyers.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to change jobs and file an I-140 and PERM under EB-2 instead of EB-3 with a new employer? How dangerous is this situation? I could stay with my current employer, but it would take another three years to get my green card under EB-3 with my priority date of February 2007.\",\n", + "\"_answer\": \"You can submit an I-485 when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I do not see any problem with transferring the priority date forward if you file an EB-2 through a new employer. As to the danger, that needs to be evaluated by your lawyers.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs and file an I-140 and PERM under EB-2 instead of EB-3 with a new employer? How hazardous is this situation? I could stay with my current employer, but it would take another three years to get my green card under EB-3 with my priority date of February 2007.\",\n", + "\"_answer\": \"You can submit an I-485 when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I do not see any difficulty with carrying the priority date forward if you file an EB-2 through a new employer. As to the hazard, that needs to be evaluated by your lawyers.\"} \n", + "\n", + "\n", + "\n", + "51 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Could I be eligible for EB-2 with my qualifications and current job? If I switch employers during the application process, would I have to start over?\",\n", + "\"_answer\": \"It is possible that you could qualify for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not get anything out of the process. However, if you leave after the I-140 is approved, you can carry forward your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB-2 with my master's degree in biomedical engineering and my current job as a senior consultant? If I change employers during the GC application, will I have to start from the beginning?\",\n", + "\"_answer\": \"It is possible that you could be eligible for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not benefit from the process. However, if you leave after the I-140 is approved, you can retain your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a master's degree in biomedical engineering and work as a senior consultant in a company that implements EQMS for biologics, medical device and pharma companies, am I eligible for EB-2? If I switch employers during the GC application, do I have to start over?\",\n", + "\"_answer\": \"You may be able to qualify for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not gain anything from the process. But if you leave after the I-140 is approved, you can keep your priority date.\"} \n", + "\n", + "\n", + "\n", + "52 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs after I-140 approval? I'm in my fifth year of H1-B status. My current employer has filed for my permanent residency in the EB-3 category, since I didn't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Is it possible to wait for I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a new employer?\",\n", + "\"_answer\": \"It is possible and common for a new employer (Employer B) to get an H-1 extension based on the I-140 approval of the previous employer (Employer A). You should discuss the details with an attorney.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I change jobs after I-140 is approved? I'm in my fifth year on H1-B. My current employer has filed for my green card in the EB-3 category, since I didn't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Is it feasible to wait for I-140 approval, get a three year extension with my current employer, and then switch employers? Will I be able to get three more years on H1 with a new employer?\",\n", + "\"_answer\": \"It is possible and common for a different employer (Employer B) to get an H-1 extension based on the I-140 approval of the original employer (Employer A). You should consult with a lawyer about the details.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs after I-140 is accepted? I'm in my fifth year of H1-B status. My current employer has filed for my permanent residency in the EB-3 category, since I didn't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Is it possible to wait for I-140 approval, get a three year extension with my current employer, and then change jobs? Will I be able to get three more years on H1 with a new employer?\",\n", + "\"_answer\": \"It is possible and common for a different employer (Employer B) to get an H-1 extension based on the I-140 approval of the original employer (Employer A). You should speak to a lawyer about the specifics.\"} \n", + "\n", + "\n", + "\n", + "53 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to wait for a promotion before starting the green card process in order to qualify for EB-2? Is a Bachelor's degree plus five years of post-Bachelor's experience or a Master's degree plus two years of experience sufficient for a Senior level position? Does the job description need to specify Bachelor's plus five years or Master's plus two years?\",\n", + "\"_answer\": \"You should consult with your legal counsel to determine when to file. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor's experience is required to qualify.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Should I wait for a promotion before beginning the green card process to be eligible for EB-2? Is a Bachelor's degree and five years of post-Bachelor's experience or a Master's degree and two years of experience enough for a Senior level job? Does the job description need to state Bachelor's plus five years or Master's plus two years explicitly?\",\n", + "\"_answer\": \"You should speak with your attorneys to decide when to file. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor's experience is necessary to qualify.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Should I postpone the green card process until I get a promotion to qualify for EB-2? Is a Bachelor's degree and five years of post-Bachelor's experience or a Master's degree and two years of experience sufficient for a Senior level position? Does the job description need to explicitly mention Bachelor's plus five years or Master's plus two years?\",\n", + "\"_answer\": \"You should consult with your legal advisors to decide when to file. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor's experience is required to qualify.\"} \n", + "\n", + "\n", + "\n", + "54 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) and 10 years of experience, 7.5 of which are in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is a postgraduate degree (not available to undergraduates) and is recognized, you may be eligible for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) and 10 years of experience, 7.5 of which are in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is a postgraduate qualification (not available to undergraduates) and is accepted, you may be eligible for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) and 10 years of experience, 7.5 of which are in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is a postgraduate program (not available to undergraduates) and is acknowledged, you may be eligible for EB-2.\"} \n", + "\n", + "\n", + "\n", + "55 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified to apply for a green card under the EB2 category? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect and Lead (managing 5-20 people). My M.Sc. was evaluated as equivalent to a US Master's degree for an H1 visa. Is this enough?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your job, then EB-2 should be suitable.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2 green card eligibility? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect and Lead (overseeing 5-20 people). My M.Sc. was evaluated as equal to a US Master's degree for an H1 visa. Am I eligible?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your work, then EB-2 should be suitable.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for a green card under the EB2 category? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect and Lead (leading 5-20 people). My M.Sc. was evaluated as equivalent to a US Master's degree for an H1 visa. Is this enough?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your occupation, then EB-2 should work.\"} \n", + "\n", + "\n", + "\n", + "56 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I port my EB3 I-485 with a PD of 06/2006 to an EB2 if my employer is willing to file for me? What is the minimum wage for the EB2 category? Will my current company experience count for the new EB2 category? Any advice on the job responsibilities for EB2?\",\n", + "\"_answer\": \"In theory, this is doable. As for the practical implications, you should consult with the attorneys who will be handling your second green card application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I transfer my EB3 I-485 with a PD of 06/2006 to an EB2 if my employer is willing to file for me? What is the minimum wage for the EB2 category? Does my current company experience count for the new EB2 category? Any tips on the job responsibilities for EB2?\",\n", + "\"_answer\": \"It is theoretically possible. As for the practical implications, you need to speak with the lawyers who will be representing you in the second green card process.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to move my EB3 I-485 with a PD of 06/2006 to an EB2 if my employer is willing to file for me? What is the minimum wage for the EB2 category? Will my current company experience be applicable to the new EB2 category? Any advice on the job responsibilities for EB2?\",\n", + "\"_answer\": \"In theory, this is feasible. As for the practical implications, you must consult with the attorneys who will be handling your second green card application.\"} \n", + "\n", + "\n", + "\n", + "57 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the criteria for EB2 with my MS in Electrical Engineering and 3 years of experience?\",\n", + " \"_answer\": \"Yes, you are eligible for EB2, unless the job requirements are lower than a bachelor's degree and 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2 with my Master's in Electrical Engineering and 3 years of experience?\",\n", + " \"_answer\": \"Yes, you can apply for EB2, unless the job requirements are lower than a bachelor's degree and 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 with my Master's in Electrical Engineering and 3 years of experience?\",\n", + " \"_answer\": \"Yes, you fulfill the criteria for EB2, unless the job requirements are less than a bachelor's degree and 5 years of experience.\"} \n", + "\n", + "\n", + "\n", + "58 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 if I have a Master's in Computer Science from the US and 6 months of experience prior to my current job?\",\n", + "\"_answer\": \"If the job requires a Master's degree, then yes.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB2 visa if I have a Master's in Computer Science from the US and 6 months of experience before my current job?\",\n", + "\"_answer\": \"It depends on if the job requires a Master's degree or not, but if it does, then yes.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2 if I have a Master's in Computer Science from the US and 6 months of experience before my current job?\",\n", + "\"_answer\": \"It depends on the job requirements, but if a Master's degree is necessary, then yes.\"} \n", + "\n", + "\n", + "\n", + "59 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the prospects of me getting a green card through the EB-2 category after I finish my PhD in semiconductor devices and get a job in the industry?\",\n", + "\"_answer\": \"Your chances of obtaining a green card through EB-2 are quite good.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am in my last year of a PhD in semiconductor devices at a US university. I have done my MS from the same university and have around 5 first author publications. What are the odds of me getting a green card through the EB-2 category once I get a job in the industry?\",\n", + "\"_answer\": \"You have a strong likelihood of getting a green card through EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am close to completing my PhD in semiconductor devices at a university in the US. I have a MS from the same university and 5 first author publications. What are the possibilities of me getting a green card through the EB-2 category after I get a job in the industry?\",\n", + "\"_answer\": \"Your chances of getting a green card through EB-2 are quite high.\"} \n", + "\n", + "\n", + "\n", + "60 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to transfer my PD from EB3 to EB2? I filed my PERM under the EB3 category on October 1, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? If so, can I keep my EB3 file running in parallel? Is there a way to transfer my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed four years and two months on H1B. Can you suggest if I can change my employer now to file for EB2?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications for the same individual for different jobs with the same company. However, you cannot transfer your PD until the I-140 is approved. I see no issue with changing jobs right away. You may have just enough time.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I move my PD from EB3 to EB2? I submitted my PERM under the EB3 category on October 1, 2008 and got an audit. According to the current PERM dates, they are processing audits from August 2008. Is it possible to file with the same employer under EB2? If so, can I keep my EB3 file running in parallel? Is there a way to transfer my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed four years and two months on H1B. Can you suggest if I can switch my employer now to file for EB2?\",\n", + "\"_answer\": \"It is not feasible to have two PERM applications for the same individual for different jobs with the same company. However, you cannot move your PD until the I-140 is approved. I see no issue with changing jobs right away. You may have just enough time.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to transfer my PD from EB3 to EB2? I filed my PERM under the EB3 category on October 1, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? If so, can I keep my EB3 file running in parallel? Is there a way to move my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed four years and two months on H1B. Can you suggest if I can change my employer now to file for EB2?\",\n", + "\"_answer\": \"It is not logical to have two PERM applications for the same individual for different jobs with the same company. However, you cannot transfer your PD until the I-140 is approved. I see no issue with changing jobs right away. You may have just enough time.\"} \n", + "\n", + "\n", + "\n", + "61 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 with my qualifications?\",\n", + "\"_answer\": \"It is unlikely that you would qualify for EB2 with a 3-year bachelor's degree, certification as a software architect, 15+ years of experience, and a salary of 100k+.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2 with my credentials?\",\n", + "\"_answer\": \"It is unlikely that you would be eligible for EB2 with a 3-year bachelor's degree, certification as a software architect, 15+ years of experience, and a salary of 100k+.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2?\",\n", + "\"_answer\": \"It is unlikely that you meet the requirements for EB2 with a 3-year bachelor's degree, certification as a software architect, 15+ years of experience, and a salary of 100k+.\"} \n", + "\n", + "\n", + "\n", + "62 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to apply for EB2 Schedule A despite the recent denial of my PERM application due to layoffs in my company?\",\n", + "\"_answer\": \"If you meet the qualifications, you can submit a Schedule A application without any delay.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I still apply for EB2 Schedule A despite the denial of my PERM application caused by the layoffs in my company?\",\n", + "\"_answer\": \"If you are eligible, you can submit the Schedule A application right away without any issues.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Given the recent denial of my PERM application due to layoffs in my company, can I still apply for EB2 Schedule A?\",\n", + "\"_answer\": \"If you are qualified, you can go ahead and file the Schedule A application without any problems.\"} \n", + "\n", + "\n", + "\n", + "63 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I have a B.Tech in engineering from India and over 13 years of experience in IT. I am currently an IT architect and my company is ready to process my green card. Am I eligible?\",\n", + "\"_answer\": \"It appears that you meet the qualifications for EB2, given that your B.Tech is a 4-year degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I have a B.Tech in engineering from India and more than 13 years of experience in IT. I am an IT architect now and my company is ready to process my green card. Can I apply?\",\n", + "\"_answer\": \"It looks like you are eligible for EB2, as long as your B.Tech is a 4-year degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Tech in engineering from India and over 13 years of experience in IT. I am an IT architect now and my company is willing to process my green card. Am I able to apply?\",\n", + "\"_answer\": \"It seems that you are qualified for EB2, provided that your B.Tech is a 4-year degree.\"} \n", + "\n", + "\n", + "\n", + "64 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB-2 if I have a 4 year US Bachelors degree, a 2 year Masters degree in Chemistry, and have been working on an H-1B for the same US university as a research associate for 2 years, with my publications (2-3) still pending and me being secondary on most of them?\",\n", + "\"_answer\": \"Yes, you qualify for EB-2, however whether or not a promotion is necessary is something that your lawyer and the employer must decide. Any position that requires a Masters or Bachelors degree plus 5 years of progressively responsible experience is eligible for EB-2 filing.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 4 year US Bachelors degree in Chemistry, a 2 year Masters degree, and have been working on an H-1B for the same US university as a research associate for 2 years, with my publications (2-3) still pending and me being secondary on most of them. Do I meet the requirements for EB-2?\",\n", + "\"_answer\": \"Yes, you are eligible for EB-2. Whether or not a promotion is necessary is something that your lawyer and the employer must decide. Any position that requires a Masters or Bachelors degree plus 5 years of progressively responsible experience is qualified for EB-2 filing.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 4 year US Bachelors degree in Chemistry, a 2 year Masters degree, and have been working on an H-1B for the same US university as a research associate for 2 years, with my publications (2-3) still pending and me being secondary on most of them. Am I qualified for EB-2?\",\n", + "\"_answer\": \"Yes, you are qualified for EB-2. Whether or not a promotion is needed is something that your lawyer and the employer must decide. Any position that requires a Masters or Bachelors degree plus 5 years of progressively responsible experience is eligible for EB-2 filing.\"} \n", + "\n", + "\n", + "\n", + "65 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I completed my BSc in Computer Science from St. Xaviers Mumbai and my MCA from REC Trichy. I have 7 years of experience in the IT industry and my employer is filing my Green Card. Is this enough for EB2?\",\n", + "\"_answer\": \"Yes, you meet the requirements for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I have a BSc in Computer Science from St. Xaviers Mumbai and an MCA from REC Trichy. I have 7 years of work in the IT industry and my employer is filing for my Green Card. Am I eligible?\",\n", + "\"_answer\": \"Yes, you are eligible for EB2.\"} \n", + "\n", + "\n", + "\n", + "66 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB-2 green card if I have a BSc and a BTech, both 3 years long, plus 8 years of experience, and the position requires a MS or a BS plus 5 years of experience?\",\n", + "\"_answer\": \"It appears unlikely that you would be eligible for an EB-2 green card, as combining two 3-year bachelor's degrees is usually not allowed.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB-2 green card if I have a BSc and a BTech, both 3 years long, plus 8 years of experience, and the job requires a MS or a BS plus 5 years of experience?\",\n", + "\"_answer\": \"It is unlikely that you would meet the criteria for an EB-2 green card, as it is generally not permissible to combine two 3-year bachelor's degrees.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 green card if I have a BSc and a BTech, both 3 years long, plus 8 years of experience, and the position requires a MS or a BS plus 5 years of experience?\",\n", + "\"_answer\": \"It is unlikely that you would qualify for an EB-2 green card, as combining two 3-year bachelor's degrees is usually not allowed.\"} \n", + "\n", + "\n", + "\n", + "67 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 with my educational background?\",\n", + "\"_answer\": \"It is likely that you would qualify for EB2 with your 3 year bachelor's degree and 2 year master's degree, as long as the two degrees are in the same or similar fields.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I combine my educational degrees for EB2?\",\n", + "\"_answer\": \"Yes, you can combine your 3 year bachelor's degree and 2 year master's degree to meet the requirements of EB2, as long as the two degrees are in the same or similar fields.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the minimum educational requirement for EB2?\",\n", + "\"_answer\": \"The minimum educational requirement for EB2 is a 4 year bachelor's degree, or a combination of a 3 year bachelor's degree and a 2 year master's degree in the same or similar fields.\"} \n", + "\n", + "\n", + "\n", + "68 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the timeline for green card processing and EB2 if I have a US Masters degree and am currently employed by Company A? I am on an H1-B visa and it will expire in a month. I am trying to make an informed decision about whether to pursue the green card or change jobs. Is there a way to expedite the process?\",\n", + "\"_answer\": \"For people from countries with an EB2 backlog, the timeline can range from 3-4 years or longer, depending on various factors. The advantage of getting to the I-140 approval stage is that you can transfer your priority date to a new employer and get an H-1B extension beyond six years.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a Masters degree from the US and I think I qualify for the EB2 category for a green card. I am currently employed by Company A and I am trying to decide if I should go ahead with the green card process or look for a new job. My H1-B visa will expire in a month. How long will the process take if I start it now? Is there a way to speed it up?\",\n", + "\"_answer\": \"For individuals from countries with an EB2 backlog, the timeline can range from 3-4 years or longer, depending on various factors. An advantage of reaching the I-140 approval stage is that you can transfer your priority date to a new employer and get an H-1B extension beyond six years.\"} \n", + "\n", + "\n", + "\n", + "69 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can my current employer sponsor me for EB2 after they promote me to clinical specialist, even if I have only 1 year and 1/2 experience with them?\",\n", + "\"_answer\": \"It is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. A qualified lawyer can help you assess the chances.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am promoted to clinical specialist by my current employer, can they still sponsor me for EB2, even though I only have 1 year and 1/2 experience with them?\",\n", + "\"_answer\": \"Under the current law, it is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. Consulting a lawyer is the best way to determine the chances of success.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my employer promotes me to clinical specialist, can they still sponsor me for EB2, even though I have only 1 year and 1/2 experience with them?\",\n", + "\"_answer\": \"The law allows for the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. A legal expert can help you assess the chances of success.\"} \n", + "\n", + "\n", + "\n", + "70 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in Electronics from India in 2004 and a combined experience of 6 years (3 years in India and 3 years in the US). Is it necessary to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"Given your four-year degree and more than five years of post-degree experience, you should have a good chance of qualifying for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I have a B.Tech in Electronics from India in 2004 and a total of 6 years of experience (3 years in India and 3 years in the US). Is it a must to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"With your four-year degree and more than five years of post-degree experience, you should be able to have a shot at EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in Electronics from India in 2004 and a combined experience of 6 years (3 years in India and 3 years in the US). Is it required to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"Given your four-year degree and more than five years of post-degree experience, you should have a good chance of meeting the criteria for EB2.\"} \n", + "\n", + "\n", + "\n", + "71 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Does volunteer work count as experience for EB2? I have a BSOT and did two years of OT volunteer work in an adult setting in my home country, but I was not yet licensed for the first six months. Would that count towards the five years of experience?\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that necessitates paid experience. Volunteer experience could be taken into consideration.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Does volunteer work count towards the five years of experience for EB2? I have a BSOT and did two years of OT volunteer work in an adult setting in my home country, but I was not yet licensed for the first six months.\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I know of that requires paid experience. Volunteer experience could be taken into account.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Does volunteer work count as experience for EB2? I have a BSOT and did two years of OT volunteer work in an adult setting in my home country, but I was not yet licensed for the first six months. Does that count towards the five years of experience?\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that mandates paid experience. Volunteer experience could potentially be used.\"} \n", + "\n", + "\n", + "\n", + "72 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor's degree in Computer Science Engineering and I am currently working as a Subject Matter Expert in the US on an L1B visa with 4 years of experience. I have also completed two Microsoft certifications and AICPCU certifications. Can I apply for a green card under the EB2 category?\",\n", + "\"_answer\": \"You must have 5 years of experience after your Bachelor's degree to be eligible. Certifications do not usually count.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor's degree in Computer Science Engineering and I am currently employed as a Subject Matter Expert in the US on an L1B visa with 4 years of experience. I have also obtained two Microsoft certifications and AICPCU certifications. Can I apply for a green card under the EB2 category?\",\n", + "\"_answer\": \"You must have 5 years of experience following your Bachelor's degree to qualify. Certifications are usually not considered.\"} \n", + "\n", + "\n", + "\n", + "73 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"If one has an approved I-140, is it necessary to switch to a similar job in order to preserve the priority date?\",\n", + "\"_answer\": \"No, the job does not have to be the same. The green card application must be restarted, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"}\n", + "\n", + "######\n", + "{\"_question\": \"If an individual has an approved I-140, is it mandatory to switch to a comparable job to maintain the priority date?\",\n", + "\"_answer\": \"No, the job does not have to be comparable. The green card process must be restarted, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"}\n", + "\n", + "######\n", + "{\"_question\": \"If someone has an approved I-140, is it necessary to move to a comparable job to save the priority date?\",\n", + "\"_answer\": \"No, the job does not have to be comparable. The green card application must be restarted, but the priority date can be ported to any job and category (EB1, EB2, EB3).\"} \n", + "\n", + "\n", + "\n", + "74 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB2 if the job I am in requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is the concept of 'cross chargeability' applicable to my green card application? If so, how can I take advantage of it?\",\n", + "\"_answer\": \"Yes, you are eligible to file an EB2 application if the role requires a Bachelor's degree plus 5 years of work experience. Cross chargeability is applicable to your green card application, and you should discuss the details with your lawyers.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 if the job I am in requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is the concept of 'cross chargeability' applicable to my green card application? If so, what is the best way to take advantage of it?\",\n", + "\"_answer\": \"Yes, you meet the requirements to apply for EB2 if the role requires a Bachelor's degree plus 5 years of work experience. Cross chargeability is applicable to your green card application, and you should consult with your lawyers to learn how to benefit from it.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible to file an EB2 application if the job I am in requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is the concept of 'cross chargeability' applicable to my green card application? If so, how can I make use of it?\",\n", + "\"_answer\": \"Yes, you can apply for EB2 if the role requires a Bachelor's degree plus 5 years of work experience. Cross chargeability is applicable to your green card application, and you should speak to your lawyers to find out how to take advantage of it.\"} \n", + "\n", + "\n", + "\n", + "75 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", + "\"_answer\": \"It is possible to be eligible for an EB2 visa if your job requires an advanced degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", + "\"_answer\": \"Yes, you may be eligible for an EB2 visa if your job requires an advanced degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", + "\"_answer\": \"It is possible to be approved for an EB2 visa if your job requires an advanced degree.\"} \n", + "\n", + "\n", + "\n", + "76 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I am an Indian citizen and my wife is a Russian citizen, born in Russia. We are both applying for green cards. Can I use her country's priority date (\"current\" as of today) for the green card application?\",\n", + "\"_answer\": \"Yes, that is possible. This is referred to as 'cross changeability'.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am an Indian citizen and my wife is a Russian citizen. We are both applying for green cards. Is it possible to use her country's priority date (\"current\" as of today) for the green card application?\",\n", + "\"_answer\": \"Yes, that is allowed. This is known as 'cross changeability'.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am an Indian citizen and my wife is a Russian citizen. We are both applying for green cards. Can I use her country's priority date (\"current\" as of today) for the green card application?\",\n", + "\"_answer\": \"Yes, that is doable. This is referred to as 'cross changeability'.\"} \n", + "\n", + "\n", + "\n", + "77 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I be eligible for an EB2 if my employer advertises a new job with a master's degree requirement after I am hired?\",\n", + "\"_answer\": \"No, you will not be able to meet the criteria for an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am hired for a state job that requires a bachelor's degree and one year of experience, but I have a US-based master's degree, can I be eligible for an EB2?\",\n", + "\"_answer\": \"No, you will not qualify for an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my employer changes the job requirements to include a master's degree after I am hired, will I be eligible for an EB2?\",\n", + "\"_answer\": \"No, you will not be able to meet the criteria for an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"} \n", + "\n", + "\n", + "\n", + "78 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 with an online masters degree?\", \n", + "\"_answer\": \"The most important factor is to determine if the degree is accredited. Speak with the school to find out.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2 with a distance learning masters degree?\", \n", + "\"_answer\": \"The key is to check if the degree is accredited. Consult with the school to find out.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get EB2 with a masters degree earned online?\", \n", + "\"_answer\": \"The primary concern is to verify if the degree is accredited. Reach out to the school to learn more.\"} \n", + "\n", + "\n", + "\n", + "79 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"To be eligible for EB-2 status under advanced degrees, is it enough to have a Master's degree from a US university or must the job require it?\",\n", + "\"_answer\": \"The job must also necessitate EB-2 level qualifications.\"}\n", + "\n", + "######\n", + "{\"_question\": \"To qualify for EB-2 under advanced degrees, is it enough to have a Master's degree from a US university or must the job demand it?\",\n", + "\"_answer\": \"The job must also call for EB-2 level qualifications.\"}\n", + "\n", + "######\n", + "{\"_question\": \"To be eligible for EB-2 status under advanced degrees, is it sufficient to have a Master's degree from a US university or must the job necessitate it?\",\n", + "\"_answer\": \"The job must also require EB-2 level qualifications.\"} \n", + "\n", + "\n", + "\n", + "80 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is there any issue with my educational background for the I-140 application, given that my PERM is approved under EB2? I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM, and all my education is from India.\",\n", + "\"_answer\": \"It depends on the specifics, but generally speaking, if the B.Tech is supposed to be a 4-year degree and you got it in three due to your diploma, you should be okay.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Given that my PERM is approved under EB2, is there any problem with my educational background for the I-140 application? I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM, and all my education is from India.\",\n", + "\"_answer\": \"It varies, but usually, if the B.Tech is supposed to be a 4-year degree and you got it in three because of your diploma, you should be in the clear.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my PERM is approved under EB2, is there any issue with my educational background for the I-140 application? I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM, and all my education is from India.\",\n", + "\"_answer\": \"It depends on the details, but generally, if the B.Tech is supposed to be a 4-year degree and you got it in three due to your diploma, you should be fine.\"} \n", + "\n", + "\n", + "\n", + "81 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the typical amount of time it takes to get a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to submit the petition.\",\n", + "\"_answer\": \"The biggest holdup for most people is the priority date movement. Have a look at the Visa Bulletin and the Perm Processing Times. That should give you a good idea of the timeline.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the average duration to get a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to file the application.\",\n", + "\"_answer\": \"The biggest delay for most people is in the priority date movement. Check out the Visa Bulletin and the Perm Processing Times. That should give you a good idea of the timeline.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the average time it takes to get a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to submit the petition.\",\n", + "\"_answer\": \"The biggest obstacle for most people is the priority date movement. Have a look at the Visa Bulletin and the Perm Processing Times. That should give you a good idea of the timeframe.\"} \n", + "\n", + "\n", + "\n", + "82 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB-2 eligibility? I have a Bachelor's degree in Computing from the UK, which was a three year course, and a Master's degree from the UK in Computing, which was a one year course. Will this be enough to qualify for EB-2?\",\n", + "\"_answer\": \"It is impossible to say for certain. It all depends on the type of degrees and the language used in the Form I-9089.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Will I be eligible for EB-2? I have a Bachelor's degree in Computing from the UK, which was a three year course, and a Master's degree from the UK in Computing, which was a one year course. Is this enough to meet the requirements?\",\n", + "\"_answer\": \"It is not possible to predict. It all depends on the type of degrees and the language used in the Form I-9089.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB-2? I have a Bachelor's degree in Computing from the UK, which was a three year course, and a Master's degree from the UK in Computing, which was a one year course. Is this sufficient to qualify?\",\n", + "\"_answer\": \"It is not possible to tell. It all depends on the type of degrees and the language used in the Form I-9089.\"} \n", + "\n", + "\n", + "\n", + "83 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I use cross chargeability if I was born in India and have an approved EB2 I-140, but my priority date is from November 2008? If I marry someone from a country other than India or China, can we both file for I-485 right away?\",\n", + "\"_answer\": \"Cross chargeability is an option if your spouse was born in a country other than India. Your spouse can only file for I-485 if they are in the US.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I was born in India and have an EB2 I-140 that has been approved, but my priority date is from November 2008. Can I use cross chargeability in this case? If I marry someone from a different country than India or China, can we both submit I-485 applications immediately?\",\n", + "\"_answer\": \"Cross chargeability is a possibility if your partner was born in a country other than India. They can only submit an I-485 if they are in the US.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am an H1B holder, born in India, with an approved EB2 I-140 but I cannot apply for I-485 since my priority date is from November 2008. Is cross-chargeability applicable in this case if I marry someone from a country other than India or China? Is it okay if my partner is not in the US right now or on a different visa category than H1B? Will marrying enable us to file for I-485 right away?\",\n", + "\"_answer\": \"Cross changeability is a possibility if your spouse was born in a country other than India. They can only file their I-485 if they are in the US.\"} \n", + "\n", + "\n", + "\n", + "84 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I still be refused by the US Embassy despite having my EB2 approved by USCIS?\",\n", + "\"_answer\": \"It is not likely, but it is a possibility.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is there a chance of being denied by the US Embassy even after my EB2 was approved by USCIS?\",\n", + "\"_answer\": \"It is not probable, but it is a possibility.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is there a risk of being rejected by the US Embassy after my EB2 was approved by USCIS?\",\n", + "\"_answer\": \"It is not probable, but it is a possibility.\"} \n", + "\n", + "\n", + "\n", + "85 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility criteria for EB-2 US Masters Degree for a technology professional with nearly 9 years of work experience?\",\n", + "\"_answer\": \"If you have earned a master's degree by the time you file your perm, you should be eligible to apply for EB-2 US Masters Degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB-2 US Masters Degree with my MBA in Finance?\",\n", + "\"_answer\": \"Yes, as long as you have earned the degree by the time you file your perm, you should be able to get EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Will my previous experience be taken into consideration when applying for EB-2 US Masters Degree?\",\n", + "\"_answer\": \"Yes, as long as you have earned the degree by the time you file your perm, your previous experience should be evaluated.\"} \n", + "\n", + "\n", + "\n", + "86 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can company B refile an I-140 using the labor certificate from company A?\",\n", + "\"_answer\": \"It is possible to refile the I-140 under EB2 with the labor certificate from company A and transfer the priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to use the labor certificate from company A to refile the I-140 under EB2?\",\n", + "\"_answer\": \"Yes, it is possible to refile the I-140 under EB2 with the labor certificate from company A and transfer the priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can company B use the labor certificate from company A to refile the I-140?\",\n", + "\"_answer\": \"Yes, it is possible to utilize the labor certificate from company A to refile the I-140 under EB2 and transfer the priority date.\"} \n", + "\n", + "\n", + "\n", + "87 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I have a 10+3.5 years diploma and 3 years BS. I studied computer engineering for the diploma and information systems (BITS) for the BS. My labor certification is in the process under the EB2 category. I am concerned that my I-140 might be denied due to my education. Mr. Khanna, do you have any successful cases with a diploma and BS?\",\n", + "\"_answer\": \"I understand your worry. These types of cases can be difficult to get approved. I am not able to comment on your specific situation since I do not know the details. I suggest you talk to your lawyers and if possible, get a written response.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 10+3.5 years diploma and 3 years BS. I studied computer engineering for the diploma and information systems (BITS) for the BS. My labor certification is in the process under the EB2 category. I am worried that my I-140 might be denied due to my education. Mr. Khanna, do you have any approval cases with a diploma and BS?\",\n", + "\"_answer\": \"I can understand your apprehension. These types of cases can be hard to get approved. I cannot comment on your particular case since I do not know the facts. I recommend you speak to your lawyers and if possible, get a written reply.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 10+3.5 years diploma plus 3 years BS. I did 3.5 years diploma in computer engineering plus 3 years BS in information systems (BITS). My labor is in the process under EB2 catageory. I am concerned that my I-140 is going to be denied because of my education. Mr. Khanna, do you have any approval cases with a diploma and BS?\",\n", + "\"_answer\": \"I sympathize with your worry. These types of cases can be difficult to get approved. I am unable to comment on your particular situation since I do not know the details. I suggest you consult with your lawyers and if possible, get a response in writing.\"} \n", + "\n", + "\n", + "\n", + "88 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the odds of my EB1 extraordinary ability petition being approved on the second filing?\",\n", + "\"_answer\": \"It is impossible to determine without knowing the specifics of your case.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood of my EB1 extraordinary ability application being accepted on the second attempt?\",\n", + "\"_answer\": \"It is impossible to say without having access to the details of your case.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of my EB1 extraordinary ability petition being accepted on the second filing?\",\n", + "\"_answer\": \"It is impossible to predict without having knowledge of your case.\"} \n", + "\n", + "\n", + "\n", + "89 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for an EB2 visa? I have a Bachelor's degree, completed a medical program which is equivalent to a Master's degree, and have been a faculty member/administrator at a top nursing school in Manila for five years. I am also a PhD student in a top university in Manila majoring in biology. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have a post-graduate degree (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You should speak to your lawyer about applying for an EB2 and transferring your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB2 visa? I have a Bachelor's degree, and I have completed a medical program which is equivalent to a Master's degree. I have been a faculty member/administrator at a top nursing school in Manila for five years and I am also a PhD student in a top university in Manila majoring in biology. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have a post-graduate degree (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You should consult with your lawyer about applying for an EB2 and transferring your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to apply for an EB2 visa? I have a Bachelor's degree, and I have completed a medical program which is equivalent to a Master's degree. I have been a faculty member/administrator at a top nursing school in Manila for five years and I am also a PhD student in a top university in Manila majoring in biology. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have a post-graduate degree (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You should discuss with your lawyer about applying for an EB2 and transferring your priority date.\"} \n", + "\n", + "\n", + "\n", + "90 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to wait to get my diploma before I can apply for EB2?\",\n", + "\"_answer\": \"Generally, immigration law looks at when the degree was finished, not when the diploma was given. Consult with your attorneys.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my official transcript to apply for EB2 or do I need to wait until I get my diploma?\",\n", + "\"_answer\": \"Generally, immigration law looks at when the degree was accomplished - not when the diploma was issued. Speak with your legal advisors.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to wait until I get my diploma to apply for EB2 or can I use my official transcript?\",\n", + "\"_answer\": \"Generally, immigration law focuses on when the degree was completed - not when the diploma was conferred. Consult with your lawyers.\"} \n", + "\n", + "\n", + "\n", + "91 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the risk of my education being denied when filing under EB-2?\", \n", + "\"_answer\": \"Your educational qualifications may be scrutinized during the I-140 stage, but USCIS can query any of these matters at any point. I have seen I-140s that were approved initially but later denied at the I-485 stage.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood of my educational background being rejected when I apply for EB-2?\", \n", + "\"_answer\": \"Your educational qualifications could be examined in depth during the I-140 phase, but USCIS can raise any of these issues at any stage. I have seen cases where I-140s were accepted initially but later denied at the I-485 stage.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the risk of my educational qualifications being denied when filing under EB-2?\", \n", + "\"_answer\": \"Your educational background may be investigated thoroughly at the I-140 stage, but USCIS can raise any of these matters at any point. I have seen I-140s that were approved initially but later denied at the I-485 stage.\"} \n", + "\n", + "\n", + "\n", + "92 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to file for an employment green card in the EB2 category if I have a B.Sc in Physics from India and an MCA in IT from India?\",\n", + "\"_answer\": \"Yes, but make sure your lawyers draft the PERM application carefully so that if EB2 is denied, EB3 should still be approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a B.Sc in Physics from India and an MCA in IT from India, can I apply for an employment green card under the EB2 category?\",\n", + "\"_answer\": \"Yes, but your lawyers should be sure to craft the PERM application carefully so that if EB2 is not accepted, EB3 should still be approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an employment green card in the EB2 category if I have a B.Sc in Physics from India and an MCA in IT from India?\",\n", + "\"_answer\": \"Yes, but your lawyers should be sure to create the PERM application carefully so that if EB2 is denied, EB3 should still be accepted.\"} \n", + "\n", + "\n", + "\n", + "93 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I file for an employment-based green card in the EB2 category if I have a B.Sc in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"It is feasible, but make sure your attorneys craft the PERM application cautiously, so if EB2 is denied, EB3 should still be accepted.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for an EB2 green card if I have a B.Sc in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"It is possible, but have your lawyers create the PERM application carefully, so if EB2 is declined, EB3 should still be approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for an EB2 green card if I have a B.Sc in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"It is doable, but make sure your attorneys design the PERM application prudently, so if EB2 is rejected, EB3 should still be granted.\"} \n", + "\n", + "\n", + "\n", + "94 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Does my wife qualify for EB-2 processing with her post-professional degree in occupational therapy?\", \n", + "\"_answer\": \"Occupational therapists do not have a special category like physical therapists, however, it is possible to qualify for EB-2. Consult with her lawyers for more information.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of my wife getting EB-2 processing with her OT degree?\", \n", + "\"_answer\": \"It is possible for occupational therapists to qualify for EB-2, although there is no special category like physical therapists. Your wife should speak to her lawyers for more information.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Does my wife's post-professional degree in OT make her eligible for EB-2 processing?\", \n", + "\"_answer\": \"Occupational therapists do not have a special category like physical therapists, but it is possible to qualify for EB-2. Your wife should consult with her lawyers for more information.\"} \n", + "\n", + "\n", + "\n", + "95 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB-2 green card if I have 3 years of IT experience and am in the process of completing a master's degree?\",\n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card once you finish your master's degree and take up a job that requires such degree or bachelor's plus five years experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have 3 years of experience in the IT field and am in the process of getting my master's degree, am I eligible for an EB-2 green card?\",\n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card once you have completed your master's degree and acquired a job that requires such degree or bachelor's plus five years experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB-2 green card if I have 3 years of IT experience and am in the process of obtaining a master's degree?\",\n", + "\"_answer\": \"Yes, you are eligible to apply for an EB-2 green card once you finish your master's degree and secure a job that requires such degree or bachelor's plus five years experience.\"} \n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for id, batch_inputs_string in enumerate(qaa_list_encoded):\n", + " print(id, \"\\n\") # \"\\n\\n\\n\", \"input:\\n\", batch_inputs_string, \"\\n\"\n", + " completion_batch = openai.Completion.create(\n", + " prompt=batch_inputs_string, \n", + " model=\"text-davinci-003\",\n", + " temperature = 0.2,\n", + " max_tokens = 1000 # The maximum number of tokens to generate in the completion\n", + " )\n", + " results_string = completion_batch['choices'][0]['text']\n", + " print(results_string, \"\\n\\n\\n\")\n", + " qaa_augmented_raw.append(results_string)" + ] + }, + { + "cell_type": "markdown", + "id": "742c9e49-a5f5-440c-be51-ad395ab241a7", + "metadata": {}, + "source": [ + "#### Generate synthetic data with high temperature" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "6085d004-14b5-48b2-b343-4b0f17112137", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I initiate the green card process if my H-1B is picked in the lottery and I have a masters in engineering management?\",\n", + "\"_answer\": \"Yes, the employer can initiate the green card process even before you join. You can review the salary figures for each county and profession at this link -https://www.flcdatacenter.com/\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a masters in engineering management and my employer has filed an H-1B, is it possible to start the green card process?\",\n", + "\"_answer\": \"Yes, the employer can begin the green card process at any time, even before you join. You can find the salary caps for EB-2 advanced degree holders by county and profession in this link -https://www.flcdatacenter.com/\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I have the option to initiate the green card process if my employer has submitted an H-1B and I have a masters in engineering management?\",\n", + "\"_answer\": \"Yes, the employer can commence the green card process prior to you joining. You can look up the minimum salary caps for EB-2 advanced degree holders by county and profession in this link -https://www.flcdatacenter.com/\"} \n", + "\n", + "\n", + "\n", + "1 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility and process for porting from EB-3 to EB-2 for a pending I-485? Is it necessary to file another I-485 application or just a letter to USCIS?\",\n", + "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. However, if the PERM was filed as an EB-2, you can file a downgrade second case as EB-3 with the same PERM. For more information, please refer to the FAQs in detail...\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the criteria for and the steps of porting from EB-3 to EB-2 for a pending I-485? Is it necessary to submit another I-485 application or just a letter to USCIS?\",\n", + "\"_answer\": \"It is possible to move up from EB-3 to EB-2 as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. But if the PERM was filed as an EB-2, you can file a downgrade second case as EB-3 with the same PERM. For more information, please consult the FAQs in detail...\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the requirements and procedure of porting from EB-3 to EB-2 for a pending I-485? Is it necessary to submit another I-485 application or just a letter to USCIS?\",\n", + "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. But if the PERM was filed as an EB-2, you can file a downgrade second case as EB-3 with the same PERM. For more information, please refer to the FAQs in detail...\"} \n", + "\n", + "\n", + "\n", + "2 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of me qualifying for EB-1C/International Managers or Executives? I was in the US on an H1B visa for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. What is my likelihood of obtaining an L1A? Do I need to be in the US to re-apply for my green card under EB1C, or can my company apply for it while I am in Canada? If I get an I-140 approval under EB1C, can I get an L1A and move to the US? Is this the right time to apply for EB1C in the next couple of months, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"Please discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from day one, as attempting to do so a year down the line will not be successful.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are my odds of qualifying for EB-1C/International Managers or Executives? I had an H1B visa in the US for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. What is the probability of me getting an L1A? Do I need to be in the US to re-apply for my green card under EB1C, or can my company apply for it while I am in Canada? If I get an I-140 approval under EB1C, can I get an L1A and move to the US? Is this the ideal time to apply for EB1C in the next couple of months, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"Discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from the start, as attempting to do so a year down the line will not be successful.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are my chances of qualifying for EB-1C/International Managers or Executives? I had an H1B visa in the US for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second-level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. What is the likelihood of me getting an L1A? Do I need to be in the US to re-apply for my green card under EB1C, or can my company apply for it while I am in Canada? If I get an I-140 approval under EB1C, can I get an L1A and move to the US? Is this the proper time to apply for EB1C in the next couple of months, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"Consult your lawyers about your job description that is intended in the foreign country outside the US. Make sure you plan for it from the beginning, as trying to do so a year down the line will not be successful.\"} \n", + "\n", + "\n", + "\n", + "3 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Would it be a good idea for my wife and I to switch from EB-2 to EB-3 for our I-140 application, given that EB-3 is now ahead of EB-2?\",\n", + "\"_answer\": \"I don't see any issue with applying for EB-3 and then using the faster option when the time comes.\"}\n", + "\n", + "######\n", + "{\"_question\": \"My wife and I have been on EADs since 2012 when our priority date became current. We are the primary and dependent applicants on the I-485. Would it be beneficial for us to switch from EB-2 to EB-3 since EB-3 is now ahead of EB-2?\",\n", + "\"_answer\": \"I don't think there would be any harm in applying for EB-3 and then selecting the quicker option when the time comes.\"} \n", + "\n", + "\n", + "\n", + "4 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What can I do to ensure that my H-1B is approved for three years, not a shorter duration? I have already been approved for a one year period which expires on October 27th, 2019. I work through a consultancy. Are there any precautions I can take for the upcoming extension? Are there any particular documents needed for the three year approval? If I go for stamping, do I need to be aware of my social media presence at the port of entry? What tips or recommendations do you have in regards to social media during port of entry? My EB2 priority date is February 4th, 2015 and I am planning to marry a girl who is a Nepal citizen and is currently on OPT. Can I move my priority date to the EB2 Nepal category after marriage? If so, what would be my next steps and how soon can I file for an I-485 interview?\",\n", + "\"_answer\": \"Typically the only way you can get a three year extension is if you can prove that the project will go on for three years.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What can I do to secure a three year H-1B approval instead of a shorter duration? My current approval is for one year and will expire on October 27th, 2019. I am employed through a consultancy. Are there any steps I can take to ensure a successful three year extension? What documents will I need to provide for the three year approval? If I go for stamping, should I be mindful of my social media presence at the port of entry? Are there any tips or advice you can provide about social media during port of entry? My EB2 priority date is February 4th, 2015 and I am planning to marry a girl who is a Nepal citizen and is currently on OPT. Is it possible to move my priority date to the EB2 Nepal category after marriage? If so, what would be my next steps and how quickly can I file for an I-485 interview?\",\n", + "\"_answer\": \"Generally the only way you can get a three year extension is if you can demonstrate that the project will go on for three years.\"} \n", + "\n", + "\n", + "\n", + "5 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the possibilities for remaining in the USA after the expiration of my H-1B visa and I-94?\", \n", + "\"_answer\": \"I do not believe you would qualify for a tourist visa or tourist status, but you can apply for it.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are my options for staying in the US legally after my H-1B and I-94 expire?\", \n", + "\"_answer\": \"It is unlikely that you would be granted a tourist visa or tourist status, but you can attempt to apply for it.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What can I do to remain in the US after my H-1B and I-94 expire?\", \n", + "\"_answer\": \"It is unlikely that you would be able to obtain a tourist visa or tourist status, but you can try to apply for it.\"} \n", + "\n", + "\n", + "\n", + "6 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to downgrade a case from EB-2 to EB-3 for priority date advantage, while still keeping the existing EB-2 filing intact? If so, what is the process to do this? Do I need to file a new Labor and I-140?\",\n", + "\"_answer\": \"Yes, your EB-2 filing will not be affected. You can file an EB-3/I-140 and I believe you can also file an I-485 if your dates are current.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I move my case from EB-2 to EB-3 to gain priority date advantage, while preserving my EB-2 filing? What is the procedure for this? Do I need to submit a new Labor and I-140?\",\n", + "\"_answer\": \"Your EB-2 filing will remain unaffected. You can submit an EB-3/I-140 and I think you can also submit an I-485 if your dates are current.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the process for downgrading a case from EB-2 to EB-3 for priority date advantage, while keeping the EB-2 filing in place? Do I have to file a Labor and I-140 again?\",\n", + "\"_answer\": \"Your EB-2 filing will stay unaffected. You can file an EB-3/I-140 and it appears you can also file an I-485 if your dates are current.\"} \n", + "\n", + "\n", + "\n", + "7 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"If my EB-2 petition has been approved and I had originally applied for EB-3 in 2011, but now the EB-3 dates are progressing, will I be eligible to still use EB-3 even if my priority date has been reached?\",\n", + "\"_answer\": \"The USCIS has been indicating that if you have an I-140 approved under EB-2 but wish to file under EB-3, you have to submit a copy of the same labor certification - PERM application and get an EB-3 approval first.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have an EB-2 approval and I initially filed for EB-3 in 2011. If the EB-3 dates reach my priority date, am I still able to use EB-3 as I originally applied for?\",\n", + "\"_answer\": \"The USCIS has suggested that if you have a single I-140 approved under EB-2 but want to submit under EB-3, you must submit another I-140 using the same labor certification - PERM application and receive an EB-3 approval first.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have an EB-2 approval and I applied for EB-3 in 2011, will I still be eligible for EB-3 if the dates reach my priority date?\",\n", + "\"_answer\": \"The USCIS has indicated that if you have one I-140 approved under EB-2 but wish to file under EB-3, you must submit a fresh copy of the same labor certification - PERM application and get an EB-3 approval first.\"} \n", + "\n", + "\n", + "\n", + "8 \n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the implications of not working for the green card sponsoring company for naturalization or citizenship? I worked for the same company from 2004 to 2014 (2004 - 2011 in the US on an H1B visa, and 2011-2014 in India). After receiving my green card, I have not received a single paycheck from a US company. Since then, I have been working in a job with the same job description that my green card was filed for. All other history is clean; I have two US-born children, always pay taxes on time, and have no legal cases. Could I be in trouble? What are my options? Would it help if I went back to the same employer now? Would the situation be any different if my wife applied for naturalization instead of me?\",\n", + "\"_answer\": \"This is a difficult situation. I would argue that this is fine because once you obtained the green card, you took the job and you are just temporarily working for the company's operations outside the US. It is likely going to be a touch and go, but that is what I would suggest. You should definitely seek legal advice.\"}\n", + "######\n", + "{\"_question\": \"What risks do I face if I did not work for the green card sponsoring company for naturalization or citizenship? From 2004 to 2014, I worked for the same company (2004 - 2011 in the US on an H1B visa, and 2011-2014 in India). After getting my green card, I have not received a single paycheck from a US company. Since then, I have been working in a job with the same job description that my green card was filed for. All other history is clean; I have two US-born children, always pay taxes on time, and have no legal cases. Am I in danger? What are my choices? Would it help if I returned to the same employer now? Would the situation be any different if my wife applied for naturalization instead of me?\",\n", + "\"_answer\": \"This is a tricky situation. I would argue that this is acceptable since you got the green card, took the job, and are just temporarily working for the company's operations outside the US. It is likely going to be a close call, but that is what I would suggest. You should definitely consult a lawyer.\"}\n", + "######\n", + "{\"_question\": \"What are the consequences of not working for the green card sponsoring company for naturalization or citizenship? I worked for the same company from 2004 to 2014 (2004 - 2011 in the US on an H1B visa, and 2011-2014 in India). After getting my green card, I have not received a single paycheck from a US company. Since then, I have been working in a job with the same job description that my green card was filed for. All other history is clean; I have two US-born children, always pay taxes on time, and have no legal cases. Am I in trouble? What are my options? Would it help if I went back to the same employer now? Would the situation be any different if my wife applied for naturalization instead of me?\",\n", + "\"_answer\": \"This is a difficult situation. I would argue that this is fine because once you obtained the green card, you took the job and you are just temporarily working for the company's operations outside the US. It is likely going to be a tight call, but that is what I would suggest. You should definitely get legal advice.\"} \n", + "\n", + "\n", + "\n", + "9 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What will happen if I downgrade from EB-2 to EB-3 and my newly filed I-140 is denied? Will my previously approved I-140 in EB-2 still be valid?\", \n", + "\"_answer\": \"If you file a I-485 prematurely when the priority date of EB-2 is not current, then if the EB-3 is denied, the I-485 will also be denied. It is important to have your lawyer review your case carefully to ensure you don't have any other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing reveals a problem that was not addressed before.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What happens if I attempt to downgrade from EB-2 to EB-3 and my new I-140 is not approved? Will my original EB-2 I-140 still be valid?\", \n", + "\"_answer\": \"If you submit a I-485 before the priority date of EB-2 is current and the EB-3 is denied, the I-485 application will also be rejected. Have your lawyer review your case thoroughly to make sure there are no other issues. If the second EB-3 filing is declined, it should not impact the already approved I-140 unless the second filing brings to light a problem that was not addressed earlier.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What will occur if I try to switch from EB-2 to EB-3 and my new I-140 is denied? Will my already approved EB-2 I-140 remain valid?\", \n", + "\"_answer\": \"If you file a I-485 prematurely when the priority date of EB-2 is not current, then if the EB-3 is denied, the I-485 will also be denied. It is important to have your lawyer review your case carefully to guarantee you don't have any other issues. If the second EB-3 filing is rejected, it should not affect the already approved I-140 unless the second filing reveals a problem that was not addressed before.\"} \n", + "\n", + "\n", + "\n", + "10 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What do I need to do to get an accredited master's degree to process an EB-2 green card?\", \n", + "\"_answer\": \"You will need to check with your university to see who has accredited their programs or credentials in order to meet the requirements for an EB-2 green card.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What kind of degree do I need to get to apply for an EB-2 green card?\", \n", + "\"_answer\": \"You will need to have a master's degree from an accredited university in order to be eligible for an EB-2 green card. You can check with your university to find out who has accredited their programs or credentials.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What kind of master's degree do I need to qualify for an EB-2 green card?\", \n", + "\"_answer\": \"You will need to have a master's degree from an accredited university in order to be eligible for an EB-2 green card. Your university should be able to tell you who has accredited their programs or credentials.\"} \n", + "\n", + "\n", + "\n", + "11 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to initiate green card paperwork while on F-1 status? I am on F-1 OPT visa and working for employer A. My employer A has filed an H1B application for me this year and I am now waiting for the approval. Can my employer begin the green card process while I am on F-1 visa?\",\n", + "\"_answer\": \"For those born in countries where the priority dates are significantly delayed, such as India, China, Philippines, and Mexico, it is risky to start the green card process while on F-1 status as F-1 does not permit dual intent. This means that if you file for a green card in this status, you could encounter issues when obtaining extensions, visas, or re-entry into the US. However, if you are born in countries such as Saudi Arabia, Pakistan, Nepal, or any other country in Europe, where the priority dates are not as delayed, it may be possible to obtain the green card within a year in the EB-1, EB-2, or EB-3 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to initiate the green card process while on F-1 visa? I am currently on F-1 OPT and employed by employer A. My employer A has applied for my H1B this year and I am now awaiting the approval. Can my employer start the green card process when I am on F-1 status?\",\n", + "\"_answer\": \"People born in countries where the priority dates are significantly backlogged, such as India, China, Philippines, and Mexico, it is dangerous to begin the green card process while on F-1 visa as this does not allow for dual intent. This means that if you file for a green card in this status, you could face problems when trying to get extensions, visas, or re-entry into the US. However, for those born in countries like Saudi Arabia, Pakistan, Nepal, or any other country in Europe, where the priority dates are not as backlogged, it may be possible to receive the green card within a year in the EB-1, EB-2, or EB-3 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to start the green card process while on F-1 status? I am currently on F-1 OPT visa and working for employer A. My employer A has filed an H1B for me this year and I am now waiting for the approval. Can my employer initiate the green card paperwork while I am on F-1 visa?\",\n", + "\"_answer\": \"People born in countries where the priority dates are significantly backlogged, such as India, China, Philippines, and Mexico, it is risky to begin the green card process while on F-1 visa as this does not permit dual intent. This means that if you file for a green card in this status, you could encounter difficulties when obtaining extensions, visas, or re-entry into the US. However, if you are born in countries like Saudi Arabia, Pakistan, Nepal, or any other country in Europe, where the priority dates are not as backlogged, it may be possible to get the green card within a year in the EB-1, EB-2, or EB-3 category.\"} \n", + "\n", + "\n", + "\n", + "12 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to file for multiple green cards simultaneously? What are the potential side effects of doing so? What would happen if I tried to file for an EB1 and it was not approved, would it affect my EB2 green card? Should job descriptions match for EB1 and EB2? What other issues may arise?\",\n", + "\"_answer\": \"Yes, it is possible to file for multiple green cards at once. Employment, family, and investment categories can all be included in the application. As long as the applications are filed honestly, any number of green cards can be filed. If an EB1 application is not approved, it will not affect an EB2 application. The job descriptions do not need to match for each category, however it is important to be honest in the applications to avoid any issues.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for multiple green cards simultaneously? What will be the consequences of doing so? If I attempt to get an EB1 and it is rejected, will this hurt my EB2 green card? Is it necessary for the job descriptions to be the same in EB1 and EB2? What other problems could come up?\",\n", + "\"_answer\": \"Yes, it is possible to submit green card applications in several categories at once, including employment, family, and investment. As long as the applications are truthful, any number of green cards can be filed. A declined EB1 application will not impact an EB2 application. The job descriptions do not have to be identical, however accuracy is important to avoid any complications.\"} \n", + "\n", + "\n", + "\n", + "13 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the processing time for a NIW application under the EB2 category?\",\n", + "\"_answer\": \"The processing time for a NIW application under the EB2 category is the same as any other EB2 application. You can find the current processing times at http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I change employers during the NIW application process?\",\n", + "\"_answer\": \"Yes, if you are a self-applicant and will continue to work in your stated area of national interest, you can change employers at any time. However, the NIW priority date will take the same amount of time as a normal EB-2 application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"How long will it take to receive my EAD card for a NIW application under the EB2 category?\",\n", + "\"_answer\": \"The processing time for a NIW application under the EB2 category is the same as any other EB2 application. You can find the current processing times at http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"} \n", + "\n", + "\n", + "\n", + "14 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I receive my green card documents from USCIS without knowing my employer, using form G-884 (Returns of Original Documents)?\",\n", + "\"_answer\": \"Form G-884 is used to request the return of documents that you have sent to USCIS (e.g., your college degrees and diplomas). Use FOIA for the purpose you are considering.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I had my I-140 approved and EAD with EB2 category in April 2012, but my employer did not return my green card documents like I-140 approval copy, labor code, etc. Is it possible to get those documents from USCIS using Form G-884 (Returns of Original Documents) without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is for requesting the return of documents that you sent to USCIS (e.g., your college degrees and diplomas). Use FOIA for the purpose you are considering.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I got approved for I-140 and EAD with EB2 category in April 2012, but I haven't gotten my green card documents like I-140 approval copy, labor code, etc. back from my employer. Can I retrieve those documents from USCIS with Form G-884 (Returns of Original Documents) without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used for requesting the return of documents that you had sent to USCIS (e.g., your college degrees and diplomas). Use FOIA for the purpose you are considering.\"} \n", + "\n", + "\n", + "\n", + "15 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can you concurrently file for an EB-2 physical therapist?\", \n", + "\"_answer\": \"Submitting your adjustment of status application is only an option if your priority date for EB-2 is up to date and not delayed.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Are you able to file for an EB-2 physical therapist at the same time?\",\n", + "\"_answer\": \"Concurrent filing is only feasible if your priority date for EB-2 is current and not backlogged.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to submit an adjustment of status application for an EB-2 physical therapist simultaneously?\",\n", + "\"_answer\": \"Only if your priority date for EB-2 is current and not delayed can you file concurrently.\"} \n", + "\n", + "\n", + "\n", + "16 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the details of Obama's immigration action regarding I-140 stage? I'm on an H-1B visa, and my I-140 has been approved in the EB-2 category, but I'm waiting for the dates to become current. Will I be granted any EAD or other forms of permission based on the executive action?\",\n", + "\"_answer\": \"I have heard there is a plan to enable the filing of I-485 at the I-140 stage, without waiting for priority dates to be current. If this is implemented, it would provide you with an EAD as well as the right to switch jobs under AC21. However, there is no definite confirmation of this proposal in any government document as of yet.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the situation with Obama's immigration action at the I-140 stage? I'm on an H-1B visa, and my I-140 has been approved in the EB-2 category, but I'm still waiting for the dates to become current. Can I expect any EAD or other forms of authorization based on the executive action?\",\n", + "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. If this is implemented, it would provide you with an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication of this proposal in any government document as of yet.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the status of Obama's immigration action at the I-140 stage? I'm on an H-1B visa, and my I-140 has been approved in the EB-2 category, but I'm still waiting for the dates to become current. Could I receive any EAD or other forms of permission based on the executive action?\",\n", + "\"_answer\": \"I have heard there is a plan to enable the filing of I-485 at the I-140 stage, without waiting for priority dates to be current. If this is implemented, it would get you an EAD as well as the right to switch jobs under AC21. However, there is no definite confirmation of this proposal in any government document as of yet.\"} \n", + "\n", + "\n", + "\n", + "17 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the options for a person with an EB-2 priority date of June 2008, who applied for I-485 in January 2012, and whose priority date became current in July 2014, to expedite their background checks?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the best course of action for a person with an EB-2 priority date of June 2008, who applied for I-485 in January 2012, and whose priority date became current in July 2014, to speed up their background checks?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the alternatives for a person with an EB-2 priority date of June 2008, who applied for I-485 in January 2012, and whose priority date became current in July 2014, to hasten their background checks?\", \n", + "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"} \n", + "\n", + "\n", + "\n", + "18 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my experience with my current employer in India while filing for PERM?\",\n", + "\"_answer\": \"Yes, you can use the experience gained with an employer who has a tax id number other than your petitioning employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If my current employer is failing the GC, can I use my Indian experience when filing for PERM?\",\n", + "\"_answer\": \"Yes, it is generally acceptable to use the experience gained with an employer who has a tax id number other than your petitioning employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my two and a half years of experience in India with my current employer when filing for PERM?\",\n", + "\"_answer\": \"Yes, you can use the experience gained with an employer who has a tax id number other than your petitioning employer.\"} \n", + "\n", + "\n", + "\n", + "19 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do internships count when calculating the number of years of experience after school for a EB-2 or EB-3 visa? I have two US university bachelor's degrees, a 3-year degree in science and a 2-year degree in engineering. Will I be considered for an EB-2 visa with this? In case I don't qualify for EB-2, should I wait another year to file EB-2 or should I just file EB-3 now?\",\n", + "\"_answer\": \"Internships are counted when assessing the number of years of experience after school. You must first get your degrees evaluated according to AACRAO EDGE standards to determine if you qualify for an EB-2 visa.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do internships qualify when assessing the number of years of work after school for a EB-2 or EB-3 visa? I hold two US university bachelor's degrees, a 3-year degree in science and a 2-year degree in engineering. Am I eligible for an EB-2 visa with this? If I do not qualify for EB-2, should I wait another year to file EB-2 or just file EB-3 now?\",\n", + "\"_answer\": \"Internships can be taken into account when calculating the number of years of experience after school. You must first have your degrees evaluated under AACRAO EDGE standards to determine if you qualify for an EB-2 visa.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do internships count when determining the number of years of experience after school for an EB-2 or EB-3 visa? I possess two US university bachelor's degrees, a 3-year degree in science and a 2-year degree in engineering. Will I be considered for an EB-2 visa with this? In case I do not qualify for EB-2, should I wait another year to file EB-2 or just file EB-3 now?\",\n", + "\"_answer\": \"Internships are taken into account when assessing the number of years of work after school. You must first get your degrees evaluated according to AACRAO EDGE standards to determine if you qualify for an EB-2 visa.\"} \n", + "\n", + "\n", + "\n", + "20 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"How long should I wait to start the process for a green card if I am entering the US with an L1-A visa? I have 14 years of IT experience and have been in a manager, service delivery role for the past 3 years. I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Do I have the choice to choose between an EB-1 and EB-2 visa? I do not have a bachelor's or master's degree, will that be a barrier to get a green card? Do I need to apply through my employer or can I apply myself?\", \n", + "\"_answer\": \"You can apply for green card without any wait. Yes, but EB-1 is a gazillion times faster for Indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", + "\n", + "######\n", + "{\"_question\": \"How long do I need to wait before I can start the green card process if I am entering the US with an L1-A visa? I have a total of 14 years of IT experience and have been in a manager, service delivery role for the past 3 years. I manage a team of 30 people in Chennai, Shanghai, and San Jose. Can I choose between an EB-1 and EB-2 visa? I do not possess a bachelor's or master's degree, will that be a hindrance to obtaining a green card? Do I have to apply through my employer or can I apply on my own?\", \n", + "\"_answer\": \"You can begin the green card process right away. Yes, but EB-1 is a gazillion times faster for Indian-born people. Not having a degree is not an issue for international managers/execs. Your employer needs to apply.\"}\n", + "\n", + "###### \n", + "{\"_question\": \"How soon can I initiate the green card process if I am entering the US with an L1-A visa? I have a total of 14 years of IT experience and have been in a manager, service delivery role for the past 3 years. I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Do I have the option to pick between an EB-1 and EB-2 visa? I do not have a bachelor's or master's degree, will that be an obstacle to getting a green card? Should I only apply through my employer or can I apply on my own?\", \n", + "\"_answer\": \"You can start the green card process immediately. Yes, but EB-1 is a gazillion times faster for Indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"} \n", + "\n", + "\n", + "\n", + "21 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"If I acquire a master's degree from an accredited institution, do I have to demonstrate progressive experience since then to be eligible for eb-2?\",\n", + "\"_answer\": \"No, you do not have to demonstrate progressive experience since getting the master's degree for eb-2 eligibility. There may be some issues about the 3+2 pattern of education, but an accredited degree should resolve those.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 3 year bachelor's degree from India and 16 years of experience in the US. I am currently in the process of an EB-3 with a priority date of 10/2006. If I obtain an accredited master's degree, will I qualify for EB-2 or do I need to prove progressive experience since then?\",\n", + "\"_answer\": \"You should not need to demonstrate progressive experience since getting the master's degree for EB-2 eligibility. There could be some issues with the 3+2 pattern of education, but an accredited degree should resolve those.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I possess a bachelor's degree from India and 16 years of experience in the US. I'm currently in the process of an EB-3 with a priority date of 10/2006. If I acquire a master's degree from an accredited institution, will I meet the requirements for EB-2?\",\n", + "\"_answer\": \"No post-master's experience is necessary for EB-2 eligibility, provided the master's degree is from an accredited institution. There might be some issues regarding the 3+2 pattern of education, but an accredited degree should resolve those.\"} \n", + "\n", + "\n", + "\n", + "22 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Will I face difficulty if I have a J-1 visa and I apply for an EB2-NIW, but do not get it?\", \n", + "\"_answer\": \"It is possible that exhibiting immigrant intent could cause issues with the J-1 visa, though it is not guaranteed.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am unsuccessful in obtaining an EB2-NIW, will I have problems with my J-1 visa when travelling?\",\n", + "\"_answer\": \"It is uncertain, but there is a chance that having attempted to obtain the EB2-NIW could lead to issues with the J-1 visa.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the potential repercussions of applying for an EB2-NIW while I have a J-1 that's valid for four more years?\",\n", + "\"_answer\": \"It is possible that having exhibited immigrant intent could cause difficulties with the J-1 visa, though it is not definite.\"} \n", + "\n", + "\n", + "\n", + "23 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I get an EB-2 visa if I live in Bulgaria and have a master's degree in veterinary medicine to work as a veterinary assistant in the USA?\", \n", + "\"_answer\": \"In order to be eligible for EB2, two requirements must be met: 1. Your degree must be equivalent to a U.S. advanced degree (a credentials evaluation service needs to assess that according to the correct criteria); and 2. The job must demand an advanced degree or equivalent experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am from Bulgaria and have a master's degree in veterinary medicine, am I able to obtain an EB-2 visa to become a veterinary assistant in the USA?\", \n", + "\"_answer\": \"You may qualify for EB2 if two conditions are fulfilled: 1. Your degree is equal to a U.S. advanced degree (a credentials evaluation service needs to evaluate that using the correct standards); and 2. The job necessitates an advanced degree or equivalent experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB-2 visa if I am from Bulgaria with a master's degree in veterinary medicine and would like to work as a veterinary assistant in the USA?\",\n", + "\"_answer\": \"You can be eligible for EB2 provided that two conditions are satisfied: 1. Your degree is comparable to a U.S. advanced degree (a credentials evaluation service needs to assess that under proper standards); and 2. The job requires an advanced degree or equivalent experience.\"} \n", + "\n", + "\n", + "\n", + "24 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"How can I get in touch with the USCIS Service Centers to update them on the current priority date, upgrade from EB-3 to EB-2, or separate dependents from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the best way to inform the USCIS Service Centers that the priority date is current, that an EB case has been upgraded from EB-3 to EB-2, or that dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Be sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the procedure for notifying the USCIS Service Centers of a priority date being current, an EB case being upgraded from EB-3 to EB-2, or dependents being separated from the principal applicant's petition?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"} \n", + "\n", + "\n", + "\n", + "25 \n", + "\n", + " \n", + "\n", + "######\n", + "{\"_question\": \"is a degree from an accredited U.S university needed for green card eligibility under the eb-2 classification?\", \n", + "\"_answer\": \"Yes, a degree from an accredited U.S university is required for a beneficiary to be eligible for a green card under the eb-2 classification. Evidence such as SEVIS certification or state board approval, which confirm the university is a legitimate institution, is not enough to show accreditation. You can find out a university's accreditation status from the website http://ope.ed.gov/accreditation/. Additionally, you may watch the video 'Accreditation of Distance Education for EB-2' and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "\n", + "######\n", + "{\"_question\": \"is it essential for a beneficiary who has been petitioned for a green card under the eb-2 classification (due to a U.S master's degree) to have a degree from an accredited U.S. university?\",\n", + "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited U.S. university in order to be eligible for a green card under the eb-2 classification. Proof such as SEVIS certification or state board approval, which verifies the university is a legitimate educational institution, is not sufficient to demonstrate accreditation for green card purposes. You can check a university's accreditation status from the website http://ope.ed.gov/accreditation/. You may also want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "\n", + "######\n", + "{\"_question\": \"does a beneficiary who is petitioned for a green card under the eb-2 classification (based on a U.S master's degree) need to have a degree from an accredited U.S. university?\",\n", + "\"_answer\": \"Yes, a beneficiary must possess a degree from an accredited U.S. university in order for them to be eligible for a green card under the eb-2 classification. Evidence such as SEVIS certification or state board approval, which confirms that the university is a legitimate educational institution, is not enough to demonstrate accreditation for green card purposes. You can find out a university's accreditation status from the website http://ope.ed.gov/accreditation/. You may also watch the video 'Accreditation of Distance Education for EB-2' and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", + "\n", + "\n", + "\n", + "26 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"have i earned a master's degree in science within one year? i have the final degree certificate from the university, but i finished the regular 2 year program in just 1 year. will uscis consider my m.sc degree to be incomplete?\",\n", + "\"_answer\": \"this is where the evaluators come in. we have experienced issues with uscis in these circumstances. an evaluation done through the edge database should be sufficient to satisfy uscis.\"}\n", + "\n", + "######\n", + "{\"_question\": \"did i finish a master's degree in one year? i possess a master's degree in science and i have the final degree certificate from the university. however, i completed the normal 2 year program in only 1 year. will uscis view my m.sc degree as incomplete?\",\n", + "\"_answer\": \"this is where the evaluators enter the picture. we have encountered problems with uscis in these situations. a review conducted via the edge database should be enough to convince uscis.\"} \n", + "\n", + "\n", + "\n", + "27 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What qualifications are required for an EB-2 visa?\",\n", + "\"_answer\": \"The USCIS clarified the equivalent of a U.S. master's degree for an EB-2 visa in June 2007. Each petition and its documentation are reviewed on a case-by-case basis. Generally, the following qualifications are accepted: a U.S. master's degree, a four-year bachelor's degree and two-year master's degree in the same or related fields, a three-year bachelor's degree and three-year master's degree in the same or related fields, a three-year bachelor's degree, one-year postgraduate diploma, and two-year master's degree in the same or similar field, and a three-year bachelor's degree, two-year master's degree, and five years of progressive post-master's degree experience. Documentation must be included, such as an official academic record showing the degree or a letter from an employer showing five years of progressive post-baccalaureate experience in the specialty.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What educational credentials are accepted for an EB-2 visa?\",\n", + "\"_answer\": \"The USCIS clarified the equivalent of a U.S. master's degree for an EB-2 visa in June 2007. Each petition and its documentation are reviewed on a case-by-case basis. Generally, the following qualifications are accepted: a U.S. master's degree, a four-year bachelor's degree and two-year master's degree in the same or related fields, a three-year bachelor's degree and three-year master's degree in the same or related fields, a three-year bachelor's degree, one-year postgraduate diploma, and two-year master's degree in the same or similar field, and a three-year bachelor's degree, two-year master's degree, and five years of progressive post-master's degree experience. Supporting documentation must be provided, such as an official academic record showing the degree or a letter from an employer demonstrating five years of progressive post-baccalaureate experience in the specialty.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the qualifications for an EB-2 visa?\",\n", + "\"_answer\": \"The USCIS clarified the equivalent of a U.S. master's degree for an EB-2 visa in June 2007. Each petition and its documentation are examined on an individual basis. Generally, the following qualifications are accepted: a U.S. master's degree, a four-year bachelor's degree and two-year master's degree in the same or related fields, a three-year bachelor's degree and three-year master's degree in the same or related fields, a three-year bachelor's degree, one-year postgraduate diploma, and two-year master's degree in the same or similar field, and a three-year bachelor's degree, two-year master's degree, and five years of progressive post-master's degree experience. Evidence must be included, such as an official academic record showing the degree or a letter from an employer displaying five years of progressive post-baccalaureate experience in the specialty.\"} \n", + "\n", + "\n", + "\n", + "28 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I am attempting to apply for EB-2 status. The job requirement is a Bachelor's degree in engineering with five years of experience. No alternatives are mentioned in the PERM. Would my educational qualifications - diploma, AMIE, and M.Tech - and seven years of experience post M.Tech from my previous and current employer be considered for EB-2 eligibility? Are there any issues I should be aware of regarding my education when filing the I-140?\",\n", + "\"_answer\": \"The AMIE is questionable. I recall a decision from the AAO that said they would not recognize AMIE, but a more recent decision was more lenient. Regardless, an EB-2 should be attempted. The M.Tech should help.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I am aiming to get EB-2 status. The job requirement is a Bachelor's in engineering plus five years of experience. No other options are listed in the PERM. Is my educational background - diploma, AMIE, and M.Tech - and seven years of experience post M.Tech from past and current employers enough to be considered for EB-2 eligibility? Are there any potential risks I should be aware of regarding my education when submitting the I-140?\",\n", + "\"_answer\": \"The AMIE is iffy. I remember an AAO decision that said they will not accept AMIE, but a more recent decision was a bit more open-minded. Regardless, an EB-2 should be tried. The M.Tech should help.\"} \n", + "\n", + "\n", + "\n", + "29 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified to apply for EB-2 status with my credentials?\", \n", + "\"_answer\": \"Take into consideration the following: the name change of the employer will not require the green card process to start from the beginning, USCIS could take away your priority date if the sponsoring employer halts business operations, and the job must necessitate five years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the qualifications for EB-2 status?\", \n", + "\"_answer\": \"Be aware of these points: a switch in the company name does not mean the green card process must begin again, USCIS may revoke your priority date if the sponsoring employer discontinues business, and the job must demand five years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB-2 with my background?\", \n", + "\"_answer\": \"Remember these details: the alteration of the employer's name does not necessitate the green card process to be restarted, USCIS could take away your priority date if the sponsoring employer ceases operations, and the job should require five years of experience.\"} \n", + "\n", + "\n", + "\n", + "30 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I restart the green card process under the EB-2 category with my current qualifications and experience?\", \n", + "\"_answer\": \"If you have more than 5 years of experience after completing a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. Essentially, you would have to redo the PERM and I-140 for an EB-2 level job.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to begin the green card process anew under the EB-2 category given my background?\", \n", + "\"_answer\": \"If you have at least 5 years of experience after obtaining a 4-year degree, you could potentially restart the green card process in the EB-2 category and transfer your priority date. This would involve filing a new PERM and I-140 for an EB-2 level job.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I restart the green card process under the EB-2 category given my qualifications and experience?\", \n", + "\"_answer\": \"If you have more than 5 years of experience after earning a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This would involve submitting a new PERM and I-140 for an EB-2 level job.\"} \n", + "\n", + "\n", + "\n", + "31 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I bypass the requirement for perm by filing under the eb-2 category?\",\n", + "\"_answer\": \"You may be able to bypass the need for perm if you are eligible for a national interest waiver under the eb-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to avoid perm by submitting an eb-2 petition?\",\n", + "\"_answer\": \"It may be possible to skip the perm process if you are eligible for a national interest waiver under the eb-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I get around the perm requirement by filing under the eb-2 category?\",\n", + "\"_answer\": \"You may be able to circumvent the perm process if you are eligible for a national interest waiver under the eb-2 category.\"} \n", + "\n", + "\n", + "\n", + "32 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is more likely to be approved (or faster) for an EB-2 application: master's equivalency or five years of progressive experience? Is the employer's capability to support documents relevant, or does it depend on the lawyer's attention to detail when submitting to USCIS?\",\n", + "\"_answer\": \"It all starts with the lawyer. Ensure they are thorough and plan for any potential outcome. The job must be accurately described.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood of success for an EB-2 application: master's equivalency or five years of progressive experience? How much does the employer's capability to provide documentation matter compared to the lawyer's attention to detail when submitting to USCIS?\",\n", + "\"_answer\": \"It is important to have a lawyer who is meticulous in their preparation and can provide a truthful description of the job. This is the first step.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is more likely to be approved (or faster) for an EB-2 application: master's equivalency or five years of progressive experience? Does the employer's capability to support documents play a role, or is it solely dependent on the lawyer's attention to detail when submitting to USCIS?\",\n", + "\"_answer\": \"It is essential to have a lawyer who is thorough in their preparations and can accurately describe the job. This is the initial step.\"} \n", + "\n", + "\n", + "\n", + "33 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB-2 with the same employer using the experience I have gained from them?\",\n", + "\"_answer\": \"Yes, if the job is more than 50% different from the one you were doing previously.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to apply for EB-2 with my current employer using my experience gained from them?\",\n", + "\"_answer\": \"Yes, if the job offered is significantly different than the one you were doing before.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I reapply for EB-2 with the same employer using my experience with them?\",\n", + "\"_answer\": \"Yes, if the job is significantly different than the one you had before.\"} \n", + "\n", + "\n", + "\n", + "34 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for the EB-2 category? I am working as a professor at a major US university on an H1B visa for the past 9 months. I have a physician and PhD degree, 16 years of professional experience in Europe, and have published 20 papers and 1 book. Can I apply for an EB green card?\",\n", + "\"_answer\": \"You meet the requirements for the EB-2 category and should submit your application as soon as possible. For professorial jobs, you can reuse existing advertisements if you file PERM within 18 months of when the job was offered to you. You should also have your resume evaluated for a possible simultaneous EB1 application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for the EB-2 level? I have been a professor at a major US university on an H1B visa for 9 months now. I possess a physician and PhD degree, 16 years of professional experience in Europe, and I have published 20 papers and 1 book. Can I apply for an EB green card?\",\n", + "\"_answer\": \"You are eligible for the EB-2 level and you should submit your application as quickly as possible. For professorial jobs, you can reuse existing advertisements if you file PERM within 18 months of when the job was offered to you. You should also have your resume examined for a potential simultaneous EB1 application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the criteria for EB-2? I have been working as a professor at a major US university on an H1B visa for 9 months. I have a physician and PhD degree, 16 years of professional experience in Europe, and I have published 20 papers and 1 book. Am I able to apply for an EB green card?\",\n", + "\"_answer\": \"You fulfill the criteria for the EB-2 category and you should file your application as soon as possible. For professorial jobs, you can reuse existing advertisements if you file PERM within 18 months of when the job was offered to you. You should also have your resume evaluated for a possible simultaneous EB1 application.\"} \n", + "\n", + "\n", + "\n", + "35 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"am i eligible for eb-2 ? i completed a three year bachelor of computer science program in india in june 2005. then i began a master of computer applications program in india in aug 2005 (three year program). while still studying for my degree, i started a full time job in a software company in jan 2006. i was given a master of computer applications degree (three year degree) in 2008. i worked with the same company in a full time capacity until dec 2010 (five years). after that, i relocated to the US. i have been working with a US-based company for the past seven months in a full time position (total experience 5 years 7 months). am i eligible for eb-2?\",\n", + "\"_answer\": \"yes, you are eligible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i qualified for eb-2 ? i obtained a three year bachelor of computer science degree from india in june 2005. then i began a master of computer applications program (m.c.a) in india in aug 2005 (three year program). while still enrolled in the master's degree program, i began a full time job in a software company in jan 2006. i was presented with a master of computer applications degree (three year degree) in 2008. i worked with the same company in a full time job until dec 2010 (five years). after that, i moved to the US. i have been employed with a US-based company for the past seven months as a full time employee (total experience 5 years 7 months). am i qualified for eb-2?\",\n", + "\"_answer\": \"you are qualified.\"} \n", + "\n", + "\n", + "\n", + "36 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the prospects of getting an EB2 visa with my qualifications?\", \n", + "\"_answer\": \"Your degree must be comparable to a US Bachelor's degree. Unfinished degrees are not accepted for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood of obtaining an EB2 visa given my background?\", \n", + "\"_answer\": \"Your academic credentials must be equivalent to a US Bachelor's degree. Incomplete degrees cannot be used for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are my chances of securing an EB2 visa with my educational background?\", \n", + "\"_answer\": \"Your educational attainment must be similar to a US Bachelor's degree. Uncompleted degrees are not applicable for EB2.\"} \n", + "\n", + "\n", + "\n", + "37 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to be continuously employed for the same employer to qualify for EB-2?\",\n", + "\"_answer\": \"No, you don't have to be continuously employed for the same employer to qualify for EB-2, but you can only use the experience with the same employer if the job you used to perform and the job you will perform after the green card are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my experience prior to Aug 2010 for EB-2 qualification?\",\n", + "\"_answer\": \"Yes, you can use your experience prior to Aug 2010 for EB-2 qualification, provided that the job you used to perform and the job you will perform after the green card are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible to use my experience from before Aug 2010 for EB-2 qualification?\",\n", + "\"_answer\": \"Yes, you can use your experience from before Aug 2010 for EB-2 qualification, as long as the job you used to perform and the job you will perform after the green card are more than 50% different.\"} \n", + "\n", + "\n", + "\n", + "38 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"If I change employers after my I-140 application is approved, will I retain my priority date? I applied for my I-140 in August 2008, my EB2 priority date is March 7th 2008, and my H-1 visa is in its 8th year and expires on May 12th. Can my current employer withdraw my application and cause me to lose my priority date?\", \n", + "\"_answer\": \"You can keep your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. Your current employer cannot withdraw your application and cause you to lose your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What happens to my priority date if I move to a new company after my I-140 is approved? I applied for I-140 on August 8th 2008, my EB2 priority date is March 7th 2008, and I am in the 8th year of my H-1 visa which expires on May 12th. Can my old employer cancel my application and make me lose my priority date?\", \n", + "\"_answer\": \"You can maintain your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. Your old employer cannot cancel your application and make you lose your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I keep my priority date if I change employers after my I-140 is approved? My I-140 was submitted on August 8th 2008, my EB2 priority date is March 7th 2008, and my H-1 visa is in its 8th year and will expire on May 12th. Will my current employer's withdrawal of my application cause me to lose my priority date?\", \n", + "\"_answer\": \"You can retain your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. Your current employer's withdrawal of your application will not cause you to lose your priority date.\"} \n", + "\n", + "\n", + "\n", + "39 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What expenses can an employee cover for an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer is legally obligated to pay for all costs related to the PERM process, but not the other stages of the green card application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible for an employee to pay for the entire green card application process, including attorney's processing fees, filing fees, advertising fees, EAD, and advance parole fees?\",\n", + "\"_answer\": \"No, the employer is required to cover all expenses related to the PERM process, not the other stages of the green card application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can an employee be responsible for the entire cost of the green card application process, such as legal fees, filing fees, advertising fees, EAD, and advance parole fees?\",\n", + "\"_answer\": \"No, the employer must pay for expenses associated with the PERM process, but not the other steps of the green card application.\"} \n", + "\n", + "\n", + "\n", + "40 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are the qualifications for the EB-2 visa? I have a total of 5 years of experience with 3 years of a Bachelor's Degree in Computer Science and 2 years of a Master's Degree in Information Technology. Will this count as a Bachelor's Degree + 1 year and require 5 years of progressive experience to qualify for the EB-2?\", \n", + "\"_answer\": \"Yes, you would be eligible for the EB-2 visa with a Bachelor's Degree plus 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility requirement for the EB-2 visa? I have a combination of 3 years of a Bachelor's Degree in Computer Science and 2 years of a Master's Degree in Information Technology. Do I need to have a Bachelor's Degree plus one year and five years of progressive experience to qualify for the EB-2?\", \n", + "\"_answer\": \"Yes, you would qualify for the EB-2 visa with a Bachelor's Degree plus five years of experience.\"} \n", + "\n", + "\n", + "\n", + "41 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I include skills I acquired while working for the company sponsoring my green card if some of the experiences/skills required in the job description were acquired while working there?\",\n", + "\"_answer\": \"Yes, you may use the after-acquired skills as long as the job in the past and the green card job are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I list the skills I have obtained while employed by the firm sponsoring my green card if some of the experiences/skills necessary in the job description were obtained while working there?\",\n", + "\"_answer\": \"Yes, you can include the after-acquired skills only if the job in the past and the green card job are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I state the skills I have gained while employed by the company sponsoring my green card if some of the experiences/skills required in the job description were obtained while working there?\",\n", + "\"_answer\": \"Yes, you may utilize the after-acquired skills only if the job in the past and the green card job are more than 50% different.\"} \n", + "\n", + "\n", + "\n", + "42 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified to file for a green card while on OPT? I recently graduated with my Master's and have been working for two months. Can I file under the EB2 category, considering I have two years of IT experience in India? Or do I need to wait until I get an H1B?\",\n", + "\"_answer\": \"This requires a legal evaluation of your case. Generally, there is nothing stopping you from filing a PERM application while on OPT and an EB2 appears to be a viable option.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I start the green card process while on OPT? I just graduated with my Master's and have been employed for two months. Is it possible to file for an EB2 given my two years of IT experience in India? Would I need to wait for an H1B to begin the process?\",\n", + "\"_answer\": \"Your lawyer should evaluate your case. Generally, nothing prevents you from filing a PERM application while on OPT and an EB2 is likely an achievable goal.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible to apply for a green card while on OPT? I acquired my Master's last summer and have been working for two months. Is it feasible to file for an EB2, given my two years of IT experience in India? Or must I wait for an H1B?\",\n", + "\"_answer\": \"This requires your attorney to assess your case. Generally speaking, there is nothing preventing you from submitting a PERM application while on OPT and an EB2 seems to be a viable option.\"} \n", + "\n", + "\n", + "\n", + "43 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch my category from EB3 to EB2?\",\n", + "\"_answer\": \"It is feasible, but the permanent residency application will have to be restarted.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it achievable to change my classification from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, however the green card process will need to be initiated again from the beginning.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I modify my category from EB3 to EB2?\",\n", + "\"_answer\": \"It is possible, but the permanent residency filing must be begun again from perm.\"} \n", + "\n", + "\n", + "\n", + "44 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"is it possible to put in an application for gc in the eb-2 category? i have a bsc from india plus a two year diploma from niit (in h1 and l1 they regarded my diploma as a master degree, i believe) and ten years of experience. is it possible to apply for a gc in the eb2 category?\",\n", + "\"_answer\": \"diplomas can be unpredictable. i think it is unlikely that eb-2 would work.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i able to apply for gc in the eb-2 category? i have a bsc from india and a two year diploma from niit (in h1 and l1 they considered my diploma to be a master degree, i assume) and ten years of experience. am i able to put in an application for a gc in the eb2 category?\",\n", + "\"_answer\": \"diplomas can be hard to predict. i think it is unlikely that eb-2 would be successful.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i able to submit an application for gc in the eb-2 category? i have a bsc from india and a two year diploma from niit (in h1 and l1 they thought of my diploma as a master degree, i surmise) and ten years of experience. am i able to submit an application for a gc in the eb2 category?\",\n", + "\"_answer\": \"diplomas can be hard to anticipate. i think it is doubtful that eb-2 would be successful.\"} \n", + "\n", + "\n", + "\n", + "45 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor's Degree in Computer Science from India and 7.5 years of experience in a related field. Can I apply for a Green Card under this category?\",\n", + "\"_answer\": \"It looks like you are eligible for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I suited for EB2? I received my Bachelor's Degree in Computer Science from India and I have 7.5 years of experience in the same field. Can I submit a Green Card application under this classification?\",\n", + "\"_answer\": \"It appears that you qualify for EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I possess a Bachelor's Degree in Computer Science from India and have 7.5 years of experience in a related area. Can I apply for a Green Card in this category?\",\n", + "\"_answer\": \"You seem to be qualified for EB-2.\"} \n", + "\n", + "\n", + "\n", + "46 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for the EB-2 category? I am working for one of the largest companies as a mechanical engineer and I am transitioning from mechanical engineer to product development engineer within the same company. The job requires a bachelor's degree plus two to five years of experience. I have a bachelor's degree with four years, a master's degree from the US, one year and four months of research assistant experience, 10 months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer.\",\n", + "\"_answer\": \"Yes, you are eligible for the EB-2 category. The minimum requirements for the job are two years of experience and you meet that requirement.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for the EB-2 category? I am employed as a mechanical engineer at one of the largest companies and I am changing my job to product development engineer within the same company. The job requires a bachelor's degree and two to five years of experience. I have a bachelor's degree with four years, a master's degree from the US, one year and four months of research assistant experience, 10 months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer.\",\n", + "\"_answer\": \"Yes, you meet the qualifications for the EB-2 category. The minimum requirement for the job is two years of experience and you fulfill that requirement.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I suitable for the EB-2 category? I am working as a mechanical engineer at one of the largest companies and I am transitioning to product development engineer within the same company. The job requires a bachelor's degree and two to five years of experience. I have a bachelor's degree with four years, a master's degree from the US, one year and four months of research assistant experience, 10 months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer.\",\n", + "\"_answer\": \"Yes, you are eligible for the EB-2 category. The job requires a minimum of two years of experience and you meet that requirement.\"} \n", + "\n", + "\n", + "\n", + "47 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB-2 with my 3 year Bachelor's degree in Computer Science and 2 year Master's degree in Computer Science from India?\",\n", + "\"_answer\": \"It is a possibility, however, your attorney must determine which route is more suitable for you: assess if the two degrees are equivalent to a Bachelor's and use the Bachelor's plus 5 years for EB-2, or just use the Master's degree (which carries more risk).\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 3 year Bachelor's in Computer Science and 2 year Master's in Computer Science from India. My education evaluation says Master's. Is it possible to apply for EB-2?\",\n", + "\"_answer\": \"It is a potential option, however, your legal representative must assess which path is more appropriate for you: evaluate if the two degrees are equal to a Bachelor's and use the Bachelor's plus 5 years for EB-2, or just use the Master's degree (which has more risk).\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB-2 with my 3 year Bachelor's in Computer Science and 2 year Master's in Computer Science from India?\",\n", + "\"_answer\": \"It is possible, but your lawyers must decide which route is better for you: determine if the two degrees are equal to a Bachelor's and use the Bachelor's plus 5 years for EB-2, or just use the Master's degree (which is more risky).\"} \n", + "\n", + "\n", + "\n", + "48 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the criteria for eb-2? I hold a four-year degree in civil engineering and have had 13 years of documented experience in the IT industry. Is eb2 or eb3 my option?\",\n", + "\"_answer\": \"You may be eligible for eb2\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for eb-2? I have a bachelors degree in civil engineering and have had 13 years of progressive experience in the IT field. Could I be considered for eb2 or eb3?\",\n", + "\"_answer\": \"It is possible that you qualify for eb2\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for eb-2? I completed a four-year program in civil engineering and have had 13 years of progressive experience in the IT industry. Could I be approved for eb2 or eb3?\",\n", + "\"_answer\": \"You could be eligible for eb2\"} \n", + "\n", + "\n", + "\n", + "49 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need a master's degree? I have a two-year B.Com from my home country, and a Chartered Accountancy certification. I have 10 years of accounting experience, and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got a green card. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider a CA.\",\n", + "\"_answer\": \"Your lawyers are correct in that a CA is not accepted as education by USCIS. You should consult a credentials evaluation agency about obtaining a master's degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What degree do I need? I have a two-year B.Com from my home country and a Chartered Accountancy certification. I have 10 years of accounting experience and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got a green card. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA. But the lawyers asserted that for the green card process, USCIS won't accept a CA.\",\n", + "\"_answer\": \"Your lawyers are correct that the USCIS does not recognize a CA as an educational credential. You should talk to a credentials evaluation agency about getting a master's degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What qualifications do I need? I have a two-year B.Com from my home country plus a Chartered Accountancy certification. I have 10 years of accounting experience and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got a green card. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA. But the lawyers said that for the green card process, USCIS won't accept a CA.\",\n", + "\"_answer\": \"Your lawyers are correct that the USCIS does not recognize a CA as an educational credential. You should consult a credentials evaluation agency about obtaining a master's degree.\"} \n", + "\n", + "\n", + "\n", + "50 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it permissible to switch jobs and submit a PERM and I-140 application under EB-2 instead of EB-3 with my new employer? How risky is this? I could stay with my current job, but it would take another three years to get my green card under EB-3 with my priority date of February 2007.\", \n", + "\"_answer\": \"You can submit an I-485 when your priority date becomes current (and then get an EAD). Priority dates are reported in the Visa Bulletin. I do not see an issue with transferring the priority date if you file an EB-2 through a new employer. As for risk, that should be evaluated by your attorneys.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs and file a PERM and I-140 under EB-2 instead of EB-3 with the new employer? What is the risk involved? I can stay with my current job, but it will take another three years to get my green card under EB-3 with my priority date of February 2007.\", \n", + "\"_answer\": \"You can file an I-485 when your priority date is current (and then receive an EAD). Priority dates are posted in the Visa Bulletin. I do not see a problem with transferring the priority date if you apply for an EB-2 through a new employer. As far as risk, that should be assessed by your lawyers.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I allowed to change jobs and submit a PERM and I-140 under EB-2 in place of EB-3 with the new employer? How dangerous is this? I could stay with my current job, but it would take another three years to get my green card under EB-3 with my priority date of February 2007.\", \n", + "\"_answer\": \"You can file an I-485 when your priority date is current (and then get an EAD). Priority dates are reported in the Visa Bulletin. I do not see an issue with carrying the priority date forward if you file an EB-2 through a new employer. As for danger, that should be evaluated by your attorneys.\"} \n", + "\n", + "\n", + "\n", + "51 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Would my qualifications and current job as a senior consultant in a company that implements eqms for biologics, med device and pharma companies qualify me for EB-2 if I apply for green card? If I change employers before the green card is approved, what will happen?\",\n", + "\"_answer\": \"It is possible that you may be eligible for EB-2, depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not receive any benefit from the application process. However, if you leave after the I-140 has been approved, you can still keep your priority date and use it to apply for a green card.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a master's degree in biomedical engineering and am currently employed as a senior consultant in a company that implements eqms for biologics, med device and pharma companies, will I qualify for EB-2 if I apply for a green card? Will I have to start the process over if I switch employers before the green card is approved?\",\n", + "\"_answer\": \"It is possible that you could be eligible for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, it is likely that you will not receive any benefit from the application process. However, if you leave after the I-140 has been approved, you can still keep your priority date and use it to apply for a green card.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a master's degree in biomedical engineering and am currently a senior consultant in a company that implements eqms for biologics, med device and pharma companies, would I be able to get EB-2 if I apply for a green card? Would I have to start from the beginning if I switch employers before the green card is approved?\",\n", + "\"_answer\": \"It is possible that you may be eligible for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not gain any benefit from the application process. However, if you leave after the I-140 has been approved, you can still keep your priority date and use it to apply for a green card.\"} \n", + "\n", + "\n", + "\n", + "52 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs after I-140 approval? I am in my fifth year of H1B status and my current employer has filed a PERM under EB-3, which has a six year backlog. I am wondering if I can wait for the I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a new employer?\",\n", + "\"_answer\": \"It is possible and typical for a new employer (Employer B) to get an H1 extension based on an I-140 approval from a prior employer (Employer A). You should consult with an attorney for more details.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I change jobs after I-140 approval? I have been on H1B for five years and my current employer has initiated the PERM process under EB-3, which is subject to a six year backlog. I would like to know if I can wait for the I-140 approval, get a three year extension with my current employer, and then find a new job? Is it possible to get three more years on H1 with a different employer?\",\n", + "\"_answer\": \"It is possible to obtain an H1 extension from a new employer (Employer B) based on an I-140 approval from a prior employer (Employer A). It is recommended to speak with an attorney for more information.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch jobs after I-140 approval? I have been on H1B for five years and my current employer has started the PERM process under EB-3, which is subject to a six year backlog. I want to know if I can wait for the I-140 approval, get a three year extension with my current employer, and then move to a new company? Is it possible to get three more years on H1 with a different employer?\",\n", + "\"_answer\": \"It is possible to receive an H1 extension from a new employer (Employer B) based on an I-140 approval from a prior employer (Employer A). It is advised to consult with an attorney for further details.\"} \n", + "\n", + "\n", + "\n", + "53 \n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to wait for a promotion before starting the green card process to qualify for EB-2? Is a Bachelor's degree plus five years of post-Bachelor's experience or a Master's degree plus two years of experience enough to meet the requirements for EB-2?\",\n", + "\"_answer\": \"It is best to consult with your lawyers to decide when to file. For EB-2, either a minimum Master's degree or a Bachelor's degree plus five years of post-Bachelor's experience is the required qualification.\"}\n", + "######\n", + "{\"_question\": \"Should I wait to apply for my green card until I receive a promotion to qualify for EB-2? Does my Bachelor's plus five years of experience or my Master's plus two years of experience meet the requirements for EB-2?\",\n", + "\"_answer\": \"You should discuss with your lawyers when to submit the application. EB-2 requires either a minimum Master's degree or a Bachelor's plus five years of post-Bachelor's experience.\"}\n", + "######\n", + "{\"_question\": \"Do I need to wait for a promotion before I start the green card process in order to be eligible for EB-2? Is a Bachelor's plus five years' post-Bachelor experience or a Master's plus two years' experience sufficient to meet the criteria for EB-2?\",\n", + "\"_answer\": \"It is advisable to speak with your lawyers to decide when to file. For EB-2, either a minimum Master's degree or a Bachelor's plus five years of post-Bachelor's experience is the necessary qualification.\"} \n", + "\n", + "\n", + "\n", + "54 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2?\",\n", + "\"_answer\": \"It depends. If your software engineering diploma is postgraduate and recognized, then you may be eligible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I suitable for EB2?\",\n", + "\"_answer\": \"That depends. If your software engineering diploma is postgraduate and accepted, then you could be eligible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for EB2?\",\n", + "\"_answer\": \"It depends. If your software engineering diploma is postgraduate and acknowledged, then you might be suitable.\"} \n", + "\n", + "\n", + "\n", + "55 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 green card? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). Additionally, I have 9 years of experience in a Tech Architect-Lead role (leading 5-20 people). My M.Sc. was evaluated as a US MS for my H1 visa approval. Am I eligible?\",\n", + "\"_answer\": \"If your B.Sc. and M.Sc. are related to your work, then you should be able to apply for EB2 green card.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2 green card? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). Plus, I have 9 years of experience in a Tech Architect-Lead position (leading 5-20 people). My M.Sc. was evaluated as a US MS for my H1 visa approval. Can I qualify?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and relevant to your job, then you should be able to apply for EB2 green card.\"} \n", + "\n", + "\n", + "\n", + "56 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I switch from an EB3 to an EB2 green card through portability? My EB3 I-485 is pending with a priority date of 06/2006. My current employer is willing to file a new EB2 as I have an Indian equivalent master's degree (3+3 years) and more experience as well as increased job duties. Is this allowed and will I be able to keep my EB3 priority date? What is the minimum wage for the EB2 category? Does my current company experience count for the new EB2? Any advice on the EB2 job requirements?\",\n", + "\"_answer\": \"In theory, this is a possibility. As far as the practical implications, you should consult with the attorneys who will be representing you in the new green card process.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to switch from an EB3 to an EB2 green card through portability? My EB3 I-485 is pending with a priority date of 06/2006. My employer is willing to file a new EB2 as I have an Indian equivalent master's degree (3+3 years) and more experience as well as increased job responsibilities. Am I able to do this and keep my EB3 priority date? What is the minimum wage for the EB2 category? Does my current company experience apply to the new EB2? Any guidance on the EB2 job duties?\",\n", + "\"_answer\": \"In theory, this is doable. As to the practical implications, you must speak with the lawyers who will be representing you in the second green card process.\"} \n", + "\n", + "\n", + "\n", + "57 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 status if I have a Master's degree in Electrical Engineering and 3 years of experience?\",\n", + " \"_answer\": \"Yes, you meet the requirements for EB2 unless the job has different qualifications that are less than a Bachelor's degree and 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a Master's in Electrical Engineering and 3 years of experience, will I qualify for EB2?\",\n", + " \"_answer\": \"Yes, you are eligible for EB2 unless the job requires qualifications that are less than a Bachelor's degree plus 5 years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for EB2 with a Master's in Electrical Engineering and 3 years of experience?\",\n", + " \"_answer\": \"Yes, you fulfill the criteria for EB2 unless the job has different qualifications that are lower than a Bachelor's degree and 5 years of experience.\"} \n", + "\n", + "\n", + "\n", + "58 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB2 visa if I have a Master's in Computer Science and 6 months experience?\",\n", + "\"_answer\": \"It depends on if the job requires a Master's degree or not.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the requirement for an EB2 visa if I have a Master's in Computer Science and 6 months experience?\",\n", + "\"_answer\": \"If the job requires a Master's degree, then you may be eligible.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I suitable for an EB2 visa if I possess a Master's in Computer Science and 6 months experience?\",\n", + "\"_answer\": \"It depends if the job requires a Master's degree or not.\"} \n", + "\n", + "\n", + "\n", + "59 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What are my odds of obtaining a green card through the EB-2 category once I have graduated with a PhD in semiconductor devices and obtained a job in the industry?\",\n", + "\"_answer\": \"Your chances of getting a green card through the EB-2 are quite good.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am in the final year of my PhD in semiconductor devices at a US university, and have around 5 first author publications, what are my prospects of getting a green card through the EB-2 category once I have secured a job in the industry?\",\n", + "\"_answer\": \"It looks like you have a great chance of getting a green card through the EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Given my current situation - final year of a PhD in semiconductor devices at a US university, with 5 first author publications - how likely is it that I can get a green card through the EB-2 category when I get a job in the industry?\",\n", + "\"_answer\": \"Your probability of getting a green card through the EB-2 is quite high.\"} \n", + "\n", + "\n", + "\n", + "60 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to transfer my Priority Date from an EB3 to an EB2? I filed for a PERM under the EB3 category on October 1, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Could I file with the same employer under EB2? If yes, could I also keep the EB3 application running in parallel? Is there any way I can transfer my PD after I-140 approval if I file a new EB2? I have already been on an H1B for 4 years and 2 months. Could you please advise me if I can change my employer to file for EB2 or not? Is there any way to transfer my EB3 PD for EB2?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications for the same individual from the same company. However, if you have a valid explanation, there is no law that prevents it. You cannot transfer the PD until the I-140 is approved. I recommend changing jobs right away as you may have enough time.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it feasible to take my Priority Date from an EB3 to an EB2? I submitted my PERM under the EB3 category on October 1, 2008 and got an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? If yes, can I keep the EB3 application running concurrently? Is there any way to take my PD after I-140 approval if I file a new EB2? I have already been on an H1B for 4 years and 2 months. Could you please suggest if I can switch my employer to file for EB2 or not? Is there any way to transfer my EB3 PD for EB2?\",\n", + "\"_answer\": \"It is not logical to have two PERM applications for the same individual from the same company. However, if you have a valid, logical reason, there is no law that prevents it. You cannot move the PD until the I-140 is approved. I suggest changing jobs immediately as you may have just enough time.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to move my Priority Date from an EB3 to an EB2? I filed for a PERM under the EB3 category on October 1, 2008 and got an audit. According to the current PERM dates, they are processing audits from August 2008. Could I file with the same employer under EB2? If yes, could I also keep the EB3 application running in parallel? Is there any way to move my PD after I-140 approval if I file a new EB2? I have already been on an H1B for 4 years and 2 months. Could you please advise me if I can change my employer to file for EB2 or not? Is there any way to transfer my EB3 PD for EB2?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications for the same individual from the same company. However, if you have a valid explanation, there is no law that stops it. You cannot shift the PD until the I-140 is approved. I recommend switching jobs right away as you may have just enough time.\"} \n", + "\n", + "\n", + "\n", + "61 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to apply for EB2 with my qualifications?\", \n", + "\"_answer\": \"It is unlikely that you would qualify for EB2 based on your 3-year bachelor's degree, software architect certification, 15+ years of experience, and salary of over 100K.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I be eligible for EB2 with my background?\", \n", + "\"_answer\": \"It is unlikely that you would be approved for EB2 given your 3-year bachelor's degree, software architect certification, 15+ years of experience, and salary of over 100K.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do my qualifications fit the requirements for EB2?\", \n", + "\"_answer\": \"It is unlikely that you meet the requirements for EB2 with your 3-year bachelor's degree, software architect certification, 15+ years of experience, and salary of over 100K.\"} \n", + "\n", + "\n", + "\n", + "62 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to apply for EB2 Schedule A if my PERM application was recently denied due to a layoff in my company? Will the denial have any effect on the Schedule A application? Is it okay to submit the Schedule A application right away or is there a waiting period?\",\n", + "\"_answer\": \"If you meet the qualifications, you can submit a Schedule A application. I don't think the PERM denial or layoffs should have any impact on the Schedule A application, and there is no need to wait to file.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I recently had my PERM application denied due to a layoff in my company. Can I apply for EB2 Schedule A to bypass the labor certification step? Will the denial of the PERM application have any effect on the Schedule A application? Is it okay to submit the Schedule A application right away or do I have to wait?\",\n", + "\"_answer\": \"If you are eligible, you can file for Schedule A. I can't imagine how the PERM denial or layoffs would cause any issues, and there is no requirement to delay submitting the Schedule A application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"My PERM application was denied due to my company's recent layoff. Can I apply for EB2 Schedule A to avoid the labor certification step? Will the denial of the PERM application have any influence on the Schedule A application? Is it alright to submit the Schedule A application right away or should I wait for a certain period of time?\",\n", + "\"_answer\": \"If you qualify, you can submit a Schedule A application. I can't think of any way the PERM denial or layoffs would have any effect and there should be no need to wait to file.\"} \n", + "\n", + "\n", + "\n", + "63 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for eb2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am a IT Architect, and my company is ready to process my green card. Can I apply?\",\n", + "\"_answer\": \"It appears that you are eligible for eb-2 as long as your B.Tech is a 4-year degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for eb2? I have a B.Tech degree in engineering from India and I have worked in IT for more than 13 years. I am working as an IT Architect and my company is willing to process my green card. Am I qualified?\",\n", + "\"_answer\": \"It looks like you meet the qualifications for eb-2 as long as your B.Tech is a 4-year degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for eb2? I have a B.Tech in engineering from India and 13 years of experience in IT. I'm currently an IT Architect and my company is ready to start my green card application. Do I qualify?\",\n", + "\"_answer\": \"Assuming your B.Tech is a 4-year degree, it appears that you are eligible for eb-2.\"} \n", + "\n", + "\n", + "\n", + "64 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the qualifications for an EB-2 visa given my educational background and two years of work experience on an H-1B visa?\",\n", + "\"_answer\": \"Yes, you are eligible for an EB-2 visa. Whether a promotion is needed to be eligible for this visa is something that your lawyer and employer will need to decide. Any job that requires a master's degree or bachelor's degree plus five years of progressively responsible experience is sufficient for an EB-2 filing.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a bachelor's degree from a 4-year US program and a master's degree from a 2-year program, and have been working on an H-1B visa for two years, what qualifications would I need to meet in order to be eligible for an EB-2 visa?\",\n", + "\"_answer\": \"You would be eligible for an EB-2 visa. It is up to your lawyer and employer to decide if a promotion is necessary for you to meet the requirements. Any position that requires a master's or bachelor's degree and five years of progressively responsible experience would be sufficient for an EB-2 filing.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What would I need to meet the requirements for an EB-2 visa if I have a 4-year US bachelor's degree, a 2-year master's degree, and two years of experience working on an H-1B visa?\",\n", + "\"_answer\": \"You would be qualified for an EB-2 visa. Whether or not a promotion is necessary for you to be eligible for this visa is something that your lawyer and employer must determine. Any job that requires a master's or bachelor's degree plus five years of progressively responsible experience would be sufficient for an EB-2 filing.\"} \n", + "\n", + "\n", + "\n", + "65 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? I completed my BSc (3 years) in Computer Science from St. Xavier's Mumbai, then I finished my MCA (3 years) from REC Trichy. I have 7 years of IT experience. My employer is filing my GC. Can I get EB2?\",\n", + "\"_answer\": \"Yes, you meet the qualifications for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2? I studied BSc (3 years) in Computer Science from St. Xavier's Mumbai, then I got my MCA (3 years) from REC Trichy. I have 7 years of work in IT. My employer is submitting my GC. Am I eligible for EB2?\",\n", + "\"_answer\": \"Yes, you are eligible for EB2.\"} \n", + "\n", + "\n", + "\n", + "66 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I fulfill the requirements for an EB-2 green card if I have a 3-year Bachelor's degree (BSc) and a 3-year Bachelor's degree in Technology (BTech) from India, as well as 8 years of experience, if the job needs a MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"It is generally not allowed to combine two 3-year Bachelor's degrees. Therefore, it is unlikely that you meet the EB-2 requirements.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible to apply for a green card under the EB-2 category if I have a 3-year Bachelor's degree (BSc) and a 3-year Bachelor's degree in Technology (BTech) from India, as well as 8 years of experience, and the job requires a MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"It appears unlikely that you would qualify for EB-2 since combining two 3-year Bachelor's degrees is not usually allowed.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Will I be able to get a green card through the EB-2 program if I have a 3-year Bachelor's degree (BSc) and a 3-year Bachelor's degree in Technology (BTech) from India, as well as 8 years of experience, and the job requires a MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"It is doubtful that you would be able to meet the requirements for EB-2 since it is not usually allowed to combine two 3-year Bachelor's degrees.\"} \n", + "\n", + "\n", + "\n", + "67 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for an EB2 visa if I have a 3 year bachelor's degree from India and a 2 year master's degree from India, and 7 years of experience?\",\n", + "\"_answer\": \"In most cases, combining a 3 year bachelor's degree and a 2 year master's degree from the same or similar field can count as a 4 year degree for EB2 purposes. You should have a good chance of qualifying for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have 3 years of undergraduate education in India and 2 years of post-graduate education in India, and 7 years of experience. Is this enough to qualify for an EB2 visa?\",\n", + "\"_answer\": \"It is likely that combining the 3 year bachelor's degree and the 2 year master's degree from the same or similar field can be considered as a 4 year degree for EB2 purposes. You should have a good chance of getting the EB2 visa.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 3 year bachelor's degree from India and a 2 year master's degree from India, and 7 years of experience. Does this meet the requirements for an EB2 visa?\",\n", + "\"_answer\": \"In most cases, combining the 3 year bachelor's degree and the 2 year master's degree from the same or similar field can be considered as a 4 year degree for EB2 purposes. You should have a good chance of qualifying for the EB2 visa.\"} \n", + "\n", + "\n", + "\n", + "68 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the timeline of the green card process if I start now?\",\n", + "\"_answer\": \"The duration of the green card process for individuals from countries with an EB2 backlog can range from 3-4 years or more, depending on various factors. A big plus is that you can transfer your priority date to a new employer and get an H-1B extension beyond 6 years once your I-140 is approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"How long would it take to get a green card if I initiate the process now?\",\n", + "\"_answer\": \"For those from countries with a backlog in the EB2 category, the wait time could be anywhere from 3-4 years or more, depending on certain conditions. One of the advantages of getting to the I-140 stage is that you can transfer your priority date to another employer and get an extension on your H-1B visa beyond 6 years.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I start the green card process now, how long will it take?\",\n", + "\"_answer\": \"For people from countries with an EB2 backlog, the time frame can range from 3-4 years or longer, depending on various factors. One of the benefits of getting to the I-140 stage is that you can take your priority date to a different employer and get an H-1B extension past 6 years.\"} \n", + "\n", + "\n", + "\n", + "69 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can my employer sponsor me for EB2 after they promote me as clinical specialist even if I have only 1 year and 1/2 experience with them?\",\n", + "\"_answer\": \"It is feasible to use the experience acquired with the same employer if the labor certain job is more than fifty percent distinct from the earlier positions held with the same employer. An experienced attorney can help you evaluate the chances.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it likely that my current employer will sponsor me for EB2 when they promote me to clinical specialist even if I have only 1 year and 1/2 experience with them?\",\n", + "\"_answer\": \"The existing law allows for the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. A qualified lawyer can help you assess the possibilities.\"} \n", + "\n", + "\n", + "\n", + "70 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for EB2? Here are my details: I have a B.Tech in Electronics from India in 2004 and a total of 6 years of experience (3 in the US and 3 in India). Is it necessary to have 5 years of experience outside the US?\",\n", + "\"_answer\": \"Given your four-year degree and more than 5 years of post-degree work experience, you should be able to apply for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2? My credentials are: B.Tech in Electronics from India in 2004 and a total of 6 years of experience (3 in the US and 3 in India). Do I need 5 years of experience outside the US?\",\n", + "\"_answer\": \"With your four-year degree and more than five years of post-degree experience, you should be able to qualify for EB2.\"} \n", + "\n", + "\n", + "\n", + "71 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Does volunteer work count as experience for EB2? I have a BSOT and did two years of OT volunteer work in an adult setting in my home country, but I was not yet a licensed OT for the first six months.\",\n", + "\"_answer\": \"It is not mandated that paid experience is necessary for EB2, so volunteer experience could be used.\"}\n", + "\n", + "######\n", + "{\"_question\": \"For EB2, is volunteer work considered an experience? I graduated with a BSOT and had two years of OT volunteer work in an adult setting in my country of origin, but I was not yet a licensed OT for the first half-year.\",\n", + "\"_answer\": \"There is no requirement that I am aware of that demands paid experience for EB2; volunteer experience could potentially be accepted.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can volunteer work be counted as experience for EB2? I have a BSOT and did two years of OT volunteer work in an adult setting in my native country, but I was not yet a licensed OT for the first six months.\",\n", + "\"_answer\": \"No necessity exists that paid experience must be had for EB2, so volunteer experience could be taken into account.\"} \n", + "\n", + "\n", + "\n", + "72 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Will I be eligible for a green card under the EB-2 category if I have a Bachelor's degree in Computer Science Engineering (4yrs) and have been working as a Subject Matter Expert in the US on an L1B visa with 4 years of experience?\",\n", + "\"_answer\": \"You will need 5 years of experience after obtaining your Bachelor's degree to be eligible for a green card under the EB-2 category. Certifications do not usually count towards the requirement.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for a green card through the EB-2 category if I have a Bachelor's degree in Computer Science Engineering (4yrs) and am currently employed in the US on an L1B visa with 4 years of work experience?\",\n", + "\"_answer\": \"Five years of experience following the completion of your Bachelor's degree is necessary to qualify for a green card through the EB-2 category. Certifications are not typically considered in such cases.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to apply for a green card through the EB-2 category if I have a Bachelor's degree in Computer Science Engineering (4yrs) and am presently working in the US on an L1B visa with 4 years of experience?\",\n", + "\"_answer\": \"You will need 5 years of experience after completing your Bachelor's degree to be eligible for a green card through the EB-2 category. Certifications are not usually taken into account.\"} \n", + "\n", + "\n", + "\n", + "73 \n", + "\n", + "\n", + "\n", + "######{\"_question\":\"Does an individual have to find a similar job or position if they have an approved i-140?\",\n", + "\"_answer\":\"No, it is not necessary to locate a comparable job. The green card process must be repeated, but the priority date can be transferred to any job and category (eb1, eb2, eb3).\"}\n", + "\n", + "######{\"_question\":\"If an individual has an approved i-140, is it necessary to switch to a comparable job in order to keep the priority date?\",\n", + "\"_answer\":\"No, it is not essential to shift to a similar job. The green card procedure must be done again, yet the priority date can be moved to any job and category (eb1, eb2, eb3).\"}\n", + "\n", + "######{\"_question\":\"If someone has an approved i-140, do they need to switch to a similar occupation to maintain the priority date?\",\n", + "\"_answer\":\"No, it is not necessary to change to an equivalent job. The green card process has to be done again, but the priority date can be transferred to any job and category (eb1, eb2, eb3).\"} \n", + "\n", + "\n", + "\n", + "74 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to apply for an EB2 if the role requires a Bachelor's degree and 5 years of work experience? Additionally, is the concept of cross chargeability applicable to my Green Card application with my wife being an Indian citizen born in Kuwait?\", \n", + "\"_answer\": \"Yes, you can submit an EB2 application if the job requires a bachelor's degree and 5 years of post bachelor's experience. Cross chargeability is also applicable to your Green Card application with your wife being an Indian citizen born in Kuwait. Consult with a lawyer to discuss the details.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If the role I am in requires a Bachelor's degree and 5 years of work experience, am I eligible to apply for an EB2? Also, is cross chargeability applicable to my Green Card application with my wife being an Indian citizen born in Kuwait?\",\n", + "\"_answer\": \"You are eligible to submit an EB2 application if the job requires a bachelor's degree and 5 years of post bachelor's experience. Cross chargeability can also be used in your Green Card application with your wife being an Indian citizen born in Kuwait. Speak to a lawyer to learn more about the details.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB2 if the role requires a Bachelor's degree and 5 years of work experience? Is it possible to take advantage of cross chargeability for my Green Card application if my wife is an Indian citizen born in Kuwait?\",\n", + "\"_answer\": \"You can apply for an EB2 if the job requires a bachelor's degree and 5 years of post bachelor's experience. Cross chargeability is also available for your Green Card application with your wife being an Indian citizen born in Kuwait. Consult a lawyer to find out more information.\"} \n", + "\n", + "\n", + "\n", + "75 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB2 Visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", + "\"_answer\": \"My understanding is that you can qualify for an EB2 visa if your job requires an advanced degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the criteria for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and am currently pursuing an advanced degree in OT in the US?\",\n", + "\"_answer\": \"Based on my knowledge, you should be eligible for an EB2 visa if your job requires an advanced degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I able to apply for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and am completing an advanced degree in OT in the US?\",\n", + "\"_answer\": \"In my opinion, you should be able to qualify for an EB2 visa if your job requires an advanced degree.\"} \n", + "\n", + "\n", + "\n", + "76 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Many thanks for offering your invaluable advice to hundreds of us. Is it possible for me to use the current priority date of my wife's country (Russia) for her green card application, as she is my dependent?\",\n", + "\"_answer\": \"Yes, that is accurate. This is known as 'cross changeability'.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I appreciate your help to so many of us. Can I use the current priority date of my wife's nation of origin (Russia) for her green card application, since she is my dependent?\",\n", + "\"_answer\": \"Yes, that is correct. This is referred to as 'cross changeability'.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Your guidance has been a great help to all of us. Is it permissible for me to use the current priority date of my wife's country (Russia) for her green card application, since she is my dependent?\",\n", + "\"_answer\": \"Yes, that is correct. This is called 'cross changeability'.\"} \n", + "\n", + "\n", + "\n", + "77 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I be eligible for an EB2 if my employer is willing to hire me in another position with the new job requirements of a Master's degree?\",\n", + "\"_answer\": \"Yes, you can be eligible for an EB2 if the job position requires a post graduate degree or Bachelor's degree with five years of experience at a minimum.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I am offered a state job with a Bachelor's degree and one year experience, can I still qualify for an EB2 if my employer is willing to hire me for a new position with a Master's degree?\",\n", + "\"_answer\": \"Yes, you may be eligible for an EB2 if the job position requires a post graduate degree or Bachelor's degree with five years of experience at a minimum.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Will I be able to get an EB2 if I am offered a state job with the requirements of a Bachelor's degree and one year experience, but my employer is willing to hire me for a different role that requires a Master's degree?\",\n", + "\"_answer\": \"Yes, you will be able to qualify for an EB2 if the job position requires a post graduate degree or Bachelor's degree with five years of experience at a minimum.\"} \n", + "\n", + "\n", + "\n", + "78 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for the EB2 category if I have a 5 year Bachelor's degree from a traditional school in the US and a 2 year MBA through online distance education from an accredited university in the US, and the job requires an advanced degree?\",\n", + "\"_answer\": \"The determining factor is whether the degree is accredited. You should consult with the school to find out.\"}\n", + "\n", + "######\n", + "{\"_question\": \"In order to qualify for the EB2 category, which has a requirement for an advanced degree, do my qualifications of a 5 year Bachelor's degree from a US traditional school and a 2 year MBA from an accredited US university through distance education suffice?\",\n", + "\"_answer\": \"The key here is verifying that the degree is accredited. Contact the school to confirm this.\"} \n", + "\n", + "\n", + "\n", + "79 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I need a job that requires an MS degree from a US university to be eligible for EB-2?\",\n", + "\"_answer\": \"Yes, the job must also demand EB-2 level qualifications.\"}\n", + "\n", + "######\n", + "{\"_question\": \"In order to be qualified for EB-2, does the job have to specify a MS degree from an American university?\",\n", + "\"_answer\": \"Yes, the job must also necessitate EB-2 level qualifications.\"}\n", + "\n", + "######\n", + "{\"_question\": \"To be eligible for EB-2, is it enough to have a MS degree from a US university or must the job explicitly mention it?\",\n", + "\"_answer\": \"The job must also necessitate EB-2 level qualifications.\"} \n", + "\n", + "\n", + "\n", + "80 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Does my education background present any issues with my I-140, considering my PERM is approved under EB2? I have a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech and 8 years of experience at the time of PERM, and all of my education is from India.\",\n", + "\"_answer\": \"There are some variables to consider. Generally, if the B.Tech should have been a 4 year degree, but you completed it in three due to your diploma, you should be okay.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Does my education background present any issues for my I-140 application, since my PERM is approved under EB2? I have a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech and 8 years of experience when the PERM was approved, and all of my education is from India.\",\n", + "\"_answer\": \"There are a few things to consider. Generally, if you were supposed to have a 4 year B.Tech degree but got it in three due to your diploma, you should be in the clear.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Will my education background cause any problems with my I-140, since my PERM is approved under EB2? I have a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech and 8 years of experience when the PERM was approved, and all of my education is from India.\",\n", + "\"_answer\": \"There are some variables to take into account. Generally, if your B.Tech should have been a 4 year program but you completed it in three due to your diploma, you should be fine.\"} \n", + "\n", + "\n", + "\n", + "81 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can you tell me the typical amount of time it takes to get a green card through the EB2 category? I have a Master's in International Business and 7 years of expertise in the US and EU. I have a job offer from the US and I'd like to submit the application.\",\n", + "\"_answer\": \"The biggest hindrance for most people is the movement of the priority date. Check out the Visa Bulletin and the Permanent Processing Times to get a good understanding.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the average duration for getting a green card through EB2? I have a Master's in International Business and 7 years of experience in the US and EU. I got a job offer from the US and I would like to submit the petition.\",\n", + "\"_answer\": \"The major obstacle for many people is the advancement of the priority date. Have a look at the Visa Bulletin and the Permanent Processing Times for a better understanding.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can you give me an idea of the regular length of time to acquire a green card through the EB2 category? I possess a Master's in International Business and 7 years of knowledge in the US and EU. I have a job offer from the US and I would like to file the petition.\",\n", + "\"_answer\": \"The main delay for most individuals is the progression of the priority date. Review the Visa Bulletin and the Permanent Processing Times to gain a better comprehension.\"} \n", + "\n", + "\n", + "\n", + "82 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do I fulfill the EB-2 eligibility requirements? I have a Bachelors in Computing from the UK which was a three-year course and a Masters in Computing from the UK which was a one-year course. Will I be eligible for the EB-2 category?\",\n", + "\"_answer\": \"It is impossible to determine. It all depends on the type of degrees and the language used in the Form I-9089.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for the EB-2 classification? I have a Bachelor's degree in Computing from the UK which was a three-year program and a Master's degree in Computing from the UK which was a one-year program. Will I fit the EB-2 category?\",\n", + "\"_answer\": \"It is not possible to forecast. It all depends on the kinds of degrees and the language used in the Form I-9089.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the EB-2 eligibility requirements? I have a Bachelors in Computing from the UK which was a three-year course and a Masters in Computing from the UK which was a one-year course. Am I qualified for the EB-2 category?\",\n", + "\"_answer\": \"It is impossible to tell. It all depends on the type of degrees and the language used in the Form I-9089.\"} \n", + "\n", + "\n", + "\n", + "83 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Is cross-chargeability a possibility for me, given my circumstances? I was born in India, have an approved EB2 I-140 but can't apply for I-485 since my Priority Date is November 2008. Would marrying my girlfriend, who was born in a country other than India/China, enable us to file for I-485 right away? Does it matter if she's not in the US or on a different visa than H1B?\",\n", + "\"_answer\": \"Cross-chargeability may be an option if your partner was born in a country other than your own. She can only submit an I-485 if she is currently in the US.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I take advantage of cross-chargeability in my situation? I was born in India, have a valid EB2 I-140 but can't file for I-485 due to my Priority Date being November 2008. If I marry my girlfriend, who was born in a country other than India/China, will it let us submit our I-485s immediately? Does her current location or visa type make a difference?\",\n", + "\"_answer\": \"Cross-chargeability may be an option if your spouse was born outside of India. She can only apply for I-485 if she is in the US.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is cross-chargeability an option for me? I'm from India, have an approved EB2 I-140 but can't apply for I-485 because my Priority Date is November 2008. Would marrying my girlfriend, who was born in a country other than India/China, let us file for I-485 right away? Does her current location or visa status have any effect?\",\n", + "\"_answer\": \"Cross-chargeability may be available if your partner was born outside of India. She can only submit an I-485 if she is in the US.\"} \n", + "\n", + "\n", + "\n", + "84 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can a US Embassy reject my application despite USCIS approval?\",\n", + "\"_answer\": \"It is possible, although unlikely.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it conceivable that the US Embassy could deny me even though I have USCIS approval?\",\n", + "\"_answer\": \"It is a remote possibility.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is there any chance that the US Embassy could turn me down after my USCIS approval?\",\n", + "\"_answer\": \"It is not common, but it can happen.\"} \n", + "\n", + "\n", + "\n", + "85 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the eligibility criteria for EB-2 US Masters Degree for a Technology Professional with 9 years of work experience?\", \n", + "\"_answer\": \"If you have obtained a master's degree and plan to apply for permanent residency next year, you should be eligible to apply under EB-2 US Masters Degree.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified to apply for EB-2 US Masters Degree if I have a MBA in Finance and 9 years of work experience?\",\n", + "\"_answer\": \"Yes, if you have earned the degree and are filing for permanent residency, you should be able to get EB-2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I use my MBA in Finance and 9 years of work experience to apply for EB-2 US Masters Degree?\",\n", + "\"_answer\": \"Yes, as long as you have obtained the master's degree and are filing for permanent residency, you should be able to get EB-2.\"} \n", + "\n", + "\n", + "\n", + "86 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can company B use company A's labor certificate and refile the I-140 again?\",\n", + "\"_answer\": \"It is possible to submit a new PERM under EB2 and transfer the priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it possible to submit a new PERM under EB2 with company B using company A's labor certificate and refile the I-140?\",\n", + "\"_answer\": \"Yes, you can do that and transfer the priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can company B refile the I-140 with company A's labor certificate using EB2?\",\n", + "\"_answer\": \"Yes, that is a viable option and you can transfer the priority date.\"} \n", + "\n", + "\n", + "\n", + "87 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Do you have any approval cases with a 10+3.5 year diploma and a 3 year BS degree?\",\n", + "\"_answer\": \"I would advise caution in this situation as these types of cases can be difficult to get approved. It would be best to discuss your concerns with your lawyers and, if possible, get a written response.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 10+3.5 year diploma and a 3 year BS degree, and my labor is in process under the EB2 category. Will my I-140 be denied because of my education?\",\n", + "\"_answer\": \"I cannot be sure without knowing the specifics, however, this kind of case can be hard to get approved. My advice would be to talk to your lawyers and, if possible, get a written response regarding your worries.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have a 10+3.5 year diploma in computer engineering and a 3 year BS in information systems (BITS). Is it likely that my I-140 will be denied due to my education?\",\n", + "\"_answer\": \"It is hard to say without knowing the details, but I would be wary in this situation. I recommend consulting your lawyers and, if possible, getting a written reply to your concerns.\"} \n", + "\n", + "\n", + "\n", + "88 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood that my EB1 extraordinary ability application will be accepted on my second filing?\",\n", + "\"_answer\": \"It is impossible to predict the outcome of your application without having access to your records and case.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What are the chances of my EB1 application being accepted after I refiled it?\",\n", + "\"_answer\": \"It is not possible to accurately assess the situation without having all of the information related to your case.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the probability of my EB1 application being approved if I resubmit it?\",\n", + "\"_answer\": \"It is impossible to make a prediction without having the necessary details about your case.\"} \n", + "\n", + "\n", + "\n", + "89 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for an EB2 visa? I have a Bachelor's degree, completed a course of study equivalent to a Master's degree, and am employed as a faculty member or administrator at a leading nursing school in Manila. Additionally, I am currently pursuing a PhD in Biology at a top university in Manila. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have either a post-graduate degree (by US standards) or a Bachelor's degree with five years of progressively responsible experience. You should speak to your lawyer about applying for an EB2 and transferring your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I apply for an EB2 visa? I have a Bachelor's degree, completed a course of study equivalent to a Master's degree, and am employed as a faculty member or administrator at a leading nursing school in Manila. I am also currently enrolled in a PhD program in Biology at a top university in Manila. Is an EB2 a family-based petition? My parents are in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have either a post-graduate degree (by US standards) or a Bachelor's degree with five years of progressively responsible experience. You should consult with your attorney about applying for an EB2 and transferring your priority date.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I qualified for an EB2 visa? I hold a Bachelor's degree, completed a course of study that is equivalent to a Master's degree, and I am employed as a faculty member or administrator at a leading nursing school in Manila. I am also currently pursuing a PhD in Biology at a top university in Manila. Is an EB2 a family-based petition? My parents live in New Jersey.\", \n", + "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have either a post-graduate degree (by US standards) or a Bachelor's degree with five years of progressively responsible experience. You should speak to your lawyer about applying for an EB2 and transferring your priority date.\"} \n", + "\n", + "\n", + "\n", + "90 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What do I need to do to apply for EB2 with my master transcript?\",\n", + "\"_answer\": \"Immigration law focuses on when the degree was completed, not when the diploma was awarded. Consult with your lawyer for further advice.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can I submit my transcript and letter for an EB2 application?\",\n", + "\"_answer\": \"The immigration law looks to when the degree was finished, not when the diploma was given. You should speak with your lawyer for more information.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I need to wait until I receive the diploma to submit for EB2?\",\n", + "\"_answer\": \"Generally, the immigration law looks at when the degree was achieved, not the diploma. It is best to consult with your lawyer for further guidance.\"} \n", + "\n", + "\n", + "\n", + "91 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"What is the likelihood of my educational qualifications leading to a denial in the EB-2 category when I file? Will this be taken into account at the I-140, I-485, or both?\", \n", + "\"_answer\": \"The chances of a denial due to educational qualifications are usually higher at the I-140 stage. However, USCIS has the authority to review and question any of these matters at any stage. I have seen approved I-140's being reopened and denied at the I-485 stage.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the risk of my educational background resulting in a rejection when I apply for the EB-2 visa? Will this be checked at the I-140 or I-485 stage, or both?\", \n", + "\"_answer\": \"Educational qualifications are usually more closely examined during the I-140 process. However, USCIS can raise questions regarding this at any point in the process. I have witnessed approved I-140's being revisited and denied at the I-485 stage.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What is the potential for my educational background to lead to a denial when applying for an EB-2 visa? Will this be assessed at the I-140 or I-485 phase, or both?\", \n", + "\"_answer\": \"The risk of denial due to educational qualifications is usually higher at the I-140 stage. Nonetheless, USCIS has the power to review and query any of these matters at any time. I have seen approved I-140's being reopened and denied at the I-485 stage.\"} \n", + "\n", + "\n", + "\n", + "92 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Can I file for an employment-based green card in the EB2 category if I have a B.Sc in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"Yes, but make sure your legal counsel drafts the application carefully so that if EB2 is denied, EB3 is still approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for an EB2 green card if I have a B.Sc in Physics and an MCA in IT from India?\",\n", + "\"_answer\": \"Yes, but it is important to have your lawyers create the petition in a way that if EB2 is not accepted, EB3 will still be okay.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is my background suitable for an employment-based green card in the EB2 category if I have a B.Sc in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"Yes, but make sure your legal advisors draft the application properly so that if EB2 is denied, EB3 is still approved.\"} \n", + "\n", + "\n", + "\n", + "93 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Will I be able to file for an employment-based green card in the EB2 category if I received a Bachelor of Science in Physics from India, and a Master of Computer Science from an IT company?\",\n", + "\"_answer\": \"Yes, it is a possibility, but make sure your lawyers create the PERM application carefully so that if EB2 is denied, EB3 should still be approved.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a B.Sc in Physics from India and an MCA from an IT-related company, can I apply for an employment-based green card in the EB2 category?\",\n", + "\"_answer\": \"Yes, that is a possibility, but make sure your legal team constructs the PERM application with care so that if EB2 is declined, EB3 remains an option.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible to submit an employment-based green card application in the EB2 category if I have a B.Sc in Physics from India and an MCA from an IT-related company?\",\n", + "\"_answer\": \"It is feasible, but ensure your attorneys create the PERM application cautiously so that if EB2 is rejected, EB3 is still viable.\"} \n", + "\n", + "\n", + "\n", + "94 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"Does my wife qualify for EB2 processing with her post professional degree in OT?\",\n", + "\"_answer\": \"OTs do not have a special category like physical therapists, but EB2 may be a possibility. Consult with her attorneys to explore further.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Can my wife take advantage of EB2 processing with her OT degree?\",\n", + "\"_answer\": \"There is no special status for OTs like there is for physical therapists, but EB2 may be an option. Your wife should speak with her lawyers to find out more.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Does my wife's OT degree make her eligible for EB2 processing?\",\n", + "\"_answer\": \"OTs do not have the same privileges as physical therapists when it comes to EB2 processing, however it may still be an option. She should speak with her legal representatives to find out more.\"} \n", + "\n", + "\n", + "\n", + "95 \n", + "\n", + "\n", + "\n", + "######\n", + "{\"_question\": \"I have three years of work experience and am planning on getting a master's degree. Is it a good idea to pursue a master's while having three years of experience?\", \n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card once you have completed your master's and have a job that requires such a degree or a bachelor's plus five years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have been working in the IT field for three years and am looking to get my master's degree. Is it beneficial to obtain my master's while having three years of experience?\",\n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card when you finish your master's and secure a job that requires such a degree or a bachelor's plus five years of experience.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I have three years of experience in the IT field and am considering getting a master's degree. Is it advantageous to get a master's while having three years of experience?\",\n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card when you have completed your master's and have a job that requires such a degree or a bachelor's plus five years of experience.\"} \n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "qaa_augmented_raw = []\n", + "for id, batch_inputs_string in enumerate(qaa_list_encoded):\n", + " print(id, \"\\n\") # \"\\n\\n\\n\", \"input:\\n\", batch_inputs_string, \"\\n\"\n", + " completion_batch = openai.Completion.create(\n", + " prompt=batch_inputs_string, \n", + " model=\"text-davinci-003\",\n", + " temperature = 0.5,\n", + " max_tokens = 2000 # The maximum number of tokens to generate in the completion\n", + " )\n", + " results_string = completion_batch['choices'][0]['text']\n", + " print(results_string, \"\\n\\n\\n\")\n", + " qaa_augmented_raw.append(results_string)" + ] + }, + { + "cell_type": "markdown", + "id": "0e391157-9ffe-4942-a0d2-a8c8c850f808", + "metadata": {}, + "source": [ + "### dump raw output to a file\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "3df4c39b-fca0-4f80-a5ef-2e5b9c790b4d", + "metadata": {}, + "outputs": [], + "source": [ + "def _make_w_io_base(f, mode: str):\n", + " if not isinstance(f, io.IOBase):\n", + " f_dirname = os.path.dirname(f)\n", + " if f_dirname != \"\":\n", + " os.makedirs(f_dirname, exist_ok=True)\n", + " f = open(f, mode=mode)\n", + " return f\n", + "\n", + "def jdump(obj, f, mode=\"w\", indent=4, default=str):\n", + " \"\"\"Dump a str or dictionary to a file in json format.\n", + "\n", + " Args:\n", + " obj: An object to be written.\n", + " f: A string path to the location on disk.\n", + " mode: Mode for opening the file.\n", + " indent: Indent for storing json dictionaries.\n", + " default: A function to handle non-serializable entries; defaults to `str`.\n", + " \"\"\"\n", + " f = _make_w_io_base(f, mode)\n", + " if isinstance(obj, (dict, list)):\n", + " json.dump(obj, f, indent=indent, default=default)\n", + " elif isinstance(obj, str):\n", + " f.write(obj)\n", + " else:\n", + " raise ValueError(f\"Unexpected type: {type(obj)}\")\n", + " f.close()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "ad7db994-92b6-4c17-b083-2dbddacd272c", + "metadata": {}, + "outputs": [], + "source": [ + "output_name = \"output_raw_96.json\"\n", + "output_dir=\"./raw_input\"\n", + "jdump(qaa_augmented_raw, os.path.join(output_dir, output_name))" + ] + }, + { + "cell_type": "markdown", + "id": "4ba9de85-e120-4dd3-a77c-e578966ede01", + "metadata": {}, + "source": [ + "### Read json file" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "9269aba8-ee1e-4f71-bf1c-e80d806b0842", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'\\n\\n######\\n{\"_question\": \"Can I initiate the green card process if my H-1B is picked in the lottery and I have a masters in engineering management?\",\\n\"_answer\": \"Yes, the employer can initiate the green card process even before you join. You can review the salary figures for each county and profession at this link -https://www.flcdatacenter.com/\"}\\n\\n######\\n{\"_question\": \"If I have a masters in engineering management and my employer has filed an H-1B, is it possible to start the green card process?\",\\n\"_answer\": \"Yes, the employer can begin the green card process at any time, even before you join. You can find the salary caps for EB-2 advanced degree holders by county and profession in this link -https://www.flcdatacenter.com/\"}\\n\\n######\\n{\"_question\": \"Do I have the option to initiate the green card process if my employer has submitted an H-1B and I have a masters in engineering management?\",\\n\"_answer\": \"Yes, the employer can commence the green card process prior to you joining. You can look up the minimum salary caps for EB-2 advanced degree holders by county and profession in this link -https://www.flcdatacenter.com/\"}'" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def _make_r_io_base(f, mode: str):\n", + " if not isinstance(f, io.IOBase):\n", + " f = open(f, mode=mode)\n", + " return f\n", + "\n", + "def jload(f, mode=\"r\"):\n", + " \"\"\"Load a .json file into a dictionary.\"\"\"\n", + " f = _make_r_io_base(f, mode)\n", + " jdict = json.load(f)\n", + " f.close()\n", + " return jdict\n", + "\n", + "output_raw = jload(\"raw_input/output_raw_96.json\")\n", + "#import pdb; pdb.set_trace()\n", + "output_raw[0]" + ] + }, + { + "cell_type": "markdown", + "id": "e09ef700-d315-4d14-9620-717695dc85d5", + "metadata": {}, + "source": [ + "### Postprocess the Raw Outputs" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ec478198-784d-4b53-8dd0-293ef337814a", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "1284802f-185f-4783-9cd1-26706baafbdf", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "275\n" + ] + } + ], + "source": [ + "QApair_dict = []\n", + "error_list = []\n", + "for raw in qaa_augmented_raw:\n", + " pairs = raw.split(\"######\")\n", + " for id, item in enumerate(pairs):\n", + " # print(id)\n", + " if not item.isspace():\n", + " try:\n", + " str2dict = ast.literal_eval(item)\n", + " QApair_dict.append(str2dict)\n", + " except Exception as e: \n", + " print(e)\n", + " print(item)\n", + " print(\"\\n\\n\\n\")\n", + " error_list.append(item)\n", + " # print(type(str2dict))\n", + " # print(str2dict['_question'])\n", + " # print(str2dict['_answer'])\n", + "print(len(QApair_dict))\n", + "# QApair_dict" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "d7f4de55-00fe-4fdd-afa6-1eda97d6dd5f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
_question_answer
0Can I initiate the green card process if my H-...Yes, the employer can initiate the green card ...
1If I have a masters in engineering management ...Yes, the employer can begin the green card pro...
2Do I have the option to initiate the green car...Yes, the employer can commence the green card ...
3What is the eligibility and process for portin...It is possible to upgrade from EB-3 to EB-2 as...
4What is the criteria for and the steps of port...It is possible to move up from EB-3 to EB-2 as...
.........
270Can my wife take advantage of EB2 processing w...There is no special status for OTs like there ...
271Does my wife's OT degree make her eligible for...OTs do not have the same privileges as physica...
272I have three years of work experience and am p...Yes, you can apply for an EB-2 green card once...
273I have been working in the IT field for three ...Yes, you can apply for an EB-2 green card when...
274I have three years of experience in the IT fie...Yes, you can apply for an EB-2 green card when...
\n", + "

275 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " _question \\\n", + "0 Can I initiate the green card process if my H-... \n", + "1 If I have a masters in engineering management ... \n", + "2 Do I have the option to initiate the green car... \n", + "3 What is the eligibility and process for portin... \n", + "4 What is the criteria for and the steps of port... \n", + ".. ... \n", + "270 Can my wife take advantage of EB2 processing w... \n", + "271 Does my wife's OT degree make her eligible for... \n", + "272 I have three years of work experience and am p... \n", + "273 I have been working in the IT field for three ... \n", + "274 I have three years of experience in the IT fie... \n", + "\n", + " _answer \n", + "0 Yes, the employer can initiate the green card ... \n", + "1 Yes, the employer can begin the green card pro... \n", + "2 Yes, the employer can commence the green card ... \n", + "3 It is possible to upgrade from EB-3 to EB-2 as... \n", + "4 It is possible to move up from EB-3 to EB-2 as... \n", + ".. ... \n", + "270 There is no special status for OTs like there ... \n", + "271 OTs do not have the same privileges as physica... \n", + "272 Yes, you can apply for an EB-2 green card once... \n", + "273 Yes, you can apply for an EB-2 green card when... \n", + "274 Yes, you can apply for an EB-2 green card when... \n", + "\n", + "[275 rows x 2 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "QApair_df = pd.DataFrame(QApair_dict)\n", + "QApair_df" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "a81743fb-966a-4c40-8e32-3bd2f7f7ee4d", + "metadata": {}, + "outputs": [], + "source": [ + "QApair_df.to_csv(\"output/output_qa_augment.csv\", index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8fefa17a-a0b3-48a9-96d0-db7ec575a6e4", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/example/autorate/data/Chapter 5 Rome.docx b/example/autorate/data/Chapter 5 Rome.docx new file mode 100644 index 0000000000000000000000000000000000000000..58d91180597d599e46797c807f40a58d41fe2317 GIT binary patch literal 1942873 zcmeFYW0NLd^etGfr)=A{ZQHhO8(p?-+tp>;Ho9!P3)8><#6;YQnQw6Kd692&M@D4k zTCvVvYac}!P%u;=2p|9u5D*a%_@yUVHZTy77z7Xy3J?H9N5sM2)y&@2K-J69%teph z)6SN#2n>X>00`t?{r_428-Ib8R4IiaM#NvYlAqz@8Y#aW1p#cw{m!A%s7~&=Qr1We z55KqiEVjw4tJ|m)=@XGpdtSYAGF=JGJLSpum9&zZFKdR785hwfRk{9Rc9(e24iL%` zS=$g=xCp+?cXgk^pTIK`wGQOO3Ol~$6ypY=XJ|o&sY_qB0$eX?ZbCni(eAS4Pt#;< zKr#}-&IY`9C@4pM!%sZM;4?_&RBAr__GJ)1mOZbCpL^H;6^`veI@qBtg=FdAYaE4F z=Q@&-=zI?!moh{HB9MTn(U!>$s@};#U8Vs}>i1`;dR}z4d=;a+!MVn2ZNn*>FQ<(* zHB_8nC#M}5@jS&fmyJf7viU?{+-TGrke6}_X;q^`#5ir!|A<2Crx5d_YV@R=MtF{6 zCx9AjRpZ+hvp(NeE(B1$RS|CEp|Ioe(&cI=mNk0&c0k2BsU;+9eG-JV;Ve85pcOaS zfkv{F1vb#F|Cw%V;6j(W-gsRlisk!>wyQ5!RV`nBh4)pQpRV-t+a+D}{doK)gg*v} z;@j}OM>+EY1p@l{0R>Y0e{mW=5xf2IA5i80Q5NPOrwyFVY+V@W|GWMlF8^;#;Q!^- zW0JO{L4{z$Zo&7A#{D?9poteZb|nivh%Z4yGp~R>;HOJAdwYrrI~BL|Po7Sv6jrlC zvX^Pd z^mWSt)z(LF-6--JtLGsg(xOH8^Z6?h(#&AV|4-fizZ|idaA&pscSjo%2nZJl0PNx5 zY|8L|6UEfQ#Le!X1pcRe{|{+^{|Vr~>i@l0cPih10wCx?`Ym#l`}>@tpiB>_k_MHj zYnH1q;(ELnC8YiUpobvqV4DTVb||@??w@W^lzUeW$-&*o z89!5kIl4+9Sm+SNNy%dDz@0Nj*;j5s3@Kp(jKuGEp^qqhhw4Tdw&>T z$&*$ni6Fcur&<-Z5mY@$u;O^u^)MDG-A#bt^M(I|N->#g71ifKQbdt>li3b)x+gcn zJh+ElMT)BBU68a8Unq(H_y*bSL(3en59!Z7;`1sW-L7=|`as&ri18%iCG7 z5Va?H!aow+R~_)U>I?db5g=O{?u|I!uw0;zEf&jAn&iw zv4nptoIMIt5S6(D=c_wRFRa3kGUnNB&=pVf#iPg7tGXYi36gj81Gc^k)N`Mft`y~G zg>SaQU+XFZdfo$rjy?fW>iDUt$ghCw9e(lnW1mEmIw!Lpm6z@d37IwT5U#Z^ZuG`& z7va}~LrUdHOt9ZYQa|g3JkGbs1I7j2R9_tK?Sh#HRp0u?rY z_;0>6{jT+nQtOW>l76iT_a*ttzX`ljPbzmym((Gk@V^zx=H?#{zZVGyb=f&H^+qj@ z%>91L%Kr)O#sB_!%7442K|D~n{n$SV4B$V1&Z!R3@m`bd z;|Os4)MD42k$#eO_fqts^Jgde=WAx zadRd#Hzre2j9iXBYsU61zVY>)jFo==5Xb(C7U7XMrB0^k@Hk(-vCwtr`R+Qg2s$6P zPn@h6&EiJcOa2?zKWEI!qW9xy-svG>%PHihQWf%q76V_s2HL{5?MwYj$Ji>YweF8_ zssz>~Bn8rfB)6(d(hpg$#7~w7&6rAZgmca5Yo%NLJFJ(B`U4-rhKSS2pT8KHhwloG zEJriUGcA=RlFgugwA?0%#E8T+_|O7SW%7i`O%<}tUKXUsethT z!$eY1RbEGb<%S%BQO@6BcVvl@b^81?sEiT0@DDwL@_3#UXl%Z{PJSjc?RJlemwq4@ zso{U&C!;3TJrb?^De2YHJdw|o<#qMyBcv?k^ZI?deAO!~^0wa%D1 zUMVETG{BLS!TV-s6>k1ojIijcYS@Q^7+E9hZjRI0@{1p~>7E)x-F#HAgrWi(Sddg8 zI|zbzA6?4ucQ_N=u9Le@R;xL4;V1Q4qk`d(O#up)YhNnu(+M>sECES@Y+%lU=hr;N zYhvg&b#B>km)uAXPnAyzztxlSo%)R$I}@w%xV?zrmp? z2}3HAkBX6GBbl`zM?sDo#BJ6rVVRlSe~1znQ+3I_ddJ2KM_D*^C`d8&cx>w2XV^sk zd;#20KYCRt;DDvCK(Ez+(K_MZ$c*B?s~DENmDIS(-0W=?8p;$HcLb4ysuD~+*7KvS5*tQBNI7HkPF!3WA^jjn#UU=004>_;4U58($=kMor7l0vz8s^(fi zWtTyZQXvavF1rE@*r(yQw&pAL=3*t_0td}lGr$jxkO4pqfq(h`c4iAo{5Is2Fj-$U zzuu%xJ?MXr&H{pvOaKb;iIj}c&m$p8jUWBRXH*0H0cUJ^-wxL-u{Kka(Tn&O>H-yP z$mTo>w?)z9x6low;0sCU6a^NSi2y*ksp`4Oy(eY~Ch>!FoRr2PZ)-pk@yf|UuzLr&{(dv zYe~nYfb=(vD9SBfsD&Ydm^@ihWe7f}ny{b@0@O=ZccJn`l4{>8!!@L%7LNx*ZK?{l zY)O)Uf-@{S^x{@yKDs-Vasl3FUpS>Az~8gild@QT*=SIxRIZyPGz40zNG6=1ShP$^ z<RHPI`f0}UJW&}3-WeN#OE0qU{Tje;#VqXdVGQmrvsZB-UGlaWbK+7o zO5)_fEL|+E>B>dP+pc*01GMAvBt|niJH@q3_pX=%jrR}uxRUj28Jlib z19TM2bPy0k7dEk@V@$XL)HIpmP5eV(R>HX_TaGbbjTgeu`6Y$ho|7p66$R9d1pEw( z#Ce;Bynq&US2|?_yT&U-2`E$ou8f=V`+F;(TntH%UHMXMV^FzFzd^NQ>2`MZd|YD=Z{YWuW>1=4r4$Y(!Egi*KKH?=Zh^DxW`9ATbZZ@+e{JH)0}> z`h>)|!P8%fuk31`tl4skikpJ)_?tL{+jx5iD4rMw&je1FZG(H!pSQC+u-ilVy<5Ee z*S*{Wf)uNLwIQMs&>PD$PL~43APl1#{2zrZJfGRXZ-YMMCc%6ZS+_rPx4@(%*RgZG zFg3E=yhZUGE&=`@f+*j;KKc9L%O@BZyyAxVLLo0qrL+j0!p8DhM`lpibf3sn5k`jI zk5QcuzqN}I8$ND-ssmadl1=HDFw8joi`(( zoVSNj#k3lV+0iwT_=nUCGn8Z}f9w6_%Za+@^A>q>I=7(cNcbZ-c=7vD{+w=DEQ^fU zW$ft?k>Lx3WZp+DZ~ry72kk30g$dwvf5`}S&QSc3DFj)K3BK9j5JHPyFk9BS9;LVg9W47qMY}6NH1@{0fZUd#tZ8MGg`C|G0SJG6L0N(bwYN$UC|4!P(%yT9-eNSYRwp%dWUFpGd4jbR6i2@D(EnP_b5MNwZ#2j@Bvh1`8%{ zUBb{V+>s5`Xcg9@bV#nCYce`ZiivbK5(hA&J=)T-$v}m*wVPMBpOCpsM#p8>sm{uU z!J<*+>_<+74Ga&Bp9sdO$MbGIcD_GmkwAK^!%p1%+Ym-O*V+cZTO`?pjFL_G4{4X- zx9YFfr7vKzWKp{ECl}r{kt*mR)#i!s8EI%oaJ?%0(nKx~KZwuR?>j1fa^}pxr))85VsK*(HY*nES_l>fgQiV$E$#>Yf~NIldXSy< zP)r}?1{Q@JZR|ab>ddInfR$)Eypu@kiAGAe-1 z!?Z-M9n~zM>Xre`-WQ1`#D{^URH_-SmJ~v>xA3dkF`kq~G(^AyUZmd&+m1RN5jma+ zbd5-i6~O~Pc|fsgaED79lGdsbR1@UK_jEP+atKeL4^!C8E%;KJ z*6D$)u!Sh+bQ9(OT1%X zp%$`YV!?y!6bOONRD!O_4QY0E>{TJvq62&q)-D1!9+BaaK?{!q*BagGy`#H z?<#bYb$3I?V%iEDk7Unu4Jn-*9R`L8iWPd*YIPqP8+VNzD?+S$y%f{RVWT6g3ANwa zm>RNz1iXp1YJ9B?t83=^=nRWnM2S{F{};HPbmYTBwT8%;_~o9+WmFhp5yP||b=C6U zLsX*?q{p0juQcUg*u$}*>eN+a6O2dc6%UXUHm02parV~u=0nRHR(pok*ai!n)KUWp z)LgBR`00R_J6qRz1CfPma)_aE{v3j)l2VRL2g1jwcJ5C$UG4mF`njlkhxiDqvcN{r zfl9_Tz{?}pyIMTek}a)$w7?*yJSkp<$+bXG$CQF$CsXgOiACtnvU;Pllir@cZbi+h z^i_$KSF%5INytXDF9sdKz&gzc_RugBpS!`)W4qlg-%Vjr`z-sOVN9-n=s^`}H-CA- zXEUfC6S?%b>&y)A6)W_saw{vW4PnjW;BaxTPn77kbYoh*)Z58nBY0l>bgb{dIW4G~ zoLRA~(0Xjv4KDEzCGFYeky|{h0cC4WY^9!uH;vHV%ymW3D8pB@X%G+bo*L@ry&v^# z3Y9pg#uD|;?Jh2YV2$}M7;a(QkOUnhlk8^hX=1m@6TZiAbwgt`j2OOW<*-9?A#+~= z#W&YcW(`$Ffg2T4%F=UOS+KWT?Vf?Yt(@2I7Ul*+n#eV)HPLn=*! zRD2_Y%XE@k%;LDe$n)EICbvVgQ?4Fx=bh#-4{8?Ka8cLO$Hjm7>hZvs4a20zhA5() zf?me8xejKdFWtO;gkZd2_J#a}YP92VKYFq&B;5Yj=!4Cg>Yfih_c zc7r>092qF-v1)jY9iz?SpHiJeT@Pk$T}>h9&bhmx(oW-N$?X>8L4cQw^UW>ci9swh zd|cuw#HvdvY1%^m@hd4H{B}H-D+osY$!?)-KAesleTC5B?j8!<6K8b`?ozO|5f~D5 zRWmd(UYzuem-s+beSE7?m4jf0fg!z>e$_Ym4w{)(kjHACyA+*XP(d;)tQ%TZ#==|M z3UW^K)OxMs>^JxPAz{i=lZ6rOaOo^BGL>AcKir8CUbWX4btn|;9#WE{`9sv^?=u=p zq2HK~4@b^5DDB8S{y5~takaoX*kh}!K>~?b{w#s+AcQBjg}X)I^Vr9UexW&-(Z@|y zV8vF2dF>Ak#0w*|2)gq7eJBDZ3s64(tv>#Z*vK`=Ve5F=z#_%-8tL~uj=j`qJ>#O@ zI17re*xaxI$UE_=w@izGlrmS+D|@CkQx<&AHI>u5r}Ynwu5Yow?$e6=Qu<0|z!oN6 zCBhkL76WRSkjTkytNPcQFlLNTHBq5{N{q|FFnPGrAZ4DXschO^;xeRiAqh;PhhkX}@R)LwQVfQVNxmO`BDfp`_Bdi@Mb~%Xg*!L1~sl;3YXM0uF6hrXCK=lOz zpuuzZg$E9nzmUQX+;S{fH#Xg|8T!c^Amv7>aql7dnuwMl)*|ySx$_5~rse(KpE-b|WEjkFQb|=D*H{ zupr$0Y8wBC(nXrtx|W1W{`1DJ(jnF-Rd?}`h%L3*O~As6$H`~=%WBzY(h4x?P_%-? zYy?YN9DgwR#X9207q-`)zb^3TR;_1T04isa4Q$=KL-w2{^-z*G-eS?G<#hy*1vlzV zB$wvb=7QScK+IaR6hBbt*`(u!3)JEtB3PG*D|}HRjC+r!*5-<`dVNVTMt-$k1|iFk z4i@Iv5KL7<3dM1~sED3S644>|(aUoXNax z^@`t7AYIgJxR2w|kom&Ny&bnh8>PXTK#2)~gw^GxcNC!=dCml6?1#v+R%}kB)OS~ps=wc!#PcoW-%FG)DB8twU@8E0~R!d*iTlj#kL=JCezI9->vOO z0)=KBtu}1o+VDbBUC}FW3aJFJiu+?oTX&RnijoDhB#we2MYHLFTz1H#=um8|B=v&c zAPqTqQR zO?i=osDs!04oaAgGBVY}FenjeYVuoiI^mrOTD&(?K;nsa!PE$z6x?avb|l`i$~~-{ z+wQ|=Yt06Vw#LvYkV1wf&M6S_h*qISwvdd;V%$c29Lrd|`Lb;{PFujg+@ZbeU@Tdu z5hT}X6_Ie^NLn&LrhF~y7Gu^)4}dqBE(;6OTG(w~374wkNaIG3lJ3#TcxPyEWE6Qe z%yH?PnZgnjVy2^^Liq$b~JXwx98bvEPONWR3d}YYin|$iFB(Pfi0GZ@x zu;Mh&Eu11LP;c$j?4;5elvdHF}^HaFXCx$vR1DsxQD3ntl8Jnl)(N;ltoLG0tsW6E^9U9!=R4R_GLlcLI7J28Nq$l$%4G{1A=8SOYh%U51XX-cHmtI|T&^fzn zYzl-ol{pjW$&+Ej6`e_3Gk&33(L1L}^c=MOGl@HRvd$UK8l1d$y1II_ho3ba!LmIF zs~vQ^4?U|T?rdzCI>wQV^F{Cc8N_m+OFD#K4oXLA--U5rW8iWrN)YaYLeGm6wwgq^ zvkjam>%CZ33}(Y0K4+FQ@76n=3|xE;h-Wa;^mZe`v^Pw-unm3uW6&c(29UQp`PM$c z_FS9XpPF^O`Jq6O&7x0M8UY?)qNqS@8F17>RmIuDi;-e!ZwWen>YMbk!7~9PSMBSxbA3()1;{4Fz5_GNxM4>MJG8{t#(;Nhl zy%iQwRkL760IEJp+kj<43ADA{N?mR5-_Kt(U$g`ix)-1eOzwmGb*oXqb@YVZ+LrCN zq}5vF>^pY+J7gMJcyc+0ieriRt9fI|;xTh@j56=Rswu6SkLW&uR+JS7yr_x6lH&EAhZmw6kn2 zS%XS+1%ZC-V7`@RUTcY{%-I!ji2xGR1?+C|U zEV#c>qpF%4uFC|09|c}NsW$f0=z-wW__ST-p>j{DAXET<%41R^#K#SoP%IL}Hfn;o zd_G;+UQy7HnbwxG-CEJF4>jXSD*}oR!fHYaCj7Q2WExJTBv5xsm*Jr@zo zjP;JpIsxS_f?#oBYHy^FcyeK9Gg?43cHAI~=fc%d(ghpu{g6QHr*|TS(smLBb`?!E zzgQ=LGBL^r9J&2?-&Cit=d!dLkijO~a&3b2%%AX^aF!$|OFF>DZPT{x)4C%liY9(D zy{AiTpl1lKnFrKdr?p*Mq5{;Ik&#~X@6K3Qc8O*<1(Rn;He}^|0+hDq&{<|MST<3| zzY4A_v~A8#WrtPg8ejm9KX@=wEPi1~OvrScQvtSIU-MGoB3JG?)uDZVfM}ZFAa11( zcpi1GF{P#;iZ_r5!MC^Pb!nx(*g+;@v4f1Nlklzi2f^CpcsAvDAegfg0wKN7;o8ce z537SRtxHECJJsuvzAJ5DR2z|8y8rwRQ~f;_a&R)@An0cJ*dTLA`UI!PJORsF^ROG0 zh?5GuzJD5o;LGMz8KDwze1Effs>>Pe>h9+2;?X4OR{RaS_j6J>`L%b((K5R}pbXUT zKbz5BNFlGKicoB01mOGM;e`8hLK3lmSGf0>=|8i>{JN||FQ}ByTa>v4A*X0%mU5r6 zc>d@%v{@;-0#IPJrNC&DK}ZA~?MF2!fv$<7T->6y4h=6YTS~taS?2bErCU}Z_$j+u zoI%N~f}v2UBB-Dlq~UYsMl$MK7trm%u-ICJfzJ!*;P8otWxyMQUubgZc(Ds9plN2V zcN!XN2iDCkdD;BY5kSmLfWOs)|CsQtMTu0z_^o=io$(^HD9Smo&)gYk{>mA?-&dLL zUp(@lo8S|0w9PFSIyEXp(7TxmI0C6U)AS2R%QP*NmRBtIq^0$@zm>n0N0)}*eUZ1f zm*z91_n#Iq)h6Lu&-6C7x>xBqnbobK@|PxsbNOVUEYDk3?Z@`m=fjSv->J zN5w0s+_X^Kb-}3VD!)#P!XJFve82|g&UvIz3gnbL8d;M3`{cX@U5glu-!eH?6|c~Z zo`v4rLH=$8N#iF<^q^f@f3vI3;MqQT0wx)m`OpHlW0g-S{M;PpC!auW4T{}DWYjVp z_)LFlgiGgr!n`Kb7*~nobitu0LQ&)@w@ynOenCAb6wl_1Rz$$EPPaiz#db3!%@Q$; zV4}2%15UwsnD+@!c)DS)Eqa~Q0Xld4h@txg%uzAAGce{)>h9;u0!NUPI~ubQp>rF5 zgv7LEJJ&EaAb)$TyBq5sbyiW{7IjY_)j(F0vZP0*Ke2Qpsv8Y?u~30T!{zUN=ZRRl z%vh)!>uuFg1*vEq3x&{pYrV()42y>bW>Nu{P}fJUg!4fG87<+ll&(~dL%-2SpS=^> z0e&8IV<0+;vZR7t#io8mXHG4S8E;j>{0cO!7)b`CSYf6)U9;F!hO~A8C@ytPpkqE1 zBi(d;dUEvToTl?VO!N%406M#>rlNxi&n1PD!UOs)!EGJF9v(hD@m`(*9v;CaOQq2);vio zKr4(46F-yKRJqH!`7SQOT|yE+HK8;HRp4A4)4P`niomDrA~HfS40s#m=DljlPR^9kNXX55VJw1E+&a>_x7P%*1z5oc=GH@Mc0y`2*9$y+ zsIFB@`^7eBy{d!eje+&Fp*>Tby@KJ)nBc9nC6UIF_U{9Z6!iwWQJMF_@YKY|?e;A> z9N!j_g;PN`h_(M%&KgVC5~F<;{7e|zpHTf5f`i)=D*T&;ibAKV_GKNFf)mDuMk7`6 z7v`g!si#A*wrO^^Q@>fAmV%R2pd|jdhro}x8A)wZ7Jlg_byXx(aD* zaT5pelozf#6qE)RF5@5@13f!o9NF2d(aT;41*VpEjT)yFumS4w_D!8)_my3>_;$1x z-%88cqGLOqDTP!RNFA4I#j0yn$ZmW9$nKJ^#A|Zctj$Pk$!O=45QBmRLVy-zZ>;uv zqp~6~^X`{RDmI9WphQ~mpwLA>5K(^fQOHWH>B|RU&s#x2*Q81Qh!}ynsRtTm^Z7Ik zuGI-FK|~sgv_$0|V(`WkqA*31y7pqUGlOXa<91+o0>3RtR6|slp3Et@uMhckh4Vl- zE=xueTR`K2;+Kq4$p?>1t{?{r&o6^opyAz6Dzo01$G^D8zu;;y!Gr9mo77f9P2!!& zNr}-Z{^`^m9{ful86}?A1h=s2_Kn5T{~qfFFg1YAZ7E!K_91#HqB-V5gCl2vus z*B{US$;RZEYB>aoW*9O{hS$L*3yGiN@A7~xw2Zlu|mIlV_1v@vPdN0{PdwghO9)erL&9)gFx` z19orygx9{B0}U045AJv4pSWo=SHJiKJfWl3o+nTFy+=&^ykXb$zJ)E;TV!D3Cf63u zM(isbnSEW)w<`c&)1oACZ1#3Dml(UEx3da$-p$z+&V9=c4D^gN2J^EG%QS1-6-sM` z%gM)eQHX)!SfseWiR6OzO~|2@h?YQ(#dT(qQlEn3wz`Ifx~hlTg|u#~IuP@tQQav4 zEy{#O2Yoei0DW_DHb6^90&sS3*1yb=!k!NCzodHs3g!)CSk`kRHn1+%vk<7!f5jJD z2Q&BtzjmzUk_mLPW3U{K$O!6@XVxbyEp9oLcU%pG1^=!fzcJq5mTt9fq%I6fvvJn& z!WW+g>%G81w3_OKz3iX2gg==a)~3RM6eyZ2S{>fI4hFwBjDCj`LZhYe1y8g@N&V z6KK^Jh-D<2fasd}ckOeEJ71}(p=vbR{}gw_oJbN&tkD=|RqG1ev7z&4#Tg9r5;AN; zrp4B*qtT?FY|gLxS{8TUBqwqiC}}_xOn(adXi5Tsc(UEe-{@@AT;m&vUk*oWuZ}*) zhB9C!G;b@%wjz<3Zm`zdix_tiA^nE449yfOc_xKt!P{MfnN>c^ghmXza4RB) z%`KY(j$vm?h0NFvU!ZFn63{j9bNA$_KKvNwV~>l%;|vB04O=NuY|C5P=FE?sxF0WF zv#`mgO?FOJPn~qAeWE7Nje+lV0$|t=@agosJZ}?1N5k`drPY7MTJo!VjMlucV@uOJ zoGi6Tiqa=R?zk)C_49bU@h?=j;=^jDW$X#vlH0rGUti6ZdXvD$3;?&=)X9 zt&Mt?2p{8EOS@)!{URx{pQbfCu0b#@=^aUg^T&5KnBNCwG1P{`UA4W&Ux?VEl!rDZ z3%g~}gnwwlx4EC8ME)x;>%_0%MYyM3t5>Zw56Z+a(a)U~Gs7&X(qdQ)JfJ2hE^K?H z4vuOiw^}zrX;j7Dr>UaegI7(9_kHF1;W0rhJ3YIUz!%#*>PQ>N+&7rhT9ROH^=iI=O({$Sy9= zdgTy%0!JXmws4({NQT?VO+Hi!0w{Dj-)tW7=ZMes=SUNTiC;7;Ra=?emX(0LWfp&x zvoLF|+e_NHvI+7Y_|2X)uf_T|5#-#hG|in*5u{Eun*)=5Y_eX#B^zwXbOGYvFH+xF z@-Apn{O8ilrDF{`8S!yj2-PjIga&5A_3M_&kbbc0V3La!YUFEU&6ZKR24`!r(-E2t zvDK}tS9b26abr}p=$_E=ph7g^YpK(_-wq!p;E3&$b2S559GFwFCrmcY_utO?rE02~ zDbWA|7L!>-F6KY1jCE{UU6`@6=m@f@!K+Q~te&~MOT%-`y~v!+b5G>d_W@%l3BS~2 zdn#K&TZ-YHxzDE<#pDtV-2Zwq4E8+^M=3+0H;a-m;#k16BYB5H9<$@vZN{><_-8~Z z&!CW~bKrp%dZxg~!D;^zJ>@%-red0cEnfex&E)GREn5I_VgS!PL{bDReYHUE9lN%= zdm=eI)&3VEFuLYiIq>nq6e@xTB8%U#&PTwQIDNoETfhctZ8DdeB_8%gP(DBs?;G)1 zfaTDW%yNJbf{U22@bQ(c)nYE7||6pZ<~LJazCQ}B}?8A|EL!@i&qH;r>h$7MY3 z82#YRS{563Dcv`e{|UY|5bERQyCT@zS*R0IH<&-ab^h1_S>SzykBvCVy~?xPZBv|u zOBE#T5w}v9Ne32L@%1!X@bq-{_2=wzp&s7(;2Xi6c+W0jIdGAQ?w@4yI5D2k9if`M zC?owBBGB8rtk}N5HvQ(g$luQGhLh{A!!FC}H$)Xb);#17yzAkogWAGd;%`X*BWP1| zg0u|+Pul}E%}rjAfpnFyhG7ydE&ixSbB}6McQSKqOh)mM*^NJ%IH zxHTzW;nhdc62`2h$*}?5X4hDBvfr~6bl?zJRM4o1sRfp_B60ben_EOG(G2rADJW(P zgyrzrb|ueXcCH_hOIFFd7hH;Q5_F@TxfFk)dlJ>k$);EQ+1BLcK0jBnRK}~Y=D=J9 zz5)9b(!_8&7S0^=tmKJkOk^w3liezhSIAh;VO_=)pm|01i^HaFbVjV@OS+wWw1wF% zGO{5oIrfe*84nxtqc&{#7r0rEEvw$R1;Qrvqt2MfTJA8(rqoXhbDAACNsDqww7hGx zAdE}Y=LUNIb+Eq)l%3k9Yj6JCoA_)ym2)q=)0IWtPow zVTpLIz=~)lx7silD(!8+M$IByS;3d7WpD!(dqao3j?>h(Znmnswg2I$CRlxUHK1nG z{>o&xZh>Q(rasm=EbhbUG&R=x61CZIm?mEAycr*~{`>O%c6Z~e)T&oMwAFCLy&f>4 z>!xf8PILy#Dj3%J8oq&=@y}S^18M~l?Q-*%BBh;WBwELuYX{BVM6xJ zQ1UiTamIAg&yCeAW^-W0yRo#fEgaFB#w2!%0X<^_wmZ^_o7SMAv9_r_sRhp|26(s; z_JL#|cQy{SHApF^A2rP1o|Fz}b7S zIURV$^%w@7%8<5&@DerhP3H1qRRJ}RJt-VmJlvJcxNL!g>I!5tgK&@gWzb@mW_g`U zm@o;xB0QM`mf$*6sVcz!8%B)@17j>5`XL%~9%IB?2Vqxgjh3xVRERf&3 zQ0ie3x(9aSgZ>L=^)sw z4Y9JCNaB$Y|1rGhNu?_tYUI`Wxyvon(DG@ush?xUieyBHwnoO(b;H8*)>9yblQ~^e zyQtrlwR0IdaS>@kfb5r)BdnFGEC>?0gd!S_9nQY5wXnTjL(S*bsX>X_brtKpli}(T z=-}qj7M*9Bv$c6Kdp!0yL{0l=YAv`CvWnwbo+5sgf$`okFwa5)Q}gWCcol!v8@s)9zgp#h;sXP8US^WBpHUb-Lvl%>esOaaOIll@FCx>Hne|;{qFmK zieh)22LCIP&->GD-lECx;Rg(CGjY3d=%>`I-6Q%PP6Fg#$4n$wA_+g^3-(U`bKYTg zk9fRmb)o_0HZyzZdt%|4_*I}=pr@;sD({a^S%91CYTuuUri1DWX^wW|9&Uj--KLGNMwik-XLBjoT$bbo$Vrm^fEB9UK7M|_ zo||pfeU63qPHUN_^mADhc#lBd=;2(=p>AUt`+Tp+3{hHSR737)VZNSV)`d!!T*3=# z4y2olx-2&9N2@1L^b(=qFw$T{EZYn;%lgt9C4x7RiIR}U&@`eA1UY4{PzrcI*bmeV zcjMW+RLVrQV|7`rVHJeTlTZaR;x#LaDCQ- zukw8t>44A$=L4X^hhuk1Sn32ADXM*BA^C2UGIfbM1n*W%_+R;$#8F&k_fs@;^IE%0 zmgHUL@Qo)}(th~K11l;e(%NgK@g7p@qAoD(G$1tj1&q{-1*qyHP}bc{ff5J}G)|>x zd!pnmHtM>*$z?=|Pr3q5N=}2R6bar_quv{23JGwJhUd1B0pP0{5pFtbgSgO1*9p~P zQXX$_I?dvB;VN~BG;EWz%j0@{K;PV=zH^0fQ_VJ1&NoH;AR6G10TC7T#5o{{X3xc` z#)dq;3bSk`UDot5yi^H@nZc6ht@M#5m5i3fUVSa}W`^hzf6yF$T2}eO>ac5qwH&`? zxocuLBMpPCAXz_4$WiZ|>}pr+3ETmXK&rvh_}V7`FD580Vj$zi0fg!;co8JITnst$ zguOc8;^@bb(hkFRyy=V>KWLUdN+qP{K~)Ha@tp@r*o3d50g>hiOtBXD)w+=T8!+|L zF`!T?NkE2LazwwbFs5Zfikq>aL|-plg|lp5E=cLt%}BN=QJPp&ucgN^a9Wb%U2z6y znk1%MuGRMZf0HN2WSCFHXQ>zg#UFEuQa3!BB2f3X`@kwEnYS+H3K_XtsYWxabsO7) zXKvj`_CdpQjmi@`cGk3_Kpz%k?d2L`4BgVmO@RJg(55*H$>mXWFJCfxoz{yvWCICA z*AvpLJB8D>0_ zZS)~~FDc=;9p5b6;8{=r=&vL|S>#cmTC>Sy7!}$#Fbvv!NW;xal@Hx04CFeqpc7*D z&~yWz?1+;SB<*R&z{qQBTsHZs|kLkZyAOtfi6|go=j*@mYSC8VqE&tQ2UWx|B?C1 z9V(B|c3rq97HEN=oH*GCR#v7`iWLE6IrlOxK95>?$)L~L^NSUxEwGJak?JXiM8PAT zKq<9<0s1K!%^)uB$#=lOH#)4%mN`TLN0gOt!PizA7rxNDf+$F}0Eg)asvdGm-)3v5 z0Y@f`DWjlsOCY2nnjbVZw{Eb9iE- z#ngE2N8tGys^gdp3YQLMXfjAZKiHvhN%MU)J za_%hp>3ri1dw0qdoMWRJjkch5J422(AsB_48_&xs)YCYySvp!h zF{(E0HT${xD4RN_+OmX2V(=;G2xTsiVHHcPq1POWgeGNSkvgXlUjlN(UmAUue9jWZ zCuf}nH06*xa`HF8)Vm_d+Zn=3JS1f!!9;hzq$UMc1_EPQBlLvvEl4GH4+V^6mljD!+mrnjLsZp zo28}b1Y8v7bbE#tmkzN#QWI?UjsM??4#{YGV`Kv}+3ie@R*POqWu~pO?IWz6Vb!n^ zxvFBs%~-|J`WV4|idpnIOPFS}A<8A{<2C5!b85%{Uh`Fs$lLn}-Dztk^9`1e14U?& z0;i3zK`)Tak>!NPIE$w^M)LY3Chj}hYU_%1^(3W=Xt}Z=7!B`HeiUyInK&kQa<7(M zLuu2*6v=nx5Z!PSRxMp`vxeSNrm>5>;1n|BNF1PjK|obo7i8@Xc5BXb{2yWV!SzY~ zHN${YU&pQEYNrv6r%v{Q!gi(}`fMzTffB^ls!$Vv+FaNGuK7=!+IwgOJG$~iO_b^} zu};Z$`h=U8X0%sEOZ@}RD&x$rO3IJQU-@k3P_qb|&!Exc*;=Al&~k1Z1<_)28K84h z3)49uXwiz1_p=al79lHMX{8F`_nf5fbpICsYe1C0X_GjcJfBV8Rb~1;L9IrKgx++XWHCBE{PeMmqP05`4o-K^k1k)vwy3_6&MJkTIQU!u{21=v`hh)X zmiA{X3lXUB$Jc&b_*3mD2;+(5{qAX4jbn>og)>b1hN&thTSRH6+OBhQrs;OzL`Z-l z6T*;dI2Rdf_;2@mpw3?w&k3f!BcJzWwV9MzvXI+3Nw-e&qpZa+QLCvb<_y!VVXUNE zr6^lSM}cAQDvn8C&S2PEN+EQP)baT62z-LQ(?mArO-a_0ve-5y4edKa^UQl3*w z;+eCEG);14?dZ`JTSt?v;?P2Al}kUbq9?9Ia-GGV*c5(?XQ5Q~E zLK$j0kFyaWd$pY2Gn`$lI=sh8sGdxRbn;C+!%XKbOUj<&Fn5@RX0#yk43$Ua{r|~8I_gQG zDwD?KOtzVs zkpvk{U;|sy+%ka!&6?dg)~&IS`C~UtA!6hJa{hcMMJc^($Xpv}ns-f_$I6_zDOOdN zAZlK5GFC50#_ALK^mzh3BQ=|Sq&EB|Fe1#2=X~WOb96S?J3A7#ewK&h`Xh6GymNYf zSY6Ra#=a!{qN)bz3v1=UvZ(f%d!-69$p{s{_*?&*&8VC$r>$_ za-(YlcD6Rlet&SZJJ@*{{F}a-O!zmWnJ*k}8-3VqB4;2)y`DU>B=q;8F5xJhUgge*|@@)2`th6O#Eh4eHf z7Y{RMq;8Eg^z(4!`QiLd6~D6fZ8neUJ%Z+y*4s))cIyZjtL;0q*?xHX3cB^d>?iuj zG6MXGlKC>sD40L7>R^5yW_M%j%4g-`Z0}8NHA)Q9g#*1A}_sVFhI_||dqh`P9z#c7ZTFHs|0@J|r{GQCx2 zpl%IhVRgjI0@!b3oaZk5w6#2ugw$Xr@tg0u$wFTnvCf#?8q;PIY9|JbWhTq_@-!HQ z_*;d-*9`3J)vdk$>eDlMJx>s5j=f7PHVVFhzOVqOXYd6q#NZ%fHiT=7#o4P{dkK~} zhF}-QaD`uv7?Awqz2Y65?P$)i>-PlgwC@ z{%yhxz!Uj5_atfS#D|`S$9E6%0nDU#UvW<%+cB!(T&7c(d1q^Vm$Mea=d{jZ-CkRi zHUHU|F{avQ?p52#2HPx{l&r+r_Abgyavj;kEt|F_W0itf7j>fg;9^6!v0(~-lVfsO z-UgppVjBiv6kvU_@GFY60Jam(>y>_bdVH?V86Hdo`hBMAI?vkLqVEGn&=Mi0CEisK zr0QupjV?IGJOS=?KGv;|q2iEuKNLP?A%%sM@Ka>zm=w&CT=fH_<@ifE3{kb)(*9!x zO23v8K*+&$A*yO)~sy3@Ibr?YgxlgT6$q7&uw93lop zjZq;@RKXSZ5402Rox14JZS=S`iX6?JKg^S;B$!BV6$#5<7_JO|lZ0PFimc?8bKDuN zTcd&4gLUK(K~-SKoBGV=na%0cV;Cw;a5DiFAx0r2OAYNz)~(6JDj$VJqUi6NogJ7a zA~r_4b#{Y_HmMg*78Zt(&B-m0l`~qmMiay^FVi&15REgXi*=}FL|iJyS#vr{SH~C? zeug5z75ow%FE`AtDknA`_*G@X%^tcHzq<2cuO>a8Xbx7&0-G3Dw4r_@;`S_ONqwws zUfG;JXX}on%W`@wfWRs3hGiHDCDEM?-JT6}lKv5l3Uewfd-AN3Wyq~$2ZKW6n2qcU zn%nnA6W*N;9iI+TdhS~iHe-odQl{cmGASTOdPVbvN0IYivqs5zTDP9Ymf7Zsy%O_U}M^aXLNnXQ@R*xP8`mX95iIhEb&wCb{Q$`h!R zZymi@7h{j!@9&@Qy$solzS?EN5&}|`u|<@$+cTyCG;3;Y{|yB9I`pAFnQT?w=S7}Y_|hekdbRd&NnxK#+UtOj^c0?E5r*ljE{DEr-f zaNGM89VbdZ-PMD-*e6mcW~_&$SYvwM@NF zgEo&GYLLk%dne7LzNfeM&MZ1wBw55(9n1K_6X)Arl`jH@C07Q;M8^NSm+xyEXTvIA zlnAPjyb3yu49Qc*W4J4p!S*j6fIS~G?=F$t&cjDjSQKU=~F~_ za_y7*k}~r%>Mv3BLZ8-qMBl#JjQH;5b1F=QbVN~OPTxc64a+k?Y9AA3n9o_iD*PoC zHhneO$k!2HDi`wQNd!4>yD|@U48ei`-t!=uC?&-?Shwl1oXhX0H)#R-=KZq-B5)Sz z)*|N-3YtD^ioJjT;Rlq0!mG8li3@4%V>OmSF%)_vdVS%1ZNJ@Fqf8Kh)_(%0T4Feu2{Ny8`( z)(*#ZwxO?)62TiA1O>I0*f`M@T?)X7qcLivX5JF%DXupRTtkATx8zd5_EW%|jwY&z z%Xo=RGUx-uM@2AC~}tS)>3H_=1H8CkS1d!QuL@2dtD>xYlI9^hLgxdG-xU#-I{4ejWH&6c692u}+1tN-vz&4^@+Ws*Tu*DZZwwEa5gfB4R_DksExcBz1*ebG}RkqryyorY1{j# z6P*oDb(QwBSK69a25C8jqXL2LR>%8m?*X`j~#>{qj zr`s3X-eBKT!aBwEFz~KoDF$pC?NlprXRB^)by`l#yeRV~uDCKU>5Wv+p_Rai%ehr_ zX;awc>9d>GQ#?Q!(~@KDd+F^Pv0!ncK+XEUJTc|mAE=MF({-?kST_Pmql z?7rDMJJ|2tjXrWT+muj!HJao(zf^gSEK>SjPDGfQu=WjR4k{_hPb0Pu37&=xRX0Cpdz4j)rntb4?ilN~k}x9Ow={n# z&L=|O8V05W#Bzo@sVIyySGVRusv*b{Mwse3ql81d?!YHVigu6EiFmmPi^%y{$K7!l z3{@3|mKmA6Iln-cu~ZTVTarE^mj(S_;4!rse&~FyTVJ~l$>xQ9BCBlC>&%*H%gd>` z92(Fj67?A9La>`EROtF-ss0s&orP1SVI*mZFb`7;kZ8WJ#nGj@?WelJq7LIy!nP$; zS29XEm?w3M1pCn}3?{NDo2{HKtalsM8xdXCZ`#~R3zVhziP>EC)PsrrP*Pr5Wr$2= zrel(j)M(68sHj_!3s>(jHDC_M;+k4uCDAGjGe47aH?cCQdu2hev0ZOCnH> z^W)kmuRZ~&=1oq*D1UqJW!<3hFDFiOhRq88NAd)P3-NDVH=_qK!GHJog+7h7f~4QA zlL#hA5~C<7doza#ne5r++)$vX_}>s9-noY}ffoXVK7X&lIy>_831 z4(ue&x4(hp4@uk*wMO*3ehXrE3U>@UnZ^iB5#vp6j65wWA0YaO?xI>{u+zTW=ZKddw%>(1Lajnm-=$Z*=$D2 z>6K@K2+IO<9#45_UE90|7~*@~aIhs9J#yZeM2xu~-{^isSVca=|KHQ)L%N0_LU>7B z*zY#%TSIw&4Kg*<#1B!`MBj|ma1$p3&g9+P5S@eSbuJyOVCl7XLK*tEqGRaU*IgS>n z0E&`P6dV=SYZ*r&f`&r3{Nxw`oePZ1v>ZnjV{+r*n#o4wLzRxV?Og(Q&&dvFz&9j@ z%0PFau-j0G$eK|qoCORL({k{UK9N>)4sTi5cv~KPJw490ylDs;H+Km~$5C|M92f8TQ`nob3!&b!D4ZHf6YNW$U?lD^{ZSVThpl_Ac)HiAEl)iNBR!iW`7s zi}Kr7d%H4!yEw^zJC`%E@mg8EkQ4EuK;Fn#se1~mua-Y<+5qf(KcgpUO8>?=yYew< zI)n9{J1^F_9L+20JNBiG8i}oaW;Hivz9dEIJc~N3i$z#X0t8zC@6j7pY)wWjE#iBx z)7<)#`bcWZzcl#TSJPyr>@bjG#1tGN4TrwRmdLOOutpVW40gP;m+rz|Wy_j*`V{H^OlVyBz#bnBcK6O#J)6x(d4rx!vak$U zN1Jo`)q{Dzg!bC1K7 z(KMqGV$&g+7($H~HrJ{Np}yVHi!x7Mj$miy0Dbg<=Q=qU`$d^yFX6h5lT^^ai4Ua} zWq;83yUtUE014weZ+4D$c3*~yOJ9ST8Ev1)z(Q3_7*+ozXUiy|RpxZ|>K3o9xz3I0 zFMbMPK!zol`Z>z}Q>G*NDe}v)zV?L`c+SPz=SKcS4!iALl*+oGG6^%pkl1sA#rPBL z$ED+`@V|<#&SeRTXp!p=mPrG9Ic01h6uJ!*8=0&Gysvs>&NI99Oc7$01_`VT6?S=8 zPsvJ2I)imnAC25-E z?)dGPav}~Cd=_X&X75CM2S>8wt`+l@wLE}vHxxJ5NhEYU7ZtmWisl&eht!dXtSSFk z?5HzCSaCGNvBbs9=JjeJw6j{bR)ZxjBQ-;FZq4mlIrTT_{s|SoZrv2%JD3LJ=*AhW zTZ5Gh%~aS94y9pG)nD=x;ZFW4APpmyK6_Df6E~5DiCoUu@sUO(j1u8{31I^+$6Xes zD=xJe>)OX=r1I%hdQ1$s-3DZ9mONnQYwV4Jn10z!gX`rYe76yPBE0uJ`HNw4c~jYu zwnPuBML|X(ReGB4MD94WYY9pAdrd3sQ|AA}kGH(<{jn$=Y?*bTNLJ?F&#pt(53=iz zem24$rzLx>u}L+Sck5zIC<|`@$qJ=f0`s_#*lkEm1Ak;Xl15T)=oD(a1~-?n#lV>qW88~xNDuHOaYdVlTr{^k&*%u)b&a5+KHI+^7S8&aIz zxTLgHskWV?b?a!$N{n2j91#j7NRDQHOh-_9?w0l~lEst*c-j2UX5JSLre0j^U7WjF zoIAqiv-YFO-&JT-o<_y!8pxdC6(}rMO^~@b(u+7EGIVH*loCi1^5InSEV^WxdVNlj z&JHY-#~G|!gPF}R+uq+M6Ea@pW6@ns3`NH$EoRMtlr~szOujslKMWoE-7)%Y3mBQ4 z#k~@AVp+7OzLk}6EUB>VI8Eh3OhUGvR(m-ZT)dQJ+I=0v`osy=IJ`jMkZMLYP=RmJ zdLXfyX8zn2on5`#utzI92ae`!#Z#f6+)>gwTM1~ba71r>W z|C94;Mjwg*$cB46M6Atu-TI*u8Lm&?wTEefqQI)y3rAC>v4$_LoECf-gKS>e6hh}C zZ}R=|;qLiiC5N;rHwi9Y)1!%#pP7i7)YK;zC*#ata7gm5^dv;-I!0HSMD-H`udno{ zv*k}8mOuTXKP}S1{s|cUEXjTt^UD6&;hV!t`Htj5Fb)fOd4Ko)#o*}pNOV@xli+hf z>g$a@zkPM^W`FN+hu<=~dHZU2e}8{4I8X^q-Zhzk_PjUmMO%|M75dLi|2dR@ir8j) zGEPQ6v#OTggN$12&x5zGehx=4Tmx^=H< znVdL3@!!6h6-9dT?YH@ep+6Q^B;bWyBdwdG;l7<@({Jr}HjlpD-Pt+(R+{Ym^5mR` z#WXn8w*1>y1Nrse@)6hl{{QZ8t=-CnU-%v(5dXprq~;sLLi}{X|Ln)&r~mff7GM7y zVj}Zb^Ho@DVNqi(`Ih9j$|ZTDd};FM#=l1bkX|wtE4M2@d)Z0AVm7SKlXoP4g@2O6 zS1Cp_`EkNqf8ha=zpHjZ|K8ibN`6b8n#bYuB%8~>nM@`gk0zgvXHuUrUmn@D&nv&8 z`q$GeFa8=JOe8<>;rI-Ess4$7{UNuXrh1FLP4fZtlks`<^V&yK>{dm*M?`~C0Q9)_xYgSRLFFmywcBSt|m%e)X)hgU)DSc~? zY@bWtox{CL0Hx*ud*{X4xzoJTMF{*eX$A3J&%U*B{%8*)$RzGX=iZ0yR&;K2SvMS-y`qmUs4XYe$=;n zd50-(r+bxLQ{VQmYz^x<4SmCztJ~h986}lTL|RnPXD(jIRpO)vE(3YGt7Be{W^hzpp44rgR6Bt6{8d{2 zLMRqch$W(r**(ur2g9lR!us+JjvKX#$}E`bYaN2~Fq=kMs6+lNDf%AiFQ^Og6l;l! zsu&GND?%oslnK6eBEy-i{R7yK5?I8(r{pL`3u9;%rjI zyPAK4hN}492obOxik%{Av3G_X7^FMqYMj}+HQQAXq`DbFf}ymZjNXR)>EkGYFDV)+ z@+X!TS9768iPTxHTgxqlV8fzXM8wFoPNrcnCfRs>k(3c5*MV*?at7yv~G>26M|7fCQoY5iG`Bo+>fO`8~P~e;aen-HtDyO z!Fp+%4NmwSw$m4Wsx&K4CBo;-nupUFKN_^)u1L6+I0;XzizD5}5kss~V4htoRVKw| zK>`b7j$>&&>phd~Xn+c-1k|18Oqt4h_F@6Gn0 zvY2PDOZh5E8@{++>DZaElkP^Eq_n41Y(op48M=`}oYNB(R)+n=H4Bq+b3H}^Zc?mO zpK^BW#Ev#lZokk-`N*`nc_3~Ik+F6h^!o_^Bv{s*GER0$R*aWWUO+#@w&z9iY$*iv zLZ8ZwF_>WguGXqMQ*~S92u>1ttZFHexz!VqiYCp% zYnlQ`jY!>N(5+Eez+8&+S(rMjb!#<+xR~8jtxgb0&;r!3f`q-+6r_Jv`sHQhPW?W+ zDuDQh*gM_6*!Fe@yGF#=9%$Yliz z(LC}Ow}TQN0H0z=_Ax8dr@^*|I@fg=iw^n=4I>*QkeznWovB6` zMU?GZ{Dd@bLDYw>v_;OFT?Jo|q;whXGf*{w+f$<#TIq*EL1M~X>PlH5iNKd#G=S2m z0K8ufySCqPk@$xq_Lk(dqO>RUTCF2*cL*>?D?aJYv5pzGw_3?w;eXcl$y((7^lW!$ z|E_*ePannyCZ4^Xw^iqbjk#@TCcG0QsnkiBm1XJ?PlNe2QSq$DdHy?Oxj&=sfV3P&i zksH1|-#y+xuCC}~V_&L0HmwRYK1Rk!Zq7ot)xDS=UF|dX=EI8VBnYcAQNu=elF{Aw zM>}U1z2mn&P(D3$C;c|WdzCWP?9&%mB1{xiSKR}4XrS`X5aJEVs=$G=s4|P!(|c|TQJ9}?f6L109s zM5Ja|?hrLKpf_SuhqSw?%4GpwFo7_SSkd}H6z5^j;9+zd)s=oOiy(@VKZuZ?$Jh|sKhni=M(fsSggh9l0LnEEO)%bK@+S?XRz_)0QP+}FwRAEXm8o_RzEGSwJGFnb%@YJ1?6Fo26qYeM=h2POpwNj4ZwH^8 zQ+1m--XgzMQV)GsvwtJOu?2D^9aHEgD0pJV(0@55dyso)ko=wo!Uux-ml4LK@q6SXj=;K%g`>3v7FIst8_#01|{g_xYk2=(reFpm(N80 zQH|vn1@oSaqoI?lU`I|M47@T|DlbPIC3PNsVXDyiSo=N}p;rUU`*AL97y4zn%nnHi z%n>94o{CFJ6&W=A%vw$wn-4vi0tGvJwQsMb=&gx^4Rfq4ns?3{)D0U!nlILAK#g+R z(tz}Dc&?)PiHI)`QayT_m%KYgX$b4mgvq^WiQ-otK%LZ-BnufglDL{CN#>l8Zb!Fi zzv;i^@TdY25Fr<7Vp(XzUrW-@Kc!Y{I4L-l!#VB?Lyhvc_qLk+>GjI^x@Bz@?+|xE zrYj1=q?y zTs(t=q46T^GBe051Ii-GBgurkBFaf36nn*);^(6mNacst2L z1;(M}og$PXI-5cRY2=104LdkG80=iGGHmmT;ve>7*iX1*-T+Z!WN}I|; zPh=DMO6|woq{qlq?WfFlo2Ta#);|P>k<6@q`H|Uwb8x!5zv_`8L>#_ZUeQP9{pH@p zxtYkRzNt3t`WWg)&3M%bWH3Q{8?9UPF&|cWCS_Kw*DGdWhDZxFePc6)X!D$HpKlxW zLNzl9)Hq2+(nV9<377y@UQ4vx8SGwM9KDPws=nINa?8!6abDa=k7(jCAg&#@`?psR!x8!68nNX`Y%_Jij#9!|okulEk0W5W51;<5s0{z#NBalmF-?4VgMs#D=r?}2i?OQ5hBrHGC z!d_0SE$`Z=)53uT*2-uEleM+;O{Sz>IP8`sAg(nDv)frQ$u;0>|FaZbbGn>zaKYdn zWdTqd&9k+GN6y9CcddJJEJ;|LxKWIa?N0%xvn z&83ZouM3{J+}l5|5l>9Xb?3#}G|mcYfqiq0jnb-M>C;n2HiLB_>8?m6WLLh#`5>mn z6`=9SA)Q|_K%i7i7x{q?E*TT-d?H7Mo3zcG(r>ouFDdczI1s~Si9e>zGR(p;+hZRb zUl&5AONiS~h^4ml|H*tQr!_PH@i+?>$f*r$fGoHWTDqLr`CVRL4Y+a!dmf1UU}tM* zXUChXnGV(H#S*PD?7SPMtXghSo4bGs=s|Dm|7HAPQ5yE zjqcn!v-yc?B_TcQBjbI5o{j>*pW>$QVhBUHphibQBuL*VO5PhWS&zCS+NVZ@+scldx})>Cr zeHC&mMp|wud+5Q`yurCxoUa~jeli6PD|smPnI;ip4Ib-!S9x1A`MFcjZ?IpjOyk`7 z+#xYf%ighYc;N_z=+udnQlLk`-7w;!N4HHOSHFcfImDlxdovb#GK*Jj zz4*aYDjaEZS7i2}8_707A((SUN#%kcai-y9DW_HDBithdW{HV9lIJ2~w-HgHwm*LV z4+(?UVJ0)?Oa%nqxRiaKsYpB;9_++tx96mcV9MUXZEMlQ6`9Y|i!>>sYAngJNL4Q` zGkAHV9pYWc{IGchFJn;8df?1odz#fS(LS|+9*Mrm^Jnj*+2QKx?Y+aHCbYB&isFFt z5Mm`6KlT$(I+ar~133FM*L?XwbK?vtbPg%T0?3t^4w)TkIt%qYgda2xuOU#? z?JEU=Gh^St{&$j>K)Q*>4xKCR`{2fQ&-xnvPZ5tHXdntB3s^+K%~Ysh`ijuWVg7wW zHZAm(mme-nG1^ySO)@n0lt6!*erxo*^+TDvU2}9_s*@E~V zA{UE8(e@M~EQ+L(VM)R@VN#tuS&JZ3l>YJie@+rOM(fqmoZZ@QdrC%i9ge6+ff2-5 z^wGBe`2D|x&?m?AN4nQ49Ag5ci;mp_31f@_lbLPmg+ICyYq4k%NcA7dkn}e<8&E}e zfRtEF3+5WU*et6CiS+wSdriFio(MQj@H0mHW}=W4Z_&pHSUKh^YX=M=PDDu(1}z*+ z=V;wJ8j+B>4z@zjt^ktL&=@7f{~|PgW0OTsI=;x$MLx0~;*t_Do!z>%8*3r11U$6| zT8TrwSRi#J2gD|bD}lM{#oF{=^X;zm^kb1~2x@E|K6rzG5+p!}_ zvkZyJ1&?lnhj7RQ3=lG{E(9{W4iyxkV3U9 z-X&GtPd>B2N%el-s06U~FFSnVEAs zw<7{*L{EYYF_+;Nx`6naGgr6f66&JR6@%bAZ3{`_C#*&5T;gscjEHZURUW*M>opxi)ADmFqQf+NZwD)AYQ14KroAoBbX>u3B?g-HTX z!X;oQt@E;Oz3h9&Z$okl$mw|3G)efGECW@EWI@7_nSorqPKi3sTHRV}7>rn~ph!O5 zGUx$d!WCK!2&o5|g8J+QX8NFDv0Kx_{(Sj%r>3iwZ_O)8maA#dJ%`HS6Ujfym+^D< zP9Ex1rUTQeRuy2cDf#KdKz}=zPX4tYy?wQ}E4rVHld^i@#fX7Q>kKCX1iti<|84T5 zRz4on-!?f;UKwe69oav>|&yfd_cd`kOMfY*BF5z%iYd@t&3C?aLWNm96h#nlp77HeqE4js5 zi*ORGUGm{f)xN2ON3~pQ7iRo;ZJT3&QxPk<7_};6_Uur1xoFsNhioj=9kE4*Lti)}z7S4zeYVMSKnIFo!V6GBEs=(n+;cm-* zI4U!p}>XzQN*g#rJ20f!(=@Qy1_wYV+s?A=hHBY@^8$B0^x+AP>4?@ zUPQH`l3OU>Gam3sb7FjLEj7#;t^MSwnw_fm@kIWU8O7^RR@^W5&&m?DYAVOY#ct!G zz|z$jr6UBoHCRrzaWD#1-fl4q#J`k_B-SSYu`eGOJx z!*}~6Z2HcWm!5Qw0CAug-R6!q?H9&Fm7h2R_73b;#}WbrLjUw>bGuFni;0K=)|6aD z&ON(`@`al4kw8MzM>ndK7yaO%uMYIeIoBwrF}J4 z%0l%~xSW?TofwaHE+Xt(h&L?^5Sh+ym`9^~hC%@&X7SY7t=oKALwt~mOn#Mt4e4mo zhY4k=sX_==DO4*VlC!S{-0!Qe2?NIjM`@pNXmeoGceyexPt;ohgy>K^*Xq`_;3^6| z`)1p-Tmrj1Z*WK~lz}r2vdWCHGgi083O>WRkEghhfIcY;D5Bsm!B}1>lButFfp3Ox zQKtIBZ1hV44f+}c#VVG}p#~Ch6+f2asmVyJWl&OAZ?I`rRwvdxD{+GA#Tsd>`F2;b zJh2erN161HWJ*?7Q8L$&5W_&?xHg#o*Ta$MYXrINv`9il_De^4$(s=J*es-|nPRW- z8VZ?Ll*|;Y9Rk_l;8F{d{l*$GmEgr<7y+cT6DrUmRw4&R4@2=|Di@@n?SR2o!}9B^ zr-`9d^>YS@uYit%`b0@)urOqf`iu-4EUov|kp22QEE3tAyq|@Q|$@YRq!Ll+n z>CJ@0U`OT&_>6Hmw@j%v2~$rzJwjw|y+ww6}8Dg*xciDQ1 zNi^KMmK;b8b@YDc`2FR}7-#6KRSdE>4A|atEf|F8NXap}oK~jZodo7x%1Q~>W;xDe z?b8@yG|JfxLlz_T#6rTJB&I6aD~9r>CGik}a|5e859=23Ym5b{B!d-e%TY+l!(kYq z$Gq+RDmg2TM?Yk|HZ657*1n4gHmh?eI2gOQS($~}sJK=ZM35$RASKUB1V}YlW(k*) zwfcI_YVBLCihJ8ky>fIzZGc9F5$$cR1aP*}6ndpWtFD?{3> zf*)IkToTf4LTd(wqF@S7gfZQ4Ud|OhlC-Ld6D~${8zY2sFxaJ$9TiOOPG|q0y|Zg> z+f3T@UqSgOsd8j}P?D`JdrP00)@5%nO z{F1%8p9d5`QM8p236Op&Gqyz162V6I(|z~dcYAw1E;M!5MkT#nh}lm*=)TzB}_O-D)O9eK8=?xAd ziy?t3d>A@OM=$RUn%G4NWPi4EzN2F$RswP8Gh%wzQbJu$3j`wrweP;2yv*7(BZVhV%k}wp} zHl=chrP4I-HJ9~mqt9C+B9F@2Fu`yNEq^A z2(Y*CLvfs(ro?FeRmhH>%V>iT?S7#l)?~0Qyh{$R_Ahr2XRcG@kDt9d*xT(@&lvu= z@iXDIYz`O4Tt?@(IA>-Ry5U25Rc>;+bFuT>izd@FLzH6+BS9n!>2eeebO}eFN!Jo?zhBbE zV4%FI$m}fE1UlA`1(Nw;nt9zN1D(ny4)lED#`98ZF9k!KpRL}{Q~-u5n(9mGZlvlH zhA0K6LMjW=hZ!WdMVc%KTLxb_i>=;b{=LZO&0J3lXr<^3qTEN!2ci{ff@dx`w%oap z3RoI|c3`GT5T9GJsg7&R4mjsw?E=JEsG4(%XlPKZXmHDQm^V21xmvPIgsQ*ItFYN9 zVe6DjZFOEwrsyKNP|pxZelbeIwT%y^qUu#7@Ih|aB%grzXaMCZyG3n;Q( z|AO%lCcmb)dUiqmo%+eG(P$LyUOTxcXg1i+^6?JmTB|Sp?=~&jO=iMj+14{^VNKHP z_1f0(+=HEJdOdM#cw>B{OBK@UTm=T0R5{B-)Ya^_hY; z;{{kv*y<)DW{lm6VhM`nPo{|Indi4P^lXfm{b01cK^EnJE^ZK0ij5U#OPVp2NxPhv zwd-YYPK8xU(V0hukV|tB?-fkg49^KPEDT~a2JQ>5)b2>p@o>r3>XR*aYfL$RG$l)3 zL?W*rm=qa70a2No_|brgXhNrb7~?rFYuC%z>Z37HVjgV!v@EPUSzalf=*zoE54V_lsJg}A^`Y3n3<7!fcY(kj!8?RrMvC64H-V*^QqLcStb|`1f=G(%%Kg?C-zY4hD5s4Rw=d@xbI_(3PfP%CZIJ zth_6KH^f!ch8Z>6NX?2JfUdq zvg*hgZ1o1yapQ^~sKc$GuwG6>wOa5!^s@;i&_p>5(=^Y~u5?yw7j|GURVdVgz?vWk zvvZtM2Z?aVIE<&BSWW5g!|=vgt6gjP0s51s&7Ec+1!jCiu~3s0!{FTgNemq5MgNk!Gv~^({|I zF$j31B{n)zoH-9`*~5hPV?y2+fGE4C2m8HORWV!_{BJ(9DP{6PETDNQ7C(O&AZWh4 zjVpg5z(hWb4G&_`g4PUQR$<&Nm8Dkjk8-Ao+gaJ#dz+0qyp!-ypYK_}^$fXqb75N@) zc|UgX!lcZFHI+b)vI^FQuq_O#ynsh)62U$%OXv~IFY}vA0*~&p@T^1A(2q<4g>Yl9 zq$z*7QI}_sv2ZetQ`Hq?o|phRPN)2xV_USu$V0NFBA}b)fx)tKc#{nJCi90yZW6;L zmNw^an`NJ^G0#tTP^V<_(pF7aKqkuF5KU|^#DLJ@z8YA(s}?KR zpP`cv6QW-{7w;D4lbsoD+H>3te{I~1_tG`-ehIJBxM-#^3vZIMi^JaD#f+C>vVyq> zYeh%%87(^OLjvrtqv&`HCN5WOk?X2}YFuE~nh|f_Ba2go2#=IXE=2^Q zD$F|Rk!Hr5WM`)MniqZwgHm96XRdbn8n$O5Hc9zIwB2Zyj8o>EtZy|ev@i=fy*hlg zKfmB@?!o0*h<)+8vXE6npItrvG)krfGzxvzL7fUhf=r|nQTd-=*FNQk@(|FcZdO=_<0a5CYr8+;&HrZ4zc&q zCk`s>Zo@Q=Q@Af()^WZ=0>V zh4n#aplqkowLT>Kf?MSl?1mNaWI~dlp0m|ckQ>5xb9`;#O=Gc|Ch|M?V6CX!KR&qJ z-K&sr!>74RcPkuul|<-O7nSx3JBNCoDz>c>H^2wjS8N@mF~PyFG;YjxE9oN7hxD#p z&LjEhrXkT)(}*Rk(wZ04ybr!iR*K$+OjkunZ|JkSil^zB6eP|-_j$2THu6y|uu^gp zxXd)2ma)>8mCTHagPP3-PzDIt5%(8b=kLWHLh+8;eCuBm=UPr83%m&E^&#EzAi!Q%LOXJH3*%abn&^*HUvnK<{06 zqnsWbobAr@V&)#K6%Wm4w0N)&t*ayTB)pi~d+rqLLJB?&#x#E=1OOb|sJz>9f_?9N z_x$CS5MsJ&nk0>KlVpl$tngnnpD`s|GJp1%yc>*I8`!7Mu92JIv!SoT}_h6qK>-9`fUl;#XAUdaBKAwgB347P~Ps zC2K0w{Wzyn>vL+M#ziS!73C^upJpRJiGGvbpl+`T?$zhcTZ(2khbj-5x3e zz^G#QxEsa-P07-JKSb011Dg+BP;9p$Xe^|ThMDrz|A>v~3l5p3l~F$uds2MJFQyIP z%+;>B%!1w=vKagGqGXWXXuDlbu0MYN&s=D_xsa=UVUnRIR5*jRYp~h$`4@E6_s@>5 z4i?HbFMu=bi?x|k9dxF5)z!-MG+~u}nki3pRK`On<0vIbxCx6J5e8Jvaj8kCX__@Z zuQ?u_OP5!lE^|5?i%3h0oll(Zh2LkJ&@~+sA4HyMaK4jzN9?6T9ZUH=&SL_^{r5YX(nuT;uPjOL1*mVHdl zC&)2IAV?AnBUJ*WDfXub$t}$_=CU%&4>GBmWM9RX5R4Y~wB~+tt$o#eM%!1%r@h|G za~&pL2lwqs+E?`)b(KWD$GlnDH+lu>#AuBggUue>>x>k^B++lc~u=tg~ckI>|+H zpGA7OkObIR+8#UJU)e40Y_mq&5X&<1#^>O7vO!OWFTziB5GS&mP1N?a?IGkhnFIjX zQyA9SXpJ_qqq<@tWg6~W?084LsxJGPUWcAdLqJ)K=1j9j)A#|yx6-6wk&<{4jX|W_ z;Y?)dEf4$Nh|Is*V5rcCuzByLkDHhqEX+`C(plk)E<;@xMfoqBpO7gumGm7x)k1O=FinPN?bcxWr4Lk)kwR{(da zasagkhPh*w(h-C8F{VG3du39Cv0)P+8|6;dHJ+|yq;LS9%NYKx=^4I zYXC3oOE?!>FC&>w#TdSXu@q~JU`7fta<*+mXYrX~6OAdK&Ch`#vd+QUbuf|&wvCiB zbw8k193?16fvE&@^Tf3{zu_mA%bB{8;7N9CccVxPT97=WfCKWc^Z;`*FV8A;E zK;2CQjga=pjxp4K?N{iy*67Py6hE#Rj|9!fdLEGyT#)ZK`v-*4=Kt+`&?x z5t)1}EOjYqRl$8JMYED!W(NXFT#{=^>Yp>XK*KxDTu5m*q{!JEC1W2gF0O81$WdHd6UuPs#NqXZW9>N2f979~VPMIv( z(f=H>*z%YHUPI%1k`{1#q8yw3-}AJL2MLqCg$VYrGB?cg9lrHGh)kiZ@B}w@DOV@# zrk)hWq0ViMLe`Q&;CwDDpn>9zy60GOvk9Ds0m!k7knKiDs3tLB0Rtc>!1fv(O(4V% zMU<6s`ZR$xO%+Oc3Zg(WhUK}=Z0(v&<{@PR3s#z(cxS+J(m)#^MxF_ISK{M;HEgu7 zAlN6C4^=gw%?v6 zLG4N!)oa&U^lzlWCIou?(}Lz%$T*O~v_p{}gfYWVIwxg6qk~$l!E$D6H>_%UVoJI@ zD@92Vmji4h(~)Rp`@af+bUVchU7r-(sMRez+MKFT6zI%mYlArky`TI~(WI386TDq^ z2HcyGtYEJVZ=P;UTnxrOy{f{?`~dgy3uXkgRImuUt%GT zfFLQ^#A-TEISyH+YDQm`0c3)vu-Bcf+O?IPtR(pmZF)&SEa&kqdz64^ghSb<;mm=3W?lT@r?1Oap3y(iTNbj+d#W-J6tB1Ac^Bv* z$LUmiI=JBZI78koLZh{44lysR$1e|hdoN$k>hW6X-F!xSarU8_iKp+2Tbf0ddjFPR z{0=@JeWdC5*$a7HQceuXD2lJ+>UF!b=YBv4-O%>;4&*`Jo+cr3((@ zmEX;eu?iRZrzQ}(YBbX$)XE>Ch=Me%hCtU5eL!K?4Z?uspp^f$-2+95f@j3$AA|73 zq`<~?=hG->xfQON`z17)t*Jdyk#*7RsStBiri43TEIq{>WsHS<4OGELq}JHcExi_Ndeh}vHD}l?nc=u@ne}l&+&?9q*kpbjj~|nkaQ1Ke?VNU+AwH>?tAz$MR<>L;rwoe zepif3tdPb`L+UD>95r=Bjc2UL%91zg`RaV{@cgo>WHu<#tlfJ_`VNtk zp(%uHo;k>T6z500YI+hSk{6&SmKPtukDuvRXS1)~&c6CZzq*<3^-e(0z@mQ`ync3k zadmOpJ3i(!k|#pKnLNC=cl2`qqPHs=m(vqe%Y+;ld}6x#aIbf~fB4J`ZeKs!KYDd| zczmdp8?PD;sX#ByYZ=7mtrYra_WIeYL-{v-`-N12)006Oyvw|Z-`0D^?(<3b`q{fE zAg2kvp8b)*&)45e-53Q|K(L`yjsA&NlJ=3es;c~H5KM{G0A{fg{*mV*A!fhl!tM-Kc+`Atoza`g+ zbpPbjFq_D~B+h%>pu9WoOhprXxp9}?wfu_epHH*A_&!W0%tPedws7hTK2-n2zkZwB zcT>H@UZ!~i`p$Si`hM-LDfX;?&(||Ym9I}`{>#^Vz6+z;{^jw}@m)<_i)y`BhZjd@ zji_cHlCZHcgZj1i+^O>U16Z{t1{_cnVjyYKb6rk0vc{6nzf0Hhrz+&G+C_Q@X`d;x z>)8%(m?!jvSdCCHyx&L^YOP43!LGB<>c^8{{}}jUDgycpc3b$#*`?i{4t_JCu!YF% z<0*m%0!pY02?F7))2?;2f|bxFb*Vr|u+2xM2p|+;xRfa3V%q9s8d4PKPzXrGQA2gW zNpoLfw(1JFgN9FHyn3Vj0A*ivwZ&`Z5;Ygi+KpzCCyQN}oyp4pnvO~svNMPCCK);F zv}+xot#6a5NEc5+&KIp}#9B>GfJ>ddpTqUbXCQhc?L7%^ua{26IFqg3WJ(!p zFa1?t)BUXP#ge>-Wes`>U!wfE2F-{ry&y2E>uBSHw4(>#6 z8UDC|pd!LW>SLZ()Mk8xK>%It2>$LP|3<5X(I|mQ9KVS8*{a4yPUlLAUS9Y~I`OiG zz(WxE2424`u?tg{v#^VEOON#$c+l+=jQU1{o|$2*3LNs|NhJGxd7AF(cLyQE(fQ;nKia(+SFXa!W6CRA%(b=qBo9W!(u+(XZI2wk~EhHw2 zB$Oy5ikGlaWn}=uI z(>YDMPD5175j6=!eOU#2%Onb9vRa9=cR67{R8?4xDQB^EEhbZUdIZS|V>yoWeDW37 z7(fIZHxbf>a8*-iroP6w`HYjGVbF4Gmf3zFZ}~C2iSn^`r$*Co=Y==R%k$%_-fVGg z<7Q!u_4ueUDR+5%c(|)`t(!9`cWEx8YtvHnSWDTLn>up6rNOEh4qd$$ z|CRtvn^l81q^3DYH3usq-c>>*3xI49aSyY0na>I{pFxC#lQ2zuvhVc2fJr^-LT5B6o4MgnTqd8axVdz{#Z$|-l)-ZFfBbj(ckc#4r z4$jQqM=mt2Ff=LJkHJmkVIS={jr|OFcqgkoa_0`~ol?@h8#?SC#6oeix=g~zQO1eX`AF)uI&zNy;j*bZ5B2d}A0 z4p{e*#;gblM~Ipb{Y*>n=$;OMi*YNAab~x5iWR&dEAuh&&d!mm@p7VHnR&NJ1d%mB ze%cNg_a39YtB9o}ZI;ncAfTn4bRNJ`evGyz)LPcFAYz@~hJ)<|*ym_Arr~k0zkhUo zRWWQD+?&Q0F$LJ|PmoYzM+l#ASD0$X(-~OLuCOl|Oytd|7__u2tXx17YqTHU%0ufD zbsA*1l(@oA(|ZR~LrkU$k^ z5u=sV;7)tM8D@=nv}sSODUy&WseY=PYraRHDGtNtxxX+9&K;n&W^@mh>Z=)pRRf-V zXrlsN?LBuUI!nMa&eRyc@kD2vK{f#m=Dnyoq(#s9;H>xR_!XN#>{-rVS80N{eY?Z3 zi@7%UNHx`!*l`wYRzOvL5@LYZPz?#mqCyp=y%Ri?T&WX;ZH^3 zEC6?R7#u}w6D91375VNTj9RBEb>fy#KVq545U+eoiz&?-2CWtG8ZY7R6d%(BMJ54oKRFGfi7Z1zug|$!y9b^aLp%#`k41Y3ilL35x+54(+>m?) zG*&nd`kjB{4A!o}D()zibCR3Ik9HP73=}17@kJ>{Mv6~7PQUjlk2#yQYcsU^vRg?& zM$f$gewCVrJ2jTX!`rm9v=$W+$BYwauyze*jD%sH+kL&%(s?<_y>dEB6Rlp1GgZ5$ zs`5n1IkwamuB7ae7BxuCAHV-+t}H5v0T$eep?`RS;>crY67jdPs+zE=D<;>zddOg- zxgW7mjfCi}*hx~Qw^S!`_GW4|rC&3;XC4_tL~x}^y9n?bb*`uwi*&d#OAh&0{i|uM z31k1Whqv?$s09v#b$1oJxic0!&yx{iIA-N18I*XPU0?(Q74uG@%`GG}RpP)bmGvl%VOsv;qU#Gf!kL3#bRSl*^~u&8LPD z`zwfo$c4*}!g0jR95GN@EoM5%FIiPW4jeHLyhz%^Rh;XcuZL)51)IEgoLCWD;CGRv zzR+(_I>UxDCu3kJh=$Q8nSR_-KU>@)XZjbhtAlkAD6FgA{4cDK<=)t`kd zp*JrhqaZ4Gi$LU_H|xB&^fulYkW$NSKob$X6mb=XMl;5&jrjy4kth7=ls16CD~?>& za@{SQ2tBrMndXTj_!P4N5}hd(08ECqB7f{$tKCfO8~UD6B7z2F#@`yT>{!IsWT%xZ z^Tx|W7bGJ)BinZ7YS&x_bG#=wAx!sSI@wf1&71|6C33uJa>gf77AZp+Oz&rUWzl<>M=rt;!1@e5R;CiXyIUTotclZT-BJ> zxmVjM4&~i!8>jf!OxQ$9z1n=A8Gv^7YS&(3l!Y_r+jBIzw5TgNoaC}l$e|F*0qjrH zyof`@-q3cF4iIfrNHduzz!ErsgW_g>yFIsL?Me*N+|_JpcED0=?0A2LX)O%w_Ysno z-aDr2vzolikh$J4gKFqvdb=@Q`l^yK^&uM46ZdBa@(e8Z2IV3}*m_^iCAVuzZiQqb zJ1q<5g?Efosgq?`ZWL@O8cao0glFd@13%L=bVggf(Y_ag9m%}+O_C`z>Pvc;)mdf-zXI7<=j_$4z1TY= z97ncn3D27VsFo5uI|;xDgyStTFke-@vU_%TaCKCX?Ha^QN5fmCRO$zk+`^9V>Ori1 z9K4{z1SSfo9byh}PP!laVFzKQ~7 z`;Hl6;ln2pNJazlS=f;_m{@Coudrr0@ zu85)=^E!E$Nf}g`(|ID%wR3?q_is7(v@|eS5cR6$DsmV~Qe)}@1}v@8yB|9r?3@uN z;RL}EksEm{)xvX{PsL40@t_Ncd%J4Mz1>~K^YX6%(c8Ev3L;Co0-O(Pm7Rs!oa*~I znhqRXNeQDG`;Fr8s)5L``_@f8efY+O{8oi!RgF{G9h;-EjX zulEDWnuOVe{k-y!(Ij>OwQ~V=3Jah*0q>xhv#1}>?TDSjGB!AHF64VzWrC_zZm^lT z2W$FVO(>@gZG$J0e|S*#z+PeJZdjV@nrGkLtiia<*fh;HPn}63g_GFRmo<~?zpa~#q9OLvxcBl%jgJ%ZF z&OzZDc}Y3x>%@mMSi1(BH5(0YjfO{*d{^Zub^}6_6Sc6S-n}|F+J802b~wJ+J$rdJ zd$3kfFVL5?KSA;ys}{Ji`jU?k_j|A;w;$fh^S~#97DSE5%)q}xc_$2XEk?t+7v49o z4vr6M_f72KP=li&FXcMB_WmEJp|-|6gJ?L^1rQTI`xp*T$*}31h;Z4)E8`bI z`kh9K`RjJ(TJPl2O`636&7t!tv@v5L-}Z3SLS*2D-TOIZ3opt-1q@GTw{}xDUx@4i zxya~?)Jn4$NWRV7t@h|{*?%-*Q6ZqXf3GR-JZ-(6mPeB*(a`P{m;R{2;UZdU)Pj-9 zpfzvVVRuE7^R#w7O`OXlwfJ0AlnmqA^`A4BBkh1>G`g=-=zMIwK1M8LS8g)8-^t!Y zOFXhzYG&~pR4g_7HeIbdK2&i)w5Q@QQ{guW4jBtkMpg5}3@n-1;d@7Jb)gC`8(d@) z@5@^C*zHoWOc-zw1uA&+H8UX@9%4P&G&n6`4FqOs9e>WBwa#Gcjo;QBFs~WRq($Q= zx904%odM$ebp+RJcJewGYq{x$%mvHoCqore)I!AMO7L;0CWU!j;(N|s#LO!eWujl$ zZZ?~RLkyyV36%c%IGU=_jJZbX!1UYbk%k#hH$nee+;=A!hFn8WyOwmw25Lz+?tDq+ z_|%?$EGWPLVJC*!#e&;^j>!%9a(D0L>A@UqZ6EAfUiHQ|<$fW}&op^X=8-^GgtSPM zyfsQsI>z8k*E!SOdE6Z;!_j6JS>lsWfKbA7mg}75(gehfMV2ZKT9w-Xut@#n(#X-PW{!A)tC`2qhKNQ)8breQsj`)vjj5A1XkVNC7)A z(H)xFMp0b^r4KEq$!|w^HyCPHt@I7>4mx%kyXmedoRgQr@!+9vwU|@M6%SqAwgEXEb)&@@-(l~M-~Z3i%Wt*tuQFV(A47sy zm93?-a+?+WHr>6P|Fnx+SK{YGnYYpn1OsM!vh)^DnUukpXy;7Su8C;;m{GXA?Eeb8 z$;2>-Xrv8U8O8?W{Cau{9X*QPFfWCGPC-@&&C?Fb+2JWOvvUhN{Q!S|i(5clH5X~z z9RTeOB6c0C&cTj{FamIj3w!N`y^!Hw%WK!XyPAQ9GmYet>Q+_Q<#Mgft$>=lT`kod zDQCH0O#5^yqMB@;f+FqZ6Li9zKeg*m#5aT&3l5=v2}7FZ4c^6pl}7_echWBV&M3&Fj)(K2&)&OKN|{F=`w;%6U{)|MSf%vQNP?TIGw$8RJ81#`Xt~WDuH=iYw z#MoK@wwWgd9lAgZruJ8Ui$3y-7DG4>LNx1jw?|&fn?}B`Gx`#28Qcd)WX4POk6Xky zFH)t5%^!=-Joj}pgZ%Zg`OPygYcyXs2U(Lx@C_ZH3zD*Am~M2Jq79 zG|idcyO&`)Gp*1}RU#5L_gu(0P_wQ!dZwsiY?&8H_h9dQ|G0NP$HKD@cJ1zaGZQ5d z(jAy$AW;ry0;7VfEC3eVbKEIom@E1%WHR@&#)y5f; z&{)H$EGbBFVdZ>DOjN-^Y&wypPxm~p%A(}Toel2?$u*Fhqht_WM}rc!5PUAyEHb>8 zicA3BXe4RO*~TUz|Aypo=tuKK-y9yf!G?Tf_0o*Grc&L&>ZPma#CcW*EQpgkQIldb zRVplBy(Pm*n2qG<$e0AQ=->R&zI_44lr&v6Sszq9of`E6GmS0QgSt{yr@D4M(%2KW zk+W92D4&sV2G^VI95W<{89=~UAR^D|a-tX~+jE@J+BKRl8#n}hEd!+eLMd`?#t}x6 zbSq#cdUWf3qhG7-oVnUHR~)iAKFhyVne+jR8PQ%u%BSQ{9aqo8DcnBBG-raFF&Wm< zr5hWZVAWE^ZXaaoK?wJtshm|&kZn{*W#->DTOPGb+MY6|+s2ulPXh9cGQ#0M$|(5A zm{9}Io)IaEG+nB0RhQjW#npQl|)W6*#8QUf^NIm4UJyi z);+$}?62W++5nckzJS2QX~x9!1eFMvYP6eb%oK$G`<7bbk?>6K{NQ}QSApUi3(wfg z=p2lHB~4>9$2*G-V8D6qk3!9Ml@d&tNM%rEOK-_q_GbcmSFI(7tWkxrYNH=!59pxp zcj);7?^Zfm&Rp%rasfHfs-)aV6ChCOU51~i9tDACGqqS#S&g({g!28>lq6ksuUQ0? zl0=NxFr7v~Og9_ub?()wdo6Cvs*|y1S{zOnqH=cC+G9Hp(u_8*?*GgrSXaHQ8no29 z-@jf;yWggwzN_{S84&5fiRVnq4EmGyjm3Gk^+a+t$SRrFk0jWi zLt4YaRG36@JdN@4aF<~e!3)%90@h{Nbq&35y@z?S@l5!SyQI3 zsNLAr5Fbq-;}t#&Cy>oI#0!RX%2;*tr3}gaAd7~PGBpOYh{rCsZ8f)jLrKUKm46+j z*>}i4eN_kXtNp{P%hL+-`=vH%V*Se!g66@%tRf0^8^pPas7+#~vKr+ky1zr_=!mW2 zkK+<79*%%~n>t@?*B23}Oq0>hoxO5_ZzMaZk#4+xT9QCJYvF{gF0Yk2N4pwE$2@Q+ z3YwawWF|kI!Zr+qDeIi8U2}z>Xce2)0#WA0FbXBP9Eb5#YSNl9wLWzTWjDmnMaPVe zLlP)dASc!|1<^LsIi!;iIco8ew9~m+yKa_4`^<-tO)qR>A=1m7Y{Ka9DXxXY!G=1M ze~cV1*YZJT8hw|OsR%XcSw%t!;o6&KDZ?Ji!MT@5d&h@&Ikd@$?Ss;UE*7KbO>}%A zO!jbg-u#{O*?BcZ-xcIZE^gsqf9+H1(j3~GM!6vO0M2a5JED&wR33CVf|%GWtHK#W z{#t@=S1lH@`CA|rIE`4RaY{~E~u) zl#~-Qkn~367~+uW)l7EIsVknRaY`2JCrj5&Y*SC6s}5IH4d44QSt7bsh#0SL7)3$N3-l;JezZfzTn(F$btD9ThAF-$F(u}_3Xg*V=w#%e~J~wa2U{?Z|y>5raSQ54&(|A)UWxIpE00Di`;c&3rV4~hrGeq_u|gAk@c$@Gp3#Ks`+4zZ0bszdlJk~S=#(y zl4Nr}d$TOLaUau)qlKCYa^kY(ma}EUJ?V$U4VJWzImXXfB>@KvF)V^h7_e*4WLzRC z;Esci90wJ8Kv%Sajyb#KfIynw>-*C})R~>R+BH{+7om}gW$Y3pZCEpbse8o^_6{1( z79qt+OyuRxZtdFbau6Y%M5*}`GjMd&jEE!07BnoBph>odcB-mC-!>D%?Dm^XaN)VM zs*!7TP6P-0)zc0|gfJ%a9I!1vjKg%mN(jmz@lSf&e(@DF)i%zEVjQK+(ytk$Q>k?7 zMzwQ~ps$rnI!ElBBUZvi&F0$TV(!5q!Iv+42gjGy_@K6=YIC_2=eL72^c`A@ zLss5!@s?&c$ov~-VtCc`BuZk*x+5vFZ$KZbgy^9;WJLN9|o_V z9iLrZoxR%UpXn3fAS&eHqr;b1m-|OYvbJk_5`HS!=H~^UUOzj0)jK%a<>kTc>u0^g z{e!*T!)LONhgTsB78IA}wXyy(=?gydGX1kJf0|bg(%@Z2>y#h&%u6U1UO#)s;VJ6J z)ej4PzWzS*rwAcmWxPO4Yw=6Z*%)@s+ZX7 zG;cuP8Sh8mue~?Lp!M(hdgi0@^~ub2#hdk!sW|(zf}*&9-Ite#y;n1#!}`>-eMbL< z4O^>>UVUuwWsA0MPD-xe+Q;v6B2ye1M=}9RqPDzE`P*IWS7X`ZtHaadg=-@1GaGsv ztK-hj;?+!HK9T3is!ud^g#G6o?s(os7-+U2JnO4@g4sg%?49+%9I6zm9*dgKnB>a5 zxMtVs`{I`QY8x8flBB#t9$$l{M2MS{q@0)t7RA?b^*WO%$a6oy4ZCNkbgO$sqIRLN`=JPabWW1J@D^zvWO|FN`2>5609DOa+;kbck$-~~BRV=g_w!=b5oeg6F4J8`OH)Sqy+RA><3H`{;sd2TsJV_K!ua1tT z7_)b4tz+4IW>Y-xOD@v5mz6cUFBSn{wq?u;y;7t@(S0M;Dj-7gu~n0tQqy ze{b*b;_&FO_l!5Pq~?ElxO;q5mFb_a`Hx<`tX_Oq_8(P+B-Nvq{YRP%EHAqi2ykWp zW|#d6u+*yi^_2a0_iUHT{$@hmW~#03NHBJ(_5-`epQt*JB<@|x#81SymiM>mIP|X@ z`F1Uxk@Nn1|7iE%SOWBF6VWHUJb(UrHtEgBOQ}YiXN@n(pcm#~|DU~cTW;IR((tRG zaxs;zQrtRPaZklnvV4fEl1!?t>X}=R1W807fW|?xa+Qaeo35I{Kz z$0?Hl<$cu>NvBCIuG7E%^)L5Pn?lpga4%0!Up;Fot#-V6K|=__>t1eZF!zwGKj67b z_XD=x^Pu{^*IANe8URTcl-4aWi$7!TK7*iy1&v@BNGrM0hT2S*SyRLi9wcI2oId^b z>B;sZ%O|$Df8-0>ijnqvIaIS*5`l)(?P6&BqMkPi!ho%^MC2lK zYT!vHR{oJrqy>3DyEuG#xg0~8ro%n7S4~IjJrAnsxUgHbrP=Ku``TcNGf9(FnUMvv zdL-3)!suGp->zYfj?d1Xy?PwI#!#)bY767^Ce&PsIOz7QB5F-*y>|$Na`9h!_U-i|Os;XHgWwISpSC4`mqYb^68yxD+uClGw^&K6 z@AXJWM>`-u3ONc)AMGeC=9UU-k+@m|ll_4z@x|f!*(FnEJWw>AR+ZR&##D)J?$)Xj zKO<|+kJ3J(gY_9_O|Kx)AlN(({w-YO|E@(m3xTshL1DV+4s$kk7bi#O$4`$peQ(Y$ z4!=F@(n`*so}RuuGxf7^)>YV5pg_?q9~s%id|2D;cOr+cXK@pjvOUh$fC582jzZEDNSNj5%Vvf8LFl30X8qc%Tu4rtr1gfyVpQI(xIP`n!Ou<}>bu&~mZH(S4E z6BVAO+*K8L+Uu}b=*-omwp&atI(|$B%2yoQuQ<3NmjF|mmc0mX2!jUu7vKzy1x^w- zau}wj^z$_J8PtY{CFs4)wr?|LGjgvF@aegvgLjk47-Oo@3DP0!ZQwWX<$7|_q+FC3+wA2v-wQm zmi`!S&;Q z-=#IaFpcl(0FN8vMQ0i1+yBI|ByY3rgMW5b3^dzb zU2-%1867*gN@z9+6V12iE;48|13$STmW_+e<%KvMC$)fQZ?T>mbXjbrLJ=mqMaDFry$K0b6!8p5 zrC||%lbb(va-->k@PH7n1c=M}K>D7`wid_3RE)+ZTwaRp^Tdhk~3 zrd{?bQ8N`m0%sCPCqoJi0%=bU&mLX^@F`&H5-1b2q*Ob_m92VpnvnrjT+z5h;dmb0 zf~4~-eGLw0WQ-nb{NEc-TQ!uw|Mo9N`OWrIp25(g=Hk2tC*?#jmz2~(u4Yb?`3TwX zC?v!hGmWKGUZM46Ah|4m!_)D?7dj{166>$#(8p#^JM?BwvN$zmtx z2NLy$RL+4$?_)jt7!Z%4B1i9Y{EG-E&&rWr9Xs{JRrGwU-sKyaK{Ya3KymtyGc6B6 z4r+A9B7^JeE1Q}=#(Z0S2IHp0x&4OFX=z#$1Y=uBjFS0*yT|!qyIC#)x%U4yE*^pJEI?tI}dwca;a)64` zKZ>ww3}@4nSu|IH$o{!uC_hpw`F3SU?aGyFm+hqz6X6?tvDn1Te57B>Ry8>68cG&w zp;S!9Y>T-noFF5y@m0lDU5Pc%G}qg#-*B%E(p0!Io|R!j#`OkW7>skvDfD^3^=L!- za|(IhV*OhzNAwtpktr3hDXow?C9!N1h@Z6S@n^N9ll%HLAT;IPL_VQ!f_BA zu~{y!6EGe&_2@LchxO}W=wcaG2TkMwBe7e%J6;;C-JlBJ2P5&G$63v=Os^e1yqfH( z16!vK(DYMlfUZ4O0Q8SECbl>{es*+r?3a!1-Rao@(6JiknQ3~v5T3vu6Z9)mYC}5p zLB8K0uX@*!PM0HD$|X*MaL-OeBPwH}{8BAM!GB-67oeGrh z5aB(cza|mz0|IVzF}}xyFV{13r4{mJVhajp_X=u_v>QF<Ib%O#zee4%5tX76!b;30KQg@K|voE6!?;}ly0`S(GG2NlZ{QS4qW|xl#bcL z1VjVE{v{ics>+%<0~DK4c#Zy*H_Q$VWBTBEoFfr{Ax4q8xuGKgC|hyL-Qv@d6R1;$ z3k1Ds5v>(_KKpF*G&Ch0$4aM+52SD%CLqy`A~|>4Glm9)wmU)};~@RGD5K;i@@{09 zu{+8^=46=i4S#>?0t|ubwOt6+Z)~i|b}S$I;I_ly##Zii5KeCJA05mfdQGC7lWqcI z!x{Jxdrox$;zyI~l>EGXc50u7RqLuV`3klXHLyY({xKM1W1s!{<@w=@(@i(uHuTwN zM~6>ezud2zZ$oY6+G82?$3jWt>dGTMfyE)8TJZ^@_sQ{TuzpQaL-Xi3`>6d*F+FeofTvIS1dVs9a`*D;cWaIk=Xu_%F7+N^@khoc& zm>620r1@~RNE+zJdv4@~q8Vh2#E~?f1eX*|($IiID17|)-~Q((@D2v5(ZTP({ckI? zuch_oGq?T>d!B4spQQP4!!~G?GTAh$8m{fI3k{*jQT5`$jivK23E{^-D0@55uk2&@ zNCnO?xB=Y?!bLvU0XfE@1#Y=KJ7wr?w^~8;5p`(s(U z%JQ~mo3_Qg4F_jK4$?PPGddQ+Z=7tWED4`Jd3f7&k7MUX%EHs*)3aAA%7RUS_a1EB zL3bbDWlXa#;9e|KHf7n%;tg*`HL=>&>NLheud8tuxHY$MSwJ!^cpeD3X}dF<#+5Aq(D|6;2! z)#tBYww^gY(_7Z<-YY!!H7Hcab2olJo?V{3xOlqc(%P(l@4;4K+I_|prtYEEmu9Pm z{gnGtAFMuG?|Cq9wy_%|gbF5txSS>ubc)RT>L?upw+N7e-7ZcJpIx3B=JSv~VvqUx7+qrU@dB`qC~y~P>9oV=U$D_f&>Pkcqee|gAtX2%M06jBEe{--sT1qi*#`ZbxWW9m2T)T_^sb76f{2KKfPjdAQbg$;ktWi62kD*Adx-QVAiekAdxwM~y@cK& z^cEoWKtjml_kaI+@6PP(y*qPf@7>wmbM~C?oR9kr*we2`6LO^@Vf%4`=)v*qX?l@o z+NDk1*oS|InRWl<3f2SLrs5y0i4@)g)ghQtUmC_K^W$Qi z=BLV^y{lP9u7DZur*i1~`rOWB{zq|^qzJ)t8RadM_}7ujfmPS>I$zp+{t8rY z1Hs-3{1s&jco#@K|MdAu?c+fq)phTHOPep7+(j{mdh1FFRUz61l@&xa9XL0*=w zy$9Nr7g(_=RlRSbu)>G%kYRn3V2#KXMj;pXC>^Gp6*q z?}r!7V}47;fOp9n(sAAHE&n1s!x*T+umMDcweyWaB$7|G7ci ztC|1Kj?bIEz8TwJNIB)+%cgKITsl30V~Zs{j5ek#{_3v7&i}579)Ii2h)jJZ2nY`j z-E+1;2>h(jRhP;oK4E(Jt)Z@v3FMhSw#~9`q~6`N&mW%cFY#D_xpB%7KH1~PTq;m9 zyq23eV^%;bthCIjWIMxiCMV1Fv3bara0L5fQ<6oQuuah@D5aON4Yy3ZnYrNU`DyA0 zyoJ7xvN!E*Y3;g6Qgp)%dPS{*MizbA!-5JB^~2Y{!H#dGb%l4r)OV+P1z5JP; z>3QG&9H05fYp$51aMXfKqDRm3{x3fa$Pet={`T`vgYBzPP`|2c-D2O=*V) z1XUh6J5Ohjx&YEL?Mz5()_BSrWh7N@a+?XGM5lgHleM-We?|CB0s9Wi5%f4kmzg2; zW0>3iFWkS3%msoxf7HK`l%s97H>r_`X@#j)EUJgGGx$HB(L25_$cb;9h-uhRm)7o+ z5xy~IF38c5`*zDE8+(|zg8)!t7x+$`vhtoqi@Z8Mh`+j*Ert#<9f7$j$?voCd#qDE zM)_x-6UfEBWQe7ysbqd!8HY%&9g0Z){dy|{bc%OV#b`R9x@DUG;m!}1(M zpGvhd`qiYPjXwsSp(9QbziD>@jwlT*(9)F9yck|ajD`k`dhJv(9s8Bmm z%e^cM$CLu&I6>hDjnv)Gj%F$(MgxS#<^VIiJ7?UFL1EN?5!owGHU-!hn5#w|FMd6g z6PL2~VuRhhFxpDD@XQEgCiCID{mqP2no9fGkrn5lK@gU>Mzb`+r8dD!8pQ*6O0(K& z>J~uA+yjW$r>*rXfjt!HZr0vS>$E8RTatS!G#dMdO7O45@dI-CWQHERF3y zj)#YA$39#unieFRO$t54_|V@MvDziI+K*SY9;nx-I8+q1=Uob(#r^Otm?w{S|GP)N zx^gwL^6pWNZvE4Q);DdBm0y*Jeo>dDQzu&t`1qFBOm1Jea#!-{qihOun#c6tbH5V4 z6nPIVcE?uLX=}45>)mol<>&sz+h7J{942dQAFCI?Gl$i z2nDd{Cr6Ko8aAQ}rz~0NcC+T0pTKf)zq0yGyX$W-x=~z4Q=;&q13< z@mBUaUZlOclGEjdY={k3>lP`2?+@k(YGxarck(F8D$yAlROU2;eIAuvQd2Qax_C`hr z@LlpBJY6a+-L|0YVM`9sbR)|QY&v)besh|YLx!S@iXS_02=<@V4MzzX*h}}X{m}>_ zmR0{2b9$kWXV3HUPJ1(E)lE1=`XjECf8xJw{J)I9CZnvl;~z#EW&9>#7kX9_fuWe^Se#3ljPLG zcgfw<&Y*ff@CmpARQ4%ob6fAC#9HWRX;!7&$(5 z?Puv(pIa|Yet*YP7Wb^KraL`|ym=tw(XwnQnYO;yzdZN&gU|Q`%x(--xGHL5h8p;R zX|g@$3;}{pGf>I2PDJjHb0rJ*o@KqP4s-$&0D?Z)yS~0qV*0pq>vP2>ik$(k^($c| z?e$KsOMo)O(4CosIb{v?1>;NaSMs{hpTIB7VD!Q5{OxWL1>5k!oHk)#&pm3wKAnN% zTS}gSDK^ZLJkIvEFqBCsuc16^(|V*$$kY0cn0D3Io->!iEKcwo2b)i(ymNykc<|r> z7K`&hNfzfZ{{8)b7u|yxCAr)WySNYjE2Q@=?f@rKb~`guD-9&aY(7_{0o0Xy5Q|)ut>uSMVii9J!tHrdM%q(6 zKbM+m|8(yUq4jatu_|(R*F+##p82h~!7!_M$A*I;-n8(bZ|sk~=uRMyAC8x^d~UnF z|Cpx8j+`6=xxMlku>S&IkkFb_q4CQx-#ZqCDG$tTsnVCSVwNa>ucqMl>6TFS)U_v@}`5gpDvOJ+HO! z?k*(D7ahQUwFH2$RDr!3pqY(}x`%ev$WkPVK~P&0x2{1I&|BaYK@<-VHm)F+a{sdKC z94689FK*_#&}46V?-UY7WjDOOsp4ZkRQ1P|WW#o&sB?XS?e!gIsEZ6-*0Vz&a%9y{ zrwmitw;uWJB3hgG10zOCQ_WeFY8=2j=a=`e5KZl8YvX3aT%RV(Cw&Op0IIXmN z^)tq^A&q)K_-Y$^Ecs+QL%M>y-N%gT@mp3F?YMCED`Z=&7QW4(e8r;ELx!Htxptt) zt&oZzb;Q$~1ssJ!io4J!&OJ?z~t!1=mEld0pcJh}uG= z-QCN7g1q=DGjWRA#un?w!?h86DKy`mW|%sJ9}67nHevRS1oeCR+hV<)EG!7Dwim5L z`#!sAgm_mo5wz_BZHWA6t}GZB%X%`almu5QeOhvsc)S}k#B>0l!#T~>EaX6jrcF=Z z^XI88BHPGC)6J1j7V*7AS=5xHF} z+$})2VS#h48o&Ds38zgNBf0IDu$|e|4jWz)HJ|+u!#VGL6jSt@hae)0hJdBJ)RJ`1 zIPe)1J11;4b;;j`nTsrU|MtIgT7&e_X`m-6Qr(c9Ez|i7M@r#gaiOAm9ht&t$7cMN zauOcT;%WQjj_S|6Z2N2I2TvV$!jbnDSc8f`qf9Bf9}u*@x0jb@6e$ayIXgo;2iqDN z>q*hDhO3<=(nO@-W=@;$qC*^pw)u@>hR14T^s1v(+A5VSGo`zb&}OeU#zcC9sa?VE zc8rZg%x;u{H@{wPWy^4X^m>h^?a2Eu1R#7P*#YRkH`lrNtX|L&rTZL!{icYZhRPl} zcB(S7Gps314*Mwdj0*3F)ym-AcC^n$!wj>q@b$@i&_->4*X z`Arwm!x#VfIxZ(6IJ;Zf&b$4Ob-<3hoWlerg|MPez8tNx)~{euj30AwK*oYV*7; zAxAj$%7?JAzN^4()ok0!yPib z*;{hBUrEloQd_PzI_y<-JHM8foc?DM&BF65B)eRb#k#ihRm1&4%LyltAYyO(wMMbLs6%#YO{<-Uhqnv`J{?RP(5aWFauA%e`UMDa5u%08W7A&=Y7z`JI2JA*LOktI)p$_}ea(Mau;V1OQeEB%3fWuPoV zIl5g9zJ7B}rN8io)?+W{{Bv_By0HdciC&Iie?ghv$eZpuwgBz8{%&AEV=s7lF?DK_ zc77K^lgtY6Zm02KFxo=J#T}?s@KCe#49h| z+OJb=RG$>Ed1q`Hw3jN@8Krj4f3YGl+U3mGB``+m&S=ZLM@p!Q>7725peC|UUN{sn z;0C!VW4Us))1PZHc$->PDq718tZQ5Fl5wlIkI`LiJX2&+c6pDr$`xTLCH%;yW1v2@ z+eg2WsnvCIsG4={aoS40qS?yq-0;%{(`0o(1iH9LZ^$n5wXa^sElPJg7;8J+SdEWM ztJ^nEGdDFINci=|XZFZQyj<7#0S6D{(V+xqqKV5r2&^k~zHhE6IjtWykUg0SgHyUo&3qu^RL&Wg8_ z^ZCj2?}s>=Pc}NB|GSp%MP$><=8L;Y*dND;7vMf`i?Jf;6EbMI$dv$cqw8kkvd2+> zN~O}}@YcL!v07;ZvGXlr{pa*gS*~zcKd))gKFXgzh^F;ewczTPC%|OWy>tvO|7Lj=77fNC z|Dp{UpSf*EsprC3kVBs{TTc_yIs#|Cciol%MBK6_;yns&f4ep(LTE*flT94PvUq6? z6$Niz`-mV9>pG&Bov}a$1_p9{hb~8HTHxZRqPK1*bU8|U>;1InXgdQ|CZ^p+LB!*@ zIisYjWt%Dn*~DKQZp&6hGa{3#xZeNGoBxrTeN~lEk0rbhK zSrLq|WftgwXx9p~vhogch=IL%^YfmW{k^RjsPsMJuPhDUc>(O$Kt*RiW}u90{+_y_h%Pw-TVoQTzBQzxH)vdMR&9hc(3K!%rO-_Qbm5xQcuYjsYQGXr^de%SfK>vTeY4+pe!jUW3iNt9-J>p@|Ik&m6(O(`IH#~B% zSDU+%l)}Vv4?q-?c*Zd7Es?i$!X@lw9;uMCbRGDNWYv3D|E11+%ToJSPEO}EyC%$C z8v>km!uI;?df6_ialwsh`FtkH&=YaHan63?x^#5dk7z+3GenSQIj^?#1QXg!t<5gk z#%07|M&}H%e2yDZRDk%jw51~|Z@~ZRkoQwVJ*1PODUnGx76TA)7_izL0*JO=hsmD7 zz*TDnX}7Yw^?w$=+mwblw_wPIQQK%*iI$aK$KKnG;)1!6%vfcuSA*=o}@@Eu!gYSEDLk|0crECgg2E%c3MeQx^?Gv&T z!RF_R7dEQr+erra6SsxB0IR&n5U*dW%Pr2kBM+_ST!Cn6_r2qw4hZu9O60wu&eHE| zmx>&T#W?1$^Wl4l&?w}%ClxqmOVQA>O<*d2+xgrgVHMd+K>`+DO8LsSgKvuBA(T#YNUx<*Wb1fH%6_W@l8sf+Uvo&#^p zx+D~4X-aMiMDi?#RW>+|8d$J4Z;UP=?>Kg&5TLXq(NiLoXD-0{b(_16J%LbEgQg*M zm_#MyRH}-{H@f3Wr`6@2h(g27?doiMn63)%<-q**#N_ue;&q3`=i-Lq7u-XlgQuf& zu=bliDtHu?`__bX3;F5mr#CPVmXN7!Xy~UNQsBZBZ+#W^|F)W6X77G?Ho`MmGrZU2 z|0Wq}D{d$C23OA257N|h!SnIatgWcaAYL#p0{o1CCPNK)-X_1hY_m-Y_~)jQT&W-7 zVP`@>yeYx4H}yj3>~I$PlG;eA%BIzo}4SbN?)U4dh5NcY3LhPb>czG?KRz+*ZK zyaIWU29UeHTFS#F%pMqej?PHaxV{$JFO*L~jo~3^K_fMr5EQ<^6_F_Bv0M)k3`Fz@ zGT{YBfOlz-%X6h;ib6Cnhh;A+K<%^lFdEQBO&XxxF(`Zaa&+Zi6_XD_C<|lKk^49{ zgnEw8i-G!+*ElR65kOuGE>p(=rjGHyi>bra0zWa_6}l?3zm7xG&NTb#AZ7x<71wNK z7oSzrF1*IlB90oULz6vQN@~)001Ge_NRHzd4=$}Yqlt+3D!%cjh3576(LV`L;)Wdy zpWfYyIHu=zXS^v@a?e@qm4GQy+K_oVbW?e64M$09CmzDWN4Q^;ME(6j-?-ywh#fh* zS+<&Dbo+^nhfcw4u2##F!Fv?aqW7PPgu}R#j#Jw!_Q*_;;+@c1((^cANqXMevv|-(^}wJBqL1vQvJk<}$`nM(f7%{;!XT2c zF>Scwyrn_D^3`SPXxj9-*h%ZNptc3Qnyn)$cD}2zBD%D!X8U5tVN69UF0g`b-)@%i zLq}_0X=!A;hv6^Q?U;nWE{|&)h>Q?lv?I9)3LjE#AgwWY(6OkPn+*TCI*1no*ZJIb z|B4*LdcM9$h^WJSq_^BWpx@<}0abP7&h;f}W__lx!$NP8+UKgr%1KM^3wD|>F9V49 z9NH=x`#gJGU$2i>Jiy#r5^`eL8ke1}Ly0F9G~8w%;?X3_F+x!OZyq6w%gWl;me1ei z^=un_?k1u6>ETH|1{J~7he%;EBLPnkKlep_V{a(OknhiRdQU5U39hVWPWqy_2-v;W z)4s{_?v&au9h~4coI(F2ef^8%H187tbg8kBp^BiFP(7*Es!STYtb>I%0h<*S3m@_9 zzvn?swFnS1Hjo6JepUj0q<>&F=k1k6dI`D!uP_{I&FZRNkZx`2LTnTXZvg$xRe86a36nG+eiZH%SaZ|A;D>i>BK z;YMzs##Dg_Kp0@34LkW;H@DU3jQ8vI{V0ex&QOl7xt$Lhp?)4H; z9{XvYsYWaUG2%xr8oG^Hu$2WmID6N>KR@vgE*ldelb}ATPj3AE-qw3`z8~hZ{Bs@`>ZtFy#Ezaqd>X1xi}@=8({PZBj)JZ&ls0WHWOl%V z9z?koADZ&zkcOxBcPh}tlijw_&S}D?D?>(koz8x51eoBLT~p6hMsLwzK=W>F#OH1p zQ>L#q40DA;dosyV^{odqEYF*R;Q`*-cLx?_dZ>K%zXdd0&Yq+v&8=Tw#3?#bAD=qm zq#s_bTF~+{$c%vo*Et*K>(+~blnV1-V4uH{pUm1;UY8v4P3Gq%RW7TpxWf)aE6w7-lSD^lNb!U+i63nsL+J4rsd8#VfT?YO z$cxE?1rs}jjtQszhv~#*AmgH9ZjQu}VM3;#D*Al*Wr+r|lzvz$LOk9Gc^&`XA z9-lx^0RR49GBMv_Mk({YX^KtySdKi)I+SYTYu^#%b|B3*l`_YMp#4lc)tFr>FLP%= zMibdN1X)pUb?D)Msq{Z8>!uwwq}R3F-nkLoE;$tqF}cCSnptUkI!$Ajov;@Ou)Tph z70aK}l8P5tc0&rPUyy`P4JtQTHNG#Kp-S|}gKUIXW{ri5xnzv#{`+B&*g z?zCsJ>HA*8Vk+}=zj%wDPpe-4&B}^)Xt>v<|5013o6T$u#yL{kALv(U?#;6cA$%NE znpQmfafn3K3|4oqbOAt=jCCW%ajBw7E{lh7uIpi^2Led1x7$f;Tes3^Ofc`YWOv+* z{>+ai`bD?`>R;z|6RJNxi-Uh&7L4gIpOu7-Qhw%dIX>G=owaKd$J)_Z+JamzHgBvo%j)AYZ_cti0C}(}T@8t6yzh(0R z{DWe$_3*qmHyRD+{0mG}ohO(#hv&zJ^LvD(K2uC5$+J?7F_g<2vRX zF@KokE}YBVCUU2$3xcQJ7Qku73z5>$f%0@du-OIKk@R+&;KExTg-Tfa2YPd6I{Ae! z5v=Mm!WRP^X@T_Pw}uRnP4=$@j+4a~d0*KTLs?jtzvKx>N6=rEd*f_L#WeOpGUAWY zd0y05J5142d&3(uJx~d)o}8i;!(Ig(EMsL4-X3k%jW+Zjja!E5W??$p11sZ+7R^RF zorfng4X%%-TT=X##!E{qmt^G2v;kF3V4a7(sV z_-@4*G*gA#<92Z}^6F63HtDX%4c@k}|0G&bvt}!ofa9|$#HT}e4|UQpjBJS{-F)c@ z&B1Ge@YF7=QCgU0fHZEJSN1a-kZdqyVY#7SX}Wh~n-DtFW~lFI7JyMbgB1kgACxPe z6A70hezaRA`I@|7=~$yTEW1CFD`CAFO^3zNwqA1U=$WzIyoh7(Mu&b3Dv~ezBDU%x zF!%1n@=n)*vGc1iAevtGI3>qzIZnd?vGxgx^rZD#3K3>Ixv*oOhcLycQCW6fcetZoTgT1a?TmK~;2s7M`&Oi}==i40oU- zh03opAr8@#T=ekiIMko_A1`TZ+_O3WBPbk}Ce`9AQ^(7-4mb36n_ialwl;8fwE)(< zNnl_&Y2J6_#v=;etF;-Lg>}GCOxqy6BYj*d$&t3`oazcpo~kG29`}EjRKqraWD&>so-~Qf$$x_M_MH@Ouhe{KKKkg4vYVfmcCbn_zGR(+8cRS9Ss=gMO znrmw;^WH=(TUZcF>!^wmeb%a^nCPVE-RCQ}&dz~X`8 zN_a*_+tEGW+W9?T^eJ)7_4&p-s2MH!wWHly#wPm1FfX8Xg+asgoGJ6wuGzY`;hzy3 z<KGp0RMqsPH%TKT^{ks}ykdJP$+iXtii8#@gp_lvdxwEBU z+uy^Bj;rz;bHxEqD}l~39=0KmJxRZi2()L57$v*so&3^B%)7wxj->y?n ztJeJ4TmLPCWj>Kh$VVUZ4P4;cLS}P1Y7r@O@AU&1EDPnb@>h=>EG+({240@Ueb5z) zs}ixYcXJx8%(bM}LoddWS|Il;nOtnzih^4No8{35=@8E^I)}k{i7Vh|Q*c!0AFip9 zDg|0pG+;Z!U3&H{n8S3_Bj&h1`(Kr}*QuS!jpR(1)jpXJVA>=Jrq_|zY{$FzE4CKZ z%R@o3xDhalwHYguuFg0wQK_`0eQbDQS zhBd2q?#se<3Y~|X)flZuvb+D#^`lh5OFpu@l)%YE4`kO9Q4nZvy=Vj8w-AOC@s!2y zpZ~@8>s9Z$qs6AIKmC}lzhaD5mubO`95o-;a|X%x_5QhsImAJq`u4yC$w{GiJ5vmz z(MeYBTzo+lhKgUcmj=8F)s2L5Qn?=5SNKWPQOk5WF@=H&N3}f%oGymgY z(1cFzaY?1K$!Lu7F3k=-pNv z%m=$dZWs-@Lct4Sml)IR-^&Z%j7;&uyx{i_2hTx0bMfnoJFqSbd=_G(SMK?6IIM-&T=Tp1NKq%$1$1R*}sbjrv1iKR7U-zuz8F zI!3)GJ!9j1H=#fTAgLhdzy(k{rGWLt>sp4(RPMyCq~4(ZU>4rZ z|C#WK^T66arD%3pzW#yNKX-Z2@s#{t?!xQdOF{`r=25y$0A`u1DrGsCCc+e0J5U(0 z@n~uyM}Z>iX7IVoz}pVZZITei0DFSe1d^}L9JbB9Q!az&ebrxGzBzqcOzG6|u3B_P zS}x@3VTb7kE4X?pau)YhCRC^Zv$f}BqiJNG78Mal0XDPz;44`f28JnzTC+xAa4R>k;MhR=0sz=M7>_-`M)}r7IQSM_pZ>Uvoj^{N{K&okSg1FJFH1 zsUJiAkxAhJ`$ugpW#?~npDMy{XV>eT0!q)iLQ#ZLgpoB5qNEHeUf7BCj!I^2U0KxfaUOVXOnW7W1JFrKgQ zPV=UoqPGkqtO^9;o1~XIF3>c5_$)+|`g4@F1vRn@3`F}EBWcGWgxSijxG|?mdTtcm zTfXQ^&HPTmt!i;i>rr>CQoh>wUlDh|=+UX2-(ab!{9E7{TRUpvR<@G4#XNW^l;5ka z*&%DVP|Cpf6QZ0`7LeXT6E*J)ZdY!~{W5x#11sOD8w9&1z`~9BtX_qae z(*1OCgYJ}$|4r&WszNeEXgUMG6@Di!=5Dwk#=8x>aOesn-@!Ia2C!MStaX>7*{k>+ zJ*2~X6YOV!U*h@BTf>_W6+*7nQ+H>7@C--Nm+BH(b~#BX3YX{qiBCT!b0?miuj3*2 z)$urVHgfyOF$*h0U6Lp2cce_Hewag%68H{y!Ourtj1keFtDZQ8+d*V(dz_TwS2t;c zzKQ3NUG5f#6?^wJm14a+Q0>vQ&|8db>l*;DPlq)=FihG}XUwWE&s;W-y^4<_nvkIJ zN1un1*(cCvY3=bJeL8<5q{h@ZtSCz)SebVf8)801=Cq9ZsY1cVhkb3cb)|*!cPV}G z`pKlD#tEQWq2zE$?kplN57bLQj!^AsAw70XXElAin?lu`-68M0+n^=NgnFs^d;&&r zXQ{FqS!Ot%tTp?(|3MN@FB5Ad7_|a}D_qc`lNhtd<0e{kxg{W zrQ$EML_s2NHxfV7_0m4gnKO-g&GppU9qn*J7xK=9(7=|78uVynH$_{!s^bP%=QlNQ zgGlt7NFSktkKpm1$uD5P>dVxQKD7I)7yMWdvFH=Qmg#xNzkIunNBd(q`(ikeOM1D51qP5D3O<)f+INk zK6Vi^vc3DH?n;24y!6@(^dzYwTv~D&yYOLFa;sj?DfwngJmpBp5E~X#H6j>1E$pPC z_ZTP~%Y4Kv7~N{hgKcL;mwVql6wgx5J4{@fv7vVBi1U7qffIdaJ!evEuGnb*y2EUW zSKD`J=)90ft!xLfHr3w=+qFe#f70Dj0bJaIlr)s#7H5ihw5~gbaWdx2 z%mXD_2Es=f7N<8mGPKmXG!Tn({ee2p1U0pzzOC}I&mz>q+7|24KMg0*8}sg%oOCZK z?Jq6{_V!oGMFuEjd0+nJ|R2lj#t}`aR5^U%~D#g|bsL@$z1BbZz7wr6wW7%ry2C;W2-@eG zX^ax51L%}i6wV4j8)x6N?v(nYMF@2S)kS~lVrKT3cO1T|sqslwhY1JMTm@zwTsRz> zW^V_~DwryawjNEir)3&zV#kQCdzR4u)Qpa*F~5jSgQ~{f;0Q0s1nbbp+PE1<5K?m^ zezFE9Bj#k**%^Z&nYm5)zmFO}iAVNozFUeW@L{9pwr{>!N^9X2PIX5McC`lHbpa)% z4fK3&JBT;d+e31o+H%$7L&j~kWG2o9A`RblZ(UbU$;oLwC0D)oo#K_4KRM$5`ZDD| zrB-Ce=<4xzJSOFBIeg0ehG{ch_6|SXKIGuNv51-FE5pDDwYO7@cW*e@0Q-z8o<#HQ z`+GntK|W;Y)m;6P2p`!*bP=1xNSw7U(O+o&`RsUM2hE8aPU!Hev`Bwl>k|KdhuFI> zPCs(Z;5fUhJdVdlB)h9$9gj2aD{jZ*6%rda(H8q6lbu!U<}#jdDtb-PnHFVr+#|~7 zv$eYeRE$7)sU3#N48_HLS5zGGGFO?XgIoZQlSm9xuO(%#3XvUbqv2>>v?-IOfy?4Q zgh=!Gc@~ez+TKx=Ao@TN+kRIk3b?(6>VmJ&uh_Be@G?;`M=HuxkqQ93A5Ye&lAUyC z=F-H(G$PGV_-+Meh~6pVH2@kPLdF)6k+3U|qo#v=-Yz1rM0(^M>*-3Er6(^;NlbeU}&Hr2vy132lAMjAs<0)*2O@5#d{#m8!@gXV1D$` zpfYf+FD;sKHbZP!TTZx3%EoOyAt5PR-(COd5abSJV*&7=CLj<{c(Za&fS-*cP2Kn@ zuBaIax?8Zg{`1oLgMUybrXK-eH>huh`-(S3hqEi8hwa8^dRC|%9V5s-A5^cQl3fR& z&v+iS&<@?+BY^bA^xbXJo<8G!Cr@+ddkwC5u2uI<0`51hbNE%~Yl7>Sn?WZ?tR}O^ z7^q*nKy$%>@}k2^#^J2IGd~)isD;@^M8A3n)hGp}GvPabI176sNTbS^nWU-#Q*$fw zj}-vv{5mTiXK9L0zrf{85HWE${z<4)$I&Yw!UBSl;EO~c%bDylOW}tz8aLl)N+?hN2fjgX8G>nf6TOYS(`+Do(Ec!pu8O|M_gM|3r3kF`hjAzS0-~G{Z%Y;kn zRD6nzCK+(o@_yj}!*1e{vq0AFj(j+CS9jo-#X%T8FMqy+KVLKHhant|g?IZYD2zOi zx8*DAn;O#}ns=UlhiVk;tA)>c(=zOFm?!aGc-`Cazet4^xiP!U(gC5j>U#q9W;T5i z-4$3(8f^-VkF#Q151A7WF7w?a#MBX;qdyWCm;E4c7-9H?)~-OVyYfC;d5YlntlI6> zQ9S}|Ni=B$w{Kp(YAbkc=T@&?N^uh9DMIr6J=aNG>Hz1*V#+-F)4F4jEYW=94V;XO zTc`2!aww0Dnw`dqvzL);xc?%g5-D#zNvXY9&KnP)YIuz>c5$t!<~LOm_3;Io%2q09 zg6#9%4607B+RAYm3sWoLN7uH5Y=y>&$w{n@43{rpkGy$U_xPd(*B>jJH4%5wd5Zs& zjzVs{vbLMZmDIm*8yL?CdF%E@Z#P@HWwTLtTVdSwLtMzC2ilfH=nD#AsrH2ZPK)>` z;M#h~X3e!~v?v{UM0ohsyp1A%2XC9=da%8Bt$^48FJ4lCg+9yA_@HuPL2i3{ZOC@vTMSW)OY?C!lNP^MrXEOyrcI$ z13Ttwvw_V%e5XvKQE4)}hg|a?D>*^+O};ZwC0(Zm2*YL4iUcG}XHnQvejh%c)w_6ER%Dn3&^NSR)B_p4grJtW5XcBV*Wj z6u)ejW{UKU+&9aH>aNjSlKxW=6-b4(oGw_NLEoF&B*dqRWPJ^N7@^ekLU8#hFxL9T zeE!{JMPvewRJGyMc8J8VFcCUDuPA+zi!b~6YQt5$<0oiD#hK$}5@NBy#@l|lfT{5U zDHO+@zh9`D`^!<#j_t3|bv$Y`LYP27(a!hBQCDEPcQonmZ`fMX{O}Ehm$*AXR&}N0 zDxE{sioL!Dxb)gcwrqM?#L&e4AjyG?PrmYD6l&WAitlJ9mex!SX%*kC$=f(<-Mb1zn`X zDst>H;uhacjSPK=|N6dMs9nhCpRF-on%jF=xDG3$Ct0ojtjrf z6x6fr+_tcw74j_r_9QOaLM{uuG^Um)9fe2ZWw}>vgg)xv&EMKJ^xEHy7HNe?2|9F? z)I6gkz3!y%V0ksxj1*tsa6W#kw5_Tjupd^GiSoLg>!$|Rqv0%7kl^@E^lukL$DBU$ zZ=rsaGgJV*;=bAyLMI;Lb9S?fgn1+I5TNSbL|r|%UQ(h}Y-dIj%=aJU&h^rDZfNvA z&jJ+}R#f4Z81;a!NxaMVK3U#?VhFV(pWZQ`{SL)M3+iSQ!Z8t&J1ffY!B?4V1stA; z^STMzEN zXOyKiFuvvglNN1&W_Ue@*2 zGwCaj4t%y!a^vCaMiLDS@;__-z_a*s{mP0ktX7KuK(#ix*>&)d8&OT_WlPfCh4)XN%*H4G|a z=7i~cpl__z6AZ|Um^m0)DjKE8E4X?0)Gv#rjLEiAC|GJ~G??Dr#VwT<&otnxbSSzq3DkIT2K>Z?PB6b`OG{J(rz>mHMO! z8#O!@C9Y$A^O*Q6wx1szpYB*U3zB&K={+lh^@czViDIt^FJ7eebJOGGxPNew^2^AG zd|$g+cc^rXyG@%YXMeOE*v=1|yFl?pGZLR^x~}PNy*Gto{RLk?ONXs3FvA@~UL)A>|kc3MotY(Lg3QD)@*DU-M5fNqo1tsJotx=}?>X z>tc>356Mu0%XtIbZO<3Vn)T0!$P7hg_v;MgUe95nA@|M^3>p{fMGYH z86K+HWCxvJ+&@t^2@#}oJ-wb4nF$2KLg1Ogi;{^47pntgcz#qYv=@_0{2zR^&Eteffig(P#DD8~utySROr@{Y5FdF+jg^Z$diO^0_;VQ>3Dz><8VDhN37eG8VLL z3a#32HzEd1@hW`Z{di5}LVbYDaGw`b`0{d%8JDPr`k!ja2Z4nia7z>Lc3ryq#bE<- zHBUO)V8X&1fe7k^a6guN((C3fTz?Q|^2&I3U)YPT`rzffS3qJp1ma~QH;e}_B;ABm z!dxyMwuyXYZIo#njI2%1#Hkno3KFqA&f4D zI`zB}H$OEVG|#Auq?R!@vXCCh-_?@`AB7e%!+5v0uGvC&RCT(EM?e0UMbX<;IM#$q zmWr+o+sGnj7C;#eS0&P~7knM67m{wmcHdAN?${KgO2V3_Bpr{AzOrdPf2X-rOJR6a z8*_xaO2UW5PPty3RSF`$_cq?+tf^*3m03v_e(A~R^o>KX5BBP}SwFJ2BQm||YO_4f zWGpg)WZg5B;47V%=GQ|V7aI}HH>qWnI<=;QVN6+nT3L1NI!Heten{zVO^uJAj4c7k zNy(|526FPGA}P5%PVTWKOw13{RTfs*)@Dig8XkhI(b)0s=ef z1l5uhyl(up*E{DLdxpyi;dj=PZVR4iM6134mAFNw?2)%=FFyT@T-HiEQ>FS*ECRAz z(;4ObBrGwc!o(eO*&FG2{_`*trJeZnF=wsusD5t`tAfx(%W9r&-SnqFY(QKg zP}Zttn`mlh6uo`L%!JT6bYR@2kmSZLt9_3kFV=!Oy-~2|15;|Ch;N=()zmVhLCJ}5 z1DC`3-<^jbpL(Pl%U_jsn13a`($Rcg6mCusXgN<&=x$&$+OHCt&QC&tV;Y!d-}q@{ z#wk~hnYoY_bm;hQ>wegIjK`z-&J0gNLKt*w8^kq1)5I=MYR}@JLIFSRU&4wMWCWqI zX;7g{uDeW!GZ}A08BkS1U%|30;TCDX_J*U>-ttR3a%3mhdC~coFzu(CdK3y?7H8r6w%Ds44v;}(dH5k8x zu>_=%Wbu)C&#S!!9*$={GMKzp`$U$+?>p#K#Y}S0H~yZu_vyD#*}ct# zHqH1mGOQI{-#$BjbN}Ye*Ig^%Z)GwPZTzsI1Dm#@igx{irnz-p(zM>K4t(+5FaA(; z)ZjL0^150(tK>IVQH`veJzbd@VI_|pq<@*B9CAU&QUl024DFz@Frv?&HxD;MPhL>a zDrpERu(Imh$+`uze|q!Tz0ST0wOx=#4w5rYQ2$S#c{sPEY=fQmMpl`F zHYn}a+UxSFkLLt)3P%ZR-d=`+~d|6U06LSVH(AR1FQKX&lcqaKeBUdN&9@KaYpGk@9U zho?V2>Rw7Mq$>V+G}2TPXsph7`lXnp9nj7h*>#G@{z0LJPpcexFu@Ly+>&OMqt~2d|cl4GzUtI;_-263*eN{^` zCw*dO=D-17Z$!mo)ymGtiLz>1#eCm3`{|LaKqM2VKavs3$Xxo!HGK~{rD)U!8R5vf z`T8jX?GgndD?x#Ks?lN(md+4zjGWR_n z5;?-;K!))FviPSro>#v976Z25CuUl)Xfz&;wnUqk{`lqc@$Z%#ab7Iil#I5-n;Vfw z{;P9#2?aa0hQZT*=8~#SANwJdg|Ld8*ub%-KeX1(yFGlyl&v=Cs>A~5I>G{GFH)z> zvi3WJ{0i07V9Px+w%il3?4pO?E<1KjKO~xK(Ib&B>iv7EY0IW$J8e|1&A*PObi-8xoy4?3K?awxa93t8w*0KEw#CWk$=Xe>n~hz>=p+d zJ#v$+yP)eJS_A&L4X3;ji5? zue7k6C~MNg8_L|p*7SMSQ5O+Eq`v=9H=^@;JHGncv|hTt2DgXM^$#9i1s%v5>|Jlu zy%6YyKraOTX$XA(N9L=)jh=nM>sC0!rR!R>q2E>eFFWNnW7xPfU5CHhQR@cwJt^m) zGhBH+sH*etxhQwo=wW*ui8}6g4z}H*r%s!7`AgqzdD2B*y8iLK*B191wB-Ruc1zd4 zdF83fMe}w!`)V&;AOFyefvmhSho0i4>r-C3Ki*j1|F}z|Cgq+JdA;$w4_n@QO1u75 ze1^vUfV`ckAmys!_O7J9QeSIp|>=C$zc-eB+J4%=kPhNC)lmvg6t zDOcXhbp4hKx=Adt_Yu#{UKsG|;s5Cw{%?Pu(Dhp{>`8|4|8`jPj;|L2y%6Yy07Kx* zU-PHx8!R~eF$E!EEU)8l#;>2{zx}|nD_;tQBWWM_@vj-L-dpg%m*GG_^zfkT(J7PW zKX&a__q~TJw-2fS%?2@k_qRn4KJ?Tc*F4~*>p#8mOx@xI`<`=Uw{-o@JFY4mIBflW z4)@aaXO7%q`zs&J88qCb>q*1>@`N2mUj9&^|8SSCH#gQ-p1*hC+|d+4t09YWXdxN_qaY@p3dwRu{8?MxZd^|LhZo+Z&? z%d6gahkff|$JWHS+)=NI#(OxfZlStzKh7}x{YMlWc&ba+ z@!_vC_Z)fRrDf}Gc5F$_=!_)j-yAET-+SNCBM6PN?d!9D`sSzCpE>@HC%dKV zkDhhp=7*m+aQ)3)y1s1Aj1R6l_28#IyQp8qOUrZqXbHi-zVN$GXTSaAIyb*WV!9)* zFMH?;6HfB~x|p)WGhJUhlpH^@;kXwjJT-JLVBEtC;?E6hhWFfsm)$gd&a`dTk8?O& z59iB99p_z30sZRoWp<&`&bC)}PU#n4eBDdeSCHtg!0kfUD=R#OR9E2X-dlSi&f?K01E0e&%fpuBWM0GH!7%>CK2tHQTp(Ox~4@>y)~rkLf7@0Wi6K;RD9_p8G}cP zybikF_`@d)-*|NEJ6|6VPMzI{T<4In70KOx|7+TW!fk}E_YcJ5wH4Q#c+ADGeAz8s zzhU1kj(_OY%%U=vuK)1D!_Dq4QGNg`EL zLOJi$H-70Ri_J!Zvi|)3^Ip2X=Jt)y^-rhNXc`h4ATLf$ z=9C3a6E{b6<fG1M z8b*bwn~g~mMI%~L)X$V@SP%pZ(`Q)$)dEa>8bG1>brfAy(Oc|TKpwY5G%L(EAWKCO znJ6_q5&#snn5kmB1~nCh;7}79)tBOiiN=w;3cvb%deT%4g13^PSw0I})rcD~upwKP z8q~F*t|Fj@TwVBeR3}ORLW5M{5QKjKfSu-suP9B8%k-sGzXdSyVFBVCZNq?McnPFX z^B`%!$QDbOHF0xETp5+;&kAYiIWU)LAzhZa_e|ySf#&Eim93D79Y+-Htf(^^>bM*h zUJJ0O2>8K5;t9g2QOSzdDwo}|YgoGL(<5W>+|pd8caW!y1}2VsLYJOis6JA!-IF)ga|f&b7nz>5y>H|`}L_zZg_ z{vwm8kP1MN?!*x3W_x{dHz`GlfEzc6{}uxf^G;xd>XnFruEOip1uQLE&O3_RY=O%K zh)4e78>k={*9xOlXjmb*Um#4a$tp+B9?{rFk1smXx-u!B2c8<_>{PYXTsg2uW zontRJwxo8g2<2n{YSPpbk2&?MPp1l9-zc*I!#HHS?Jjw3d`5P5`+9B|BY=mkOE6=(&>JJy_X65>IPcKZ}aLF~JgT@`V-HZaH0t&7&)0xu9 zfxN1G^5KWK-EjT1S+J9h)Q z?{N_xO*H@S-I3k}!1)qE)+w+NcuuGV(I(2gKm>&8f#43%WDlBid~ZzQrkeSH5n2HVB*nqbgu5&?Jj?PF>8Xj+xbQb7@=|l%eJZh(P8B)P$nO z@qRBpNv}`)6Sc)uoJbj%Zk19+y3|T?GKYO2?Svn|b6it_noi~sd5NZY0?chJX*9%* z2(l|B{lCToI|Q18mT`Vl$#f%lS!VU2S`c!1L0-%s`0>l+GJLJ*8h< z=$TjqE$AmUgh5PXBMW5JG|5Yr@ISaTHNZb&!zZ}Bl+<|T`Ia1)^zf(6!TW21Zx2)B zmJXJ}C5lAUd86~ebtQQoaovPREa-ZY==$QgGCCi0T_;+>1PNf+aINT#SU7g~T~5ntVws2-|$N$0L1|18E8y5Ef|Ve#!|#g(5>L{?6DH-Y11=ef{71iPE>pwQNMx2$zzLI=8Q={=mGzrG3!tMe*EYycTjX+#oSp- zW>4R6pF>sMU$=Z&@$k|0RTbYoeb1gZKc#2p`LlBk%~w~o{PQ#S-Q=d{edPm%t~bXM zv#vQdGZ}n9=Hf~+3U}^JLV5UArCO>H5EhdKYjagqb|Jge4o#gVwS<} z3PNr67QTvT_wffG-nyc6y>H&iCxq;o1<)aM)rwDJl(2+>BPuKH6*A-AUEt5OyrR!kbBShDA60aeTK^E8b2>1fbHdj>Y!&un`!Z!N^ziD{ zNY_PbZ$sBR8JXP$W>~wLOy=skn{WR8jn`g#_^~JEAAMbPoh>BJEzr`CeZ$e}`rC#M zIs@!7Z0&($tm?)S{TW$#>uqh+EHmq>jQZ;OnSU8EayvIu6fbTWsoi$o=GGf7scmSk zZ;n3v`j-{;(PcBIpcg~OZ48wgGKFK0PM`F>FAy9ucEi8F|7zI!n*z&Cp73QTBdcie z@aDSOY2SW2Xu~a+PXAjE1bo3Ta?Zf}T@M7o1mf-4Lq_U31-{%uy`Z#m!bgbBE4tu5 zB%%XdZ%HI#_ne2;nohqXsr#XY0$mTy_;ui87ae`r!H56rh_;@_VA;wUu5+>BYAQIUi6+nvMwQagX`wA=AraUY4YTo1NRU;o|4e|b` z@1j@}oQe;``KpAq&#O?*&R2#7)8+YOi%Cc9e~EV%wP?F-E37OUV?~uHEi-gwdE9~= zoEK1w0$KnR0z{CMZuI&F%(?VX=(_Wl#bf7aL%D6b?v9bW;_ecn>n8FHd+0g_OztN_ z*9G4Y5)+Y~K@rU{$}5=p3pWe1F)K(~Bo8nVe`yf8=~%hO)KG9H~{a#;}Qik1YFQUe1M(+bba4B%EJSa zBLc}Jwy0_9mVq;oGNK8iC22;JfHP1zm(N3=MP|oRCe|A?u?z7#CO{Ear#?>Tbr9MpMed zv*>=ruM>-)sx7A4kOU7zB_nv@ArA)84=i(l8FU?x1XDmf0B&H3ja24}_EJOWtLDIi z{lSs>P~TZ-j15Q9!*?LB<2fS*+GgwF7kT7$!t9FmeWUSWwfVweK$W%Uyp%bS7KBB6 zQMcPG+D%Z@@KaJ`8hK=omKm+Z% z)6skqNT?a#li6FYpN)${3TN`Y;&Zr2R zB5k=4c^z9+b~IJ>7VW>_09)B_+ros>llq3yP>16|(>x1g?_k{t-G<(>kxSZT1%tyh zh{(z-=oP^ls|v}{gO*B zTekUrHG7^E_WS(FSa{mc!RKyPQ%Sw3%&J;y)>oq_s@Yf~}=<|kcvm1s3``YQH%Ydn>TFiHv`Y-^Mc|TA1_Qgj}zW2E<^zavLHDdouZdqri zy~_Nt5`SXOvbsx;I`qhAK39Tapn{NQ{Qmwcf4=d|d3W6X!C#9T>#Cx)Rh8d=8n0Zc zMKV+M)p}l$TGS_1u~5m%OaAN9=zz78z5s}N<_Axde)+=HS6#93rkl2hgHs>2?fP-Q zGvm18@_G*;-q~%mUWHz=`GHh_AR%PACwO>%l^%EY40u85VFztod?Yii) ze-0rR+HG$_{%lioc@I-_x?+FDXD-YqmK8x$E?sx9B3;M!ZcW#n?#d28gG5|G*C9$0 zH#0wKRV1u+vot8Hfyh(XbfkJFt+O=%7kX+lR;$asZEfTnv8-Fj+4Z%gf(Kz zmP7X&Gq=wNqf2xh!^sMOEmKJo+L*z4c(F z`9igNWm)2YoEZA!S5TnLXil09F{3d7Ei`dj62TIH1AzwQ%jDc5^*g$YiI9nbObmJ% z(zTqB4p!5o&-50Tu0!+>>EJcNU--g4OcNn}`~%HAkS~NhNdJvV=q(J8cIfV)O$CRF zAwyn=ZXdmex}rKkyB%UZrM1#@kb4pY;Nn2Wb(^jOOVijPFN%&=RWGQ>+$e19m8Yjv zpQ(Y5a5Sy51W8HAppykn-DW*J?CTC)Uz}h)d{Bq(A2*@pSE^HUW9H3JVPc2z3KnB9 z7J6&C-gdu%u6KH*6~vxfI#A0>6RjuRdBPTdc}NX$^}|Z-i3UAiQ_juo*vj6fGgx5f z)cYSAtgjb_9v*bv1`X@mi6tkpN&4 zmq~VUkA|GPB|2&%y$=1un6VaEp6(cqyvJD74`!AMZ`cby|>X3{|vI! zImu=$CylN&U3aF=rRWZBb0)Qm72=9OoiCy^_Uil|?=Psfb=5W3O`b8ss-vVX=76=- z0c&a1ORdGTvyQ(yXWSM6XyBXc7F>6H?wC!6AAJF&4uGg`>MuXve9kVnznEX%_uM`e zaGk?(!Ywata?H6x*Nv9uTMyXsnh$;o`a$uP0$<{<&)zC4DJ)%QGsa`85p6W4jNf+a z&0vNDVv#N-fd@6;SM^yNW;W;hQi(*e&hV8$AE+qPTKo?@{!+0&mAC5=-^O!l;zs>n zKh{5St(9G1l@B)OPt_K14Y2%@A$>}3y5Tz166+8E9ny8-v*civZCkpoAAHhY~vssrBAsoIOmk{7G&>mo@ zsWD}f3}uIGqDUc4%krtYel=5vQy3{D{%SI3x4@uF4kIN<070&KM9YDV-~;F^N(N$j z8e5@w#-6sN*v7Dqyl&g5nIi$^_iNVXS=RSWN|9gLFhUM_)JaQiNva^L@Kys+WCJ!q z6fdL>*p5B4@N9Mw-D3|h+ygEb=m7O-ZBJP8b?IIN@F#K$q8G``-*_o!V~I?Iis-5?U%(RP>L zgp$gfks~CFyz;sZPKJ<36v7k8nzj4o(bw_n@UZ31Q=K<0?iVtFD~Uzjk)|=BXIk(p zD;zsL9gwzKBi{Am6s>S0HgoxL02Hs72e+b$OVT)i@!qPiZD76bIDOpc=wBNyq0%>Y}BvF$rTOnI6}8 z))xB;`f_QsyVcTKd%-*IsMzMZnY1)Q_dLE zblsNMJ#<}E^N_gU-WAZy8y8!P;?`pW6RMF)7zPyP5Y{1vYbJU5fenZLfIXX3&}RCD z?CucPS#)FVEUC~za+%PA0Q;fkX9X<#qLUB?4SY)yOam=J5dKKekK1qqsBFU0v0|Z$ zfHD9sc$G1D&Kp71C?x-U1*&*N7Qk8xK^Z`RnW+}yKS@+%L`Oglx`&ss5tn%;Cd07k zlfxkSZ6PZKCPTfhGNaUI9bTwGUWc|ox@SX<`3`q8K+7y^hU9PdhmW$~9Qnhu-<(a? z73;DE$xSnrLkq~3L0W0i^b$;L^RPpt+LBW8L8GI465BE5a0!${rrPXeA{)%{t;yP(xtpErXt~h@eeD9nEhqQ zio6b8y-U}zNQ5e2iFl;ybpKpP5#-X^v`)!t+O3Thgo3Z#*WntId)~XP#ou&`own^D z6#MDUf!O&kZrknYx-bk~8)?PMuj^ywI1Uu-zUQ9%CjK-jxz`DS?G6a|{k|o08}B+h zJZx;Aqc4nPW)HOLFDk1Fhl1f?01#}8LAg)Y+;Gp@C*814M$^1_M*Xj!?Yre@Z&`HK zli0oEO_u&D23V0F$dc0C7+RvSNI103l)~zymH6>9|LgY*@89SAbIuwtXi(R{apiS_ zwh#s(HKNpk`w=OG+RE!IZ#eI6vTS5Ps%)_dIjS(=Oz3if0U_1F4klZ(;u(k-f@SVwt+g}AJGCE zjII`iG$3-~?i^X1h151@m(sZ{wX*}ceUezupPdI`$HnPwmw6m{}4Jq}d#>g2p`P)^LoKu^h6VNmKdRRw98F`+AP7t5L(h#UKT_lwVg`6=7p%KY4 z1BqqUlg$Bek#i#LzX#`<_sEk*Hd@A(z06FYUSlbvHbb#!x zOwWQGOF;u(D5Yr)9wH4$lr`j6r+P+_Atc(ySRAh0*Pi1CEN_ zJ}`h*OUMx_x^98!C`;{bKqjvNn+%9bT+kOU5Zk4O5xk={5wJRvH0fPPw?wKV@M?mK zJ3Hx7J~%wDl@1^cU(XzS!Q6w-D=VaXK-RYB4o+*ecsd_oC(EUk-lE$n?(l|!g2HRB zz2?5V?;JVhOYNe)k`vz7%LbI(@Ukx$+~()UUl>+#%UbdLoGcJ^2D05o+IGShMvodk zy#CL%!Y#YxRvx_Fx?ZC0OpUz_+kEBFB6~q&wFtG6tu6W|p%T#3%coE%gb&BheN($^ z|9+o6al@q-+;{KY-4b9Q%hEsIFwZHd1J+GL)o zgL`e zY;H3hmREQN!KIwVIN(*di;^x~{ixoW9HS2)MQ|j<3F?kGZ17}IdQ9to03PWkC%(iLlZ1_RNI8x#s?_m(I-28*5fyJHBy)t%hB-cJko~^;K01k9cwN zNw3cQw9!~r(XLEL>VhR4~A8YR+>X^=bV5gw6HQ~XL^>pV?f0*hZ+^Us!P`H8=R zwBtIaBj_V$0(1fw(GpX7GVjT4%oFhD_v})hT;XNy$mtOQb5@+Zo%p)lB@c=8;&WFu zCriqME*(TBB&x}WGqBcWrhez!7A=+BW5FFsa>9Hk+YpP1I$D$Vn@yJ!qXv?CIJK>#(xeGyR;)`N<`lsCU8(dXZfx0dm5t#kAl=bd~6*l~*OX?MtakZ?gDvHkbi zb=@JQP`vSmRbsLD%5{m?j4idhY#5rN(yz#98;#xg%=_EzdDOGdymIAPr#$n_QyXlA zG_Nag*t0D=)}8K7Xc}(l(au?c_qV9+jIytCZ6HY zI+0w(wnk_c9qw?YyWj0P!rwWm_CrsuMp!ce`fkN;4|}DBDTe_V3crjMqW4aCsZK+zU>bfi+Fny+~L(*+zk@R>@SU0Wbkug-|> zSjzZm){?7keR!iC4xRe*FBe{N*;7wHwaMn2cRQ#KZ?G*x4y#A9isR1N{{A&f*X4bL z#n=fB2j$;M5fX%Qq$mKrG#MIk2WYwYBaqw!Y|dqIJ7Bj~4kZ77PYHaH4R~1!!aDR5 zG+qvUu{UI^uC-e@?4erY&G@n z+h%>t^zeO^zMZq}fH!mxy7W)h_OF*kULi7rl;i>a;nD)1aP!8Gjqvm5jx-o#Qo*el zAYK;;hWcp9sswEEmKIPdmnVz+p)iwGx4bEl7wR*7*l|sZUJML6BeP|Betua^!{U@x zJ%7owi;!Ii)&>`zVV z{Embo=^?2)7<3yJSO|D~w#Ad6qoWruGu0BGQtSzNmv&a;c)fJX4KVW(UoQ?7Y)gOH z5h5)ZbPlyP%dcDT+T`Bh47$Dlzy1d1oQP_SS!bQwZ@u~DmtQK)FTCyC^RBq<@i*T7 z7_xF_5O5`I*x*+$l$u+jZ@v4;2`61}(y?bGt-zB{KY8nIx2!X6-0FQx7p<*Xzd6b6 zM6rGBca6}XrX*6Gkm9>6q?G`HXiZ3N-<{%}N9(po!PmtN%D!?L=)@j(b{lNN;aW2M>^3Np5X0`r?%k zZ6Pn>Nlq4Ls}UW(pPZz^O6su+HP}HQa#bhDC@#u&8%TtUHDsZY#2{oc7n>{32*TX`hvMkCw+PwS?p&fiSwT9k>FZK(AR2=MChjKTi8~`{VbBh=C6lYwgO>WQ z%SrZeQlYj-0F|b4d4qq_NCdBwg_==?bl={9BJ7G7&A}0zO$>dba6#%QmMf=ilFdZ> zkM|(0e`c;I0|Y^rce?b=c8uU05b{2k%!@JAbMVhDPH8^?=L+vu?{h9|;<=hePIikl zo;ELR^9m=O^Qy2q_8U5Rk*l@od~jX;B7!pQH79a0uOOxkbRQcc#T*Hg zLNg9RlPjGf}4$YE}l49<->lV(R3W_D+MZ z#!#Q{pBx!ceaLo1dCZV-lt?jzQA7*^;Gq4K^MogXu%Z|sEGwcK1AilZvv+`*n)S;% zSTQ(3jU>pBzS1+$(SwFd${L;*5Co8OPy)KQsPHttPM_+rlNaYJ`lIP1|!>42HFqjwxM#*g?h@-1&+ zggYR^2ND?3VKT6eTBuxKuI`_&|I%zOiksCb^Y<3z(ekEe<3?R91&AS+YRWL+ zpI;uL%EyQ@hn5JI^=v;;ZuGk@35Po}VNgIC=a|Eq#45xN!4*sn*}{2~B1QuPL8=)f zkjIq4*BwJ)cRWht16aW)A6x_u5HCrF6ZX+PpkXnj2qhB$dHGRryrPjAp0mW`EdUo0 z4P-zi^2UDCw$x7h_nxZYqNILHSu*7dqEe_ycL}RQ4~Z0^uZ98Yj~V+y z0SzXZYv*adCA2HDNvY=^h-#ab(&~|R+fwJI)UC73`vvEU7QH89xqU#*{Xw!9C z(TsS+S<<#rFqNlKvp>9#^3mGf@8VV>be(Qzz3gIwF_1aKVg&TlI zfXkpqB%+vzXGX$!tT~D-a8&OCmUYb!w|P*@1iRW<$wUg=JkVeZGIf|nBt%a2(P%U$ z5~@pBwT&&IF!s8dine5BW?-cxVzEd@g#DY;g5t95+&tP;yc#9Q7JXo2pYRE^aD?K? z6tRNPrt3oWg|4%S$Nr4(;@*KF0GSY7=cqBF>mPl1%k?XgAASX=$#Xk<$syJ#7xqG+ zX>zu*X0}kE7ksSH6^dDh=~&FmvO~Od-TUI6Zl1QC6)`$}xNF;?-%Qs%E57R&wPnU_ zM;*)z8{X`nnX$4b5(7ta5=ftYLTY}9lAo|6B~v>Nj|RyB-Y26hOFbNnDF5I;BST3{ zZBFez%T^QZn3){pH%Eu8ODck|4@?&MwNMb@1Uec2c!KX-V!-SE!ahDw0`vjI14xtd z+A&cFMt^3xapO|2;!wH1AK~$R^NEl%{h+^u_+;_PW0c*6i8>Pm+DNny&6=e3ccV2h zOtoGBNyIo%N;S@!hGjqsVL=gA?MXp}hy@;a@2%2C6@7MKHC zpqL?AGrYlZLJz<1{K!sO=9#6S!YdugDlu@ocTaoo;Fo7mfB`dtPOscu zf=7`I=k;p%W@`O{>Ji22t_8$49WW(zXggymsITEdp@uRF{Qh z5(Bwo@h_Uq^iv*a%p5s)5l>IrEZhkq1)+rub``d)>;IXu%k!yM&@78_Z(4+{w-Ue&ZNTa-32-cr!Kc{p|T^5Dfq z$_pI>gS^IPJV`s9+9qyns&h#Sc`m{2v9(2Nu$$TsjE9ai=$ zusdVpM$w}>Hxiv;;>RxWG#nh{)o39;n}&wC2HKgP;d}K?T}`hZ-gA?(5q`y=ms46> zA1{j(AT~^=q{4+kwKS~ukEomGsT<{L!!wA~fvBIEZ)`o&I%vN7c6BOCHT$Eu4AQ^A z858mJFc9zzum>WIz%Ho36M-MZBOPcG`;g4uU1C~?@nhEn7Gb@&^W;)ZxwIrJR87>0 z4iApbfCFH!1Nzkkk*paJ7TX`_KeEcdF)%hQuI@ZTf47ESMCx>*CpOnFDi}$wXG_?E zBU~G>w9ETs?^zOY4g?;QdV*d`VywV#`m-Xg%GE2Do`HvLQ4KI^z)~zHf+A31(CAvji*|CP)Et}eoQ~FT)B9Fc6=Y@fMRQGRyXt5)$;4X zZ?tSYw~0DR#E{-&wLpNjOel_<(>iHkN1^J?@# z#261>D1IIyUemLjaDq=F;mG&|GVgJV@#6lDq2g{JcR)QDS*HM&XS-O2Yck&)C!*0A zFdzwaDQj6$DTj>{u|P0n`lytr2cPRL`haPFUxrJWaQQks~yA0HSW+X!p*> zcZ5m#b+W>QHDjSjSrVsIo}f}Wlm(4gFLBd__$4~bLZ7l-7EnJaT{zlY+=p$t{=ib> zoqB!qa57J~t|@4SFT$ZqGNYE-C#Y9}H6y11MsXAbuS;+jsJ?^v9J8M*q<1KH5?aRARf^<u#)`|H=bl5-6OF8vLR*o0y%l-r;XUf`mR%z4{Fsf>ecU?)P4c=hJNbqdFnp- z>N#cVaV6>&S>%4fW+KU8tBlK3#@8v=Er9DK^de+kf>s7aJ5XCw^j?gGDVaYW84y(d zY*N39>zf74zmn<~3H_#i78EfQnaMsmPPaS8lLAcvv*2(^yX2ZNd12VV=gH&yMLNP? zk@N*3&M(p)v1N9cK~Ly>PwwdikJ~`!{;bg1mKW`mPW*rU;8Htxh_33ELCibUqZ(=7 zPg;ts@Rk3BfY@YD_3ifn4GgBliW?n#};cNfIt~8LJfhKBy3Vu zQkE)+;esKNQI1rbWM8IdIrf;>kCY-1Vcn6}o!*GCmN$`@nuY4vNXYr@p*ynP_#XZ% zQ|UCqraRu4HlwM|o;CBkZ~mEla{v=guCj&b?P>^BraB~y!dWCRQHcfayO{UvPN$g} zFY~lgt1eB~y&K;1E{Cq$xXSHA`fc8==vgnar}+>(#j{1DA!{OE$IJnzV{uGxA<8#6 z1NA`3lK^O&vyd{1=j>XXzRJcVLf4u0OQ+0}W+ulsYWJ75oW3+7Z$zDyEwikXOVkk& z!j)KpFhzsJUb;y6rb&H!aPqx6^_4mupvKLpteUTz^#--Je#EFsX;b3bZrR3bbwt|V z9!5kR8e?AHOc&TWNIa@!gcP2@PIR>peudzhCaeMoz?;`%PH8enWFUBte8DhY2v|rE zhUCetrRQZQ)*)H9?e*}oUU|*(0_D&?J4?KnJe5!YB~7XJM#wb2YOZ! zv-U<=L$;62w+3`&2L9?+DvZKjDe|5JVSwllr8p=wm@6>a*wqjOVcSM;(KpVtLvk=o zaTLPD%nD_e#eGo4qplifJHdvBYK}@DvELjD#4z?6qhpmkoMaltX%MhmxFDLkpQs8NqyHD`p@ek=*|aa0I(D< zI2$?m{G|K?e5#_UjVGID6j}#onG0je+WCPRXgjYfR8x`I@U!%@uwR0LUXmq-Eyh5SCa*8oeDMl>L|#)Q#` zNE^!py5q{r2qvb+HKdx9q~E+Wnf+$&g-1u2)^WhZ8s~J8_QLH<4=)co?&B=PS(c>1 zkVQzDuQa8NeSJ;p;c4p;833<@bYlS1;4my4KztO>S(mbtf29{sEBfmgs8?l8J5AG` zv_CuVaF&4lYp)5HPP^3F7E?U*+r7dcI7^A`(o9A{j{c$q_#EU7J1#zhy1-K!9pHQ~ zWD_M~$#9SWWftH?drW^N)}PCKSs?1@_@i|p7fR0!Q|}w<8!Qb3HUSZ;eN6Cfo6Ipl25sX0Lf|j9Y<62(QUgb+0 zTp>V{k|%HwU=;S05=>&Rd{DW*a%{cvFeWb_*LY{$Dmt)aq2%@xp8 z8?d<55fDX-fP;ZAq2Xjl7dpeJnf|iHn))ET1xsr-mxC_grP5V$kR*(O&;VcrLPE4f zx%WhOnGgu4LYvl>_vov@&{pI+i_+HdaGo6DY*?a@C`G!tf4~|VQa-6QVbM?HI9scM zERDn;pr`jOGxy0;o~gkQtXpfeqvsmnASD4Xca6q#*+O%(DatB@dH z)u*b|sw6vzc=n6D8mGibGW*Th5D@pT>hn@$M|`tRKd(%AXSn+4An-uM6as=^0f{@| zNyim9%%TcL1m+dR3MppDGEvDgfb7MVwLwIEVuSv;2&CN?u z>ybtTzmNbs6Aa8&9_*XCu{8Dl@Z=U5T$TVlK*PV6Yq}65|5@7Q!6a**=>3nqfypCZ;fP1QOYHzWL8r0@Mca>qHnr{VEGz{n*T`bcsE-#F?;2RIk)?xpTEahs_qZu$ zUTtL`wWTA+~T@C?=qsg~EuQN}aMSLgXwf>CS)AYt# z+FEcaCQ2-2v?&8Q3dCJsn%pE}%uHy@W2tB?2^nkSV6se2#gnOqXrexv%rcYPhGH+2 zHB21TQ0BLG&Ng8e7bT)7;bqN8o04-5C+b)MHPeP+W0l=czKvbaXii0^Z_8FT3F(54 zcRGQ>F`zXu7>jKTAY!;#cUCBag4Vl(6XzDEt}RZUotMba)r6);xZEwoU*v2@Wmtp* zFeq)k71d0WST$}|Kut@J6B@cppV?vi5ZWd*xD{*SxdDTvGz%BVV=DyYznaT@w+HY~v zhYKX268N~@Xn|EiSLboyI2_$>U1ELHXiXZcpHi&CYO~8s{p-fI7{b}10v?8`rM^(3 zZ7@~ecA9?6QVp6R#2l_0QOko=44e5^3W6Y=4c@{hpdW*@#AhsS#FMCLYbFt}0Hr55 zNNDn+soIuQJYjrQZ@pco&Wu4n0egWxBjPK7qa>nimv0qPi!zD5M=u0gL7+qNLH4!# zle@&*h#NxbMJ*%ukbT|BSS30DVYmfVioHzsR}T*_N9gXT9zNUQZPH+89ayt;9omcr z)X+?tVO7baN|_|yk&LU5_Z$cKG9?i%OHTJ#J(OQ`IwG)ieAvIcTvu8~7g@^|xTL3P z#XEnM9JI7_Y_qiOImH>m;Zp9voQ|f8}&&8qAfI0px1xJ^*>|!(FMq1#{n5c7?`fh(AaLn4)AsfcD$Py5eQ!F ziY7_a@wJ|7lEQ9EtgSO|EFs(Ma1SxB&0ouo63)gsg>^^lKG?!{>(tB3l7J_y0a!ds zOznc2jNO;!(6A+AN$Jblu z%`?8Jw~m{cdTZ^#!VTfTtG-xe{o0H-Y6uya7gx8;v@TerPi(g7x2-~yg+cZ*I+q*T zA@h8%)oM=Pt@hFvx7{pshPHpyq6aROm%!rrXL_qZ*$0YK|T!HsfiVJE?`gXns` zc-o*-LKTi2*dg${qw76aGPKc1@YlFy!66)U2o_41nPHXW@FDtuh#-7s*Mrs_lXkl1 zMpkegwc*avPs_WAmdXFlXZHc`hmKx~Zi=Tgt9rM zF}}fU2B9U70p+=&`h?Lwgs2=aL-`}B&P%8lmYPpix=f6nzC~<-^ApN*HQFAt^z|aj z3xn06A#H;U?Ww`q9=RGS)z-$XY7p$0xunIM-)zpK(~@&Rv$ZH{qSjwU%vv6`mdDJh zm;pzPh6M6cQ9VG=e#q{(R_oK^%A11{Clwm^^i6G_MLDUMX%=3`nT@pEWnc3^txJs1 zb0p?L4QbtrgN!`5%3U@+qdY5!ul{##_o8`s?~B=3*f)2xbOsYaU(8Fh$ib)BRRyo6 zQ5n-$xRZ+1P391O-WsH~rdwNcb^f-v!~Sg9zhCf8Ey^q^kYY^aT21k1R8 zV@_>0cA2gmHb=i^sc&&go0-t-ku=qylq|42B3KjX8)7<0 zFFB~gW!@JUpUOJ1x?tx;xdVdgGlNY^#{&0k(zM&kCVQC9Ofqm-%I3)Mr{B=paohMLST=c}hEv zHaXQ2;SF(L04e}KN1?5(DB$|Mj*BD*yo!sQ?QWA+u%%aHre=c4yLOQ^3qk$NMamiz zzcBBoj0k^=m$ zEj18rfkt3eLAr&r=4+$=(l?o+?>AFFZjQFuG~a%+eLprSH%p(gHyvJRDWGuk$Kt)gzR5P3#UE)vVUkRFuRn(*{cLXk=bk{%TdUz z3$i~rGNbbjL1;9?Tnx!prL^Nyoi}xX*Ii7}lY2Trb3FQXjGl|UdhlTt@aI4Fs8@h; z$sCh3XEyBVV=U6}q8*-;_t{jHSYScv z$RSGkQ#8ukcCj^P&q^TNa^A%gHQ!q1Hft1?MN){*uL71j~3 zjsq1H@mD;SgfHuO$=keEJ88b>3oYG$cb#}%)#|OCT<7P~>{wc)ayTh=GnUMLpmTr# zilo8p3f5&_OhG=Z4Rf?`0B({JxQ5K((&9v@`WhFv)$pbq-o9^}mR ze4y7aRi>_A>N~Q~e6~uvsjsnbu7xCPhs+_nc7LC_fKnzXhh|1E&#Q-)nCq>fc8d@! zd2mWK&H%wIkzC-<-25LEGElk=6ty-2FugpU2J1gE<5Y< zBP5cp*C$PQ4~qX0Y&=*WF*NP6(qu4z+Z2N`=3=lZN^e6USSZa- zJ6wbS>~@r3rzt~n0t$VB&jC~;6xfzWH44>c(?Wbd;u|?-tnK&?euo@$ID>%=w)B#= z#S?o^*t0_|bE#Q+@U?2?jtc#i0q7c7WUbL8_+zqA)cLC>^Ywaa>$H4xtZMbi^dVsd z)&oc{WhFsjOhpW`j8X)?Ui|AD) zl#GEPV&eo^c)UoQXaUB^X;2A+ZLgm4#(JohgbHw9yGm1Zt)-wfxWXEJhG_}4w)2|tn8jJ zB4u8iS$6hlv6|v3paopTRz>0|vx|x#&0(1CvJn+ zpOg{eP2nWfakK~Y2vZ025Uen^lBgDCpfYw>B17XrpYp{=AKuubd~+`3-0Ab;AzsU9 zAOE21*t+C~#VLO9THq0Qza!6D1CXeu6$cfRGQ+kPO(}04!c!gXmesvhI^<5A?c4p! zI2Sh^V#joeyaOBw4g=bw7zs{Q2w4-3Y@jqie(U5wR7U)RZ3q>U44*8U@yZjr&e^Jo zNIYGm+_scn_|v!mqSW@DoR}Q7m+gVMRFC@XqST2C1AoV~@q?T5DDO<_`>3x-ORnQj z(0WZ-(-P!727kTVn(`nC&P@6)>7(smL~9MrvI3c1msycZ3UFR}wtpPUHLYZLPRWGP zfwp1OAnP3Jq}4$6nzZ05RUV>L1U6mgJh%>~Ow)CjbL)_<+k~7qtrOwKWZnto2Wi#goFB;NImJg>hYR3j$Oy$WBd zZPbo5Uj`dc+#0)>gi99caLGKU0KRfsy+L9KObd~i~;N*Df6A!1flDKaZuid zG!Pu9Lj<17&*QILk#GhMqaf!4VjOM3$U><4#S1BI!<_?+0RgZ_go-=bi4L}wj`ry2 zpdB|_y{&4{rt4|S-LX#7ouQugp-o3u^06Kb_kZFhmp`-B*SwZox=z1}`HxhPBAGa= z09R3(7=A^ZM~-4EQ2qkHGnOE{hqX$HC{UxsRI#T(*U7Wn4~c~Yq~^E*cW1~j&F~yi zwSq{%@AoHFAM(iO1Q3z~i6Vt~T5tfM(0F@5)j|;ADaJ`+hHMf^{yknM-c~`dOE3A> z+djf9_p<`iAvj{U1;r%tFU~>2-?gLbA)oSjYr5W@eZ9-2BX6SWUJ{4L@53-4v%&`+ zs2{urf}2t00z#@(@)nKjDv04LxR%qRq(|G<0|vXR*Q6OIx=V1DxP=oUqa1UD%gTam ze{Iu&*6ni9PihX+1~j@jrQF3t{nCC~2~~(u$ZVk~2jb2SC|(d^6;k}%xKH9 zpWKb$v?2;&iPCL*iY7x20nRza=7$YrBS1kM6t;njIQ;x!51 zj^Yqbt;jj?+57dHa^=u`0@j{6O1@8dVxU@@;TxRoTPxSMc8+gwmTyFkZnc!K_U^(6O4eJ8{6pf+Tcl9dA8qdJAF=fbiGRw zNZKtnN039T6CjAO30+5`a=aBT(@3w4L&Bw8U&oc3#edJIFf^`yVOJ=xMg9U^DW<9$ z-5(P6&AM3?NmsHb+6&Mg z1+7}{Eu65p7K^QsPH!W*(Pk-oGJ1EZr-^!N>Q3JZe9D6ZwPyw+VK`J8=5NjB(16+B zPa6;f3<@-&_mm`=8W9sXb(K|kU}wNX1Gr@5*61@AU#Fphu2U`=PVWp*&rWEYM$9o` z^H;!`jjCeSB;w7JixZ<3rGl6bC zB2l$C*l&h5D!ae2Y&&uuq??@#6L`Ems_l-hcej-6#JNs=Yk>YlyI?r_{FxG~Zm(g7`NSCk1JT*bZ$oBH6HN!3F@`-(1*m zOJU>Ggzxhv9by~=sSs6qW&Vx?ZZeusm^jwx3QmI%PB=+WjWQ?5cm>;7;oGqdw$4&( zljdpj%zG-Vr)uB{PmbMODv+#VQV-r;WL1NfM^ z61IwF1}%c13P{{!NuBX5 zF;i0gW)(Hz-F11j{qCySye)bpO8H%U2Jj#34oi|2q$R|xLmY&PrmH9jmpfCHIdNs| zpXMD)t#8NZ`xQ`h7SVcD&7-8O>S6ij#u+vOM0K)#=4V`75!o#x3KMO9hn7e*%yi=v#7m5ih4pkgNBWClKfm`hf)P`nnir0J7h;w}>5 zR&8#R6skfw*v}tsQ&h)GSk3lFt5zK`zoS`^_U*qeKP#PZo?%*$(~xBrrnDS*gDV

z62J%vU#?qQPc#eP8&9hz~!xI7vE$ z)wWxE8~Wda0PRxNuTxD+4id4qiz8l3tqqpgZEhZ)i9$0;W@k?#Nx)`MM{&JPdy@jU zz;_2yIA>ap;+q zU3<#$KkJAf{Ch9VHt=)4k^>qEVN?XY&LEcp3>=0akzXGT z`I;wnM%4Va!P-7YeX&NnYKblSiP8m*_XP@~yv(|oflS4iSO{?N_&6!MQC@d&cC67* zPgoeZdV#smbnB&xWFnDJj0B2{LdFv>Fs^3U2CK@~*2JC`s2E%*Awjc&gx>Hcw+n>Y z!|RX%>UQMrn{0c4^I{?J_OB#NgI1x$z$r!MB_*jx`o;$M4ffKv1L2$!jkevJ$QWC6 z?Hs*qT4OIo+IbYjMw)qORiK=wv&GbB$MqQrt=O-v6V|51)W?=pQF8MU!SO*M(rF(HqRte!YqM$)_nEUB6WBO+%wnK zW6s7-#KGVaZ#5@lv75KpjMAx_~1WvN>xxtf+Fey&5 z6LTAPtSzrkJKeFGqiM1=wxj(vu5~nV9b%HsHRA2{`a+^SIA4N}IOQkBtBA)OPM`)P zwF1-tAltc`UoJ*Uk#2ByBI~X66#r8XrY$D6vIVRkdlgWS8)hLFu7Z9DMqJWHFnTA4 z#5LZqm>#=hpniNQo2;F={<_XMVutxzjXEG;Rgy2fQtr2vOr#7?7YVQ-Dsz7 zVCxjkJk-1mNz}b2D}z0<4#vkz#J0_MkGI_g5IY)AZI@p0zEkw@B^%V=WPdunhG=cY82ma?CL( z&lAw^?yvsVtnNNd`LdCM*V&Fvw3>p^xh5Nd91eHP@?+ETN_HY0WQE%co#cMe-n+me z-#tf;m(AoHvPfKLrq>L+&e8RktEn6RDk5ifI+-35o+50;CpI0Ig{7jdJO!=THdi+z zR|(3bvw_5qrGj*`oH>B_a`whR(ikeG^HQa8+8hhjhVJig{yNHhe2{r=iE&nmadByC z?_3HIs99?Mak!$t~kjJGhHrZodS!VE`+UULS`S*u_2hF56 z6Mf=6M|+3&Ak~DVFc~d7pyEVeDmIP;pioePhU`V9oz=R&TULC zA&}Soh-HI$$uN*x30yU91K~%xVK}2ehF~6?+kw0;xt~3uRI^ zO#9S92KJqz8e~@<}29g zA2L3S7dR2w&|r8*1yxq;5T1qj-jh+@*w6RvXy2}=yyk#I;CXzRZ--pKWLesBV(7lu@vSb2czKs7nOblIbYHAiK(oRHOgOjgV3+0DC0qObO; z-zO{nYm0i=T;I;q^*3wG+GHxrN`=yS>${l>ndm4o(i`Oej8)!~p{<7b<=22sL}b)F z7$LYtcyC~7;RM*hgM-A12#7TsVnZ;fTpmPZd;;U-Pf)IElb6<*@MQDWt}B;dyBDm9$09%i0iYK_idO9#tA#ObidAmbJL6)v9Y zaMA@qx&BR}wj}N4YFHw@P5kddfQ8ylhi}(<;oq^;#CKH=(QLJieiRpa-r7KM;<&@H ztmGeuwJP@`rWBh6M`IEyOllf@0CcpH5+jWbT5nQsF9{R5Av_-bo9d?w%zA-4Mbg)Y5;g?||q?_z3Fvh@t7_M#Y7@M}k#q5rZsJV!)=1QrOF7i@#5yo1erHMZkAoX8D~f$xuk1J5KYUu?qD7GW+H4C)2`-Kwq7dh}CHw>9 zdZTF}bpuu~i>YZzv}4E36`5UE;A{PmtsYrBr2HMDY2d0f`3OXXgRtD z4u+L-VigxvwoN-Rt^5WXLC9zOdCnv!PvJJ^snbDhqT&OGVK>_f_OASz{@@7zD)O-p z3@K|P_<qx+5(QE-BHzyK zi;Op_&FdCgM;0l=!W?curbEfPAer^xTtFo+#qome9vmjXz78yN*ph@;6I~rCsY#_7 z+my2+OQiSSUI?^?fY222TE(KWU2Pa$lcC3{tVld1*{z6R#Zr{#13D^v#j1BhmfNt8nu62O71{ns#9KgS&NwQEz*%~62 z%f7JXc$@RE1L3`RTAC6~K!>EM8+qN9R9HrFSQ`i3JHkFJwNkYcwLl>-W-V@ol=k0@D2z(ntOSc0ZYam{%ma=vA%53 zm^X(GoOTf?IxO7SmTc>xrOxpxbdZsl>nTck8}fc*mzFt6{qXtz^GmFM6-x3~(zL@h zCdM2UMu#aQ<$>!TtoMTQJ*HY@aKM!slJw$A2KNwx-^%@Q0%!-$9-;~j7@S(gpZ_qaa@SRLT< z1H!hEhEZrg-u+3f^=X}T%|fNou+A*C6RFBLsBiX++X=Lob0X`ejkScpI}DKvA>JwO zA!~m1AL)(kEGJn->7C}7U>&ZtRiD~)sC^gh_Pti7H8PIX51Iem7G1g}o6)9cf;XLs zl{L)2@(#owo@mx!aSmZlw<|cdh(XIqm zL_6RTa6jaA&Us8^g0tHR0hdsA`)~*13d=T4cGjf3ZDrBARqYkD1|w=ZC7vS z&T=<&U36=}caXeE*YBtf$kGYpx<>If=x$Tes){RBDbiXL1t6@GE;9DsC! zWBCaRz{TB)vuk=eiZJ1&WCUDC_>j58z(wmTW1)%Xxfj_BzoH5_(&b|8$g7&|Cvz_< zw8GB|Y0fBG+D-y0LJS8=d2oSzM6;rvl@md0FH|J|Y)ED(sY{C!TSQXVRs>rt^|q3x zx65j(qDcRa*CT@27eaWF=4&$b`V`5g@Kq$~91+F}B8F3_0#nl*uV_gwYe`k$M1799 zi8L?Z0FX$rG^8J#Z-HRgE+G zMwjWG*W-yqJLLAozLugWqtjG2&rm*ZRR3rpHC2XB&kt&aFqLss3KG3RdYh>fZTCC`+Mr@jz>%P=!jqp8*&-Ph6<=p5S=0mKF(*rmtOo3J zE+ye5_nb|B9bXDvlq6MlI|*RLV$v}sMdB9LYnQa zv_TiEJc8Z^I)#8BMu}Au;!U{@CH{piNthjRjw7_}1|0LFeoJI(PFs(LJMNl}e(D345J3!x0j5yUCz$XlZ11j$l>TOr~*ee`tG z;XDWx^7g>)0%wEEm|~J^9W1$~=hxi{MSkU+BI~gEz8z-=Z>bE-NsxsXMcbrAo`evP z@s|U&Ks}j*;$-BS59;D+3H`8nJ`nW-^5sTi*)R^6rEwo6mU6gHLjA(GdFGE)$4raG zL?@h|Na12}W@bHo^ceM%&R;l7?{X25SIl*opLgoi(GhTsZP!sx)|F5%q4%xcVq5sE zSH++O+$1Pw7NM#W2!|tz4kiE? zg&b&{_jy;EY&~}!w&{|56<);Mq$@PEHuKO8UFRH-#M+1)Dav)x>XDw1Rd--6C}}>b zYf!CmLVWBNP7nUOlXY8bV^gUP;Rq?7u>=2l7_lFTnoNS2pv0s{iLm}CZ<)} zEl2r$uyJXL(P*j%Ey#GdmTI<9{dKAWE+Ohj0Our?LuoZcvQdFG{r8xD#C-j-KI#F5 zB=6Emwsz`2Re*q4&ynatn`Lcdf8tliWG>M!j?=rC%td3*KR5w(wnUtv2WKU$^A{Mq&QvBxt#cQm z9GrE*0_BvsFx)685%d>AD|i97I?}c)k5`YYA*BI1cJ=N$wz_`z;z}2wB4m59vnYND zbRJh^w-3~aqa13Fd{8c) z(TngnliKv&Ys10V>%8;L-wj#8*#nMnv!Gyrr2a$H_pf>SHGS1l$n)YPlBExX zu34`xdA@m?vEt!xB2qij$Fdm7esgkmh{}Zk^xzPbnx^YwK(g&vPBb2O38HmM)z%KF zXBV0G_e*`)2qKPZc@(%N`C~v~aS7UW)M>>BRA@j--{)(6$IaJn?yK#Fa->4k*`H3v zh+Ov=1M;W~x@X!-{SNCE{6JlGvLF$@$Bkl>*=5T*Uw2{RcD^IJ?xp2IW?BcuQMeiK)0?D?zDbba3c8U2pwv z!D+5tb2WCXx2cteKpWysVuqC6rMc`8jcJ3SY`V_rC?Ev^v6CX!Stqj7`7QQ~@Gg*c zmSOCz$~hj$zQ%aUMpuYxBV!hq-DdwDO3{WQTMiN6b?6by98|2+S`LJP=U z7-`bmnyBNtP;tzOAXZ!vPYRrHC96%6dp4zOg}Rrj^GeZfLLOAw$CVpw7L0mlU*s2w z$S%`^_~{`|nvX)PHAVTjL2E|6U&VT{F|=JM_E=+vjBav*EV)6=L_Rt$ML-LkinMYJ zJ!KL_{ZO514uUNRtEg~FiMy%ZCYNu6#qpXYzN^dCt>7{5_-ndIp9las=QA2-9}rAA zJov!Ja1bZ4FX%C#K~~jHR}in^?kIa(a_*t%gp0|F%xtW5QURT|%dMg#w67?4oD@wb z-)xBHAm?x-3?P!!=liP3x7S?X`whzTL-lR)P~4l!oRg&Ps1h)7jqr#Avx3^|Qm{l8 zyhU*=@DULlPgR_4DUTKStQw$A&C|y9)=6z5+nm+iwjVxox2>2)p1t%H(zQq}9^NOe z4;qrQ?l)68a+bCE6m4Nby}B>q5nD!a77THX?d9p#tDhE_ z-%+G9(vXt}uirag{bn?h-cVEzLRuPe9|aol;X2Yg^jtW;PERj0yFwds1#fPHDCKEE zf09#3CRFT(0zkQ;)#3SSbD6!=eFZ0C&D}2e$DJZxj5dqr7}mRbxtDwjT^6%4_A9lc zC=ow}vxBq8b+J{6s4cGIRHq$>1aOff3$U$@pW=oZH9)y-YKYXI*j32-MK~5IYk-O= z@2VDsY}LAV?pMJzHhtm!BIu5zQrIugqi~Wop~P-|V#^i=`0=UM6idx&`KUS!b*p&c56JDc)UH7VOcR~ODZ9F<5x3wJ{_S8{-(>gc8eSdQ2*jgee`lYqM2^)o&8xK;nG!F%yb{d|yU=_5 zJ3yc_y10sclf5Gx1BvV%xt{U9gLkTd%$^XIa1j4Xno$T9;&3fmIt2xt6S#+Jy@AWi+If4QG?#g@Ko4wHJV*7VTeA(&OApe66?j&0#nA|j(XPC<6*wM z>>ixXK<5fjq!OW5tO*x0t*B9)IA+^A>#}C#f#s-kg-+OL$XRQs^!h}F4ZA(&hM%kp zqSsKQ(;yUe?YSjOq9)SEqA+knf=-yyqo^-LwiyYS!mM%rbELL4sNOKV!>H^!(x$5V zm(794s{Ob1wO0i96>pbb<+pK!I)nDU{_4HUwa2Ud@DfK*KwQ;-j_H>z^KCiH|5>AcYO(U} zP-Q3R-rdZO+*O{KbVNA<6d`a!1HtMiB4Eg$k7Yb6Z2i*gy0-F&Y~2$PV7Dc=<{J}v zc1@u7IZhQequb#Q#A$Z`YgT`DPva6Bn zdUJ_%;x0(;I?pr5tRw%-tpl`oYn78r)wk9nCx2+0XuqqJ<_JlaXv`$Pc!I+uV}sXD z*p0#EAEl217VrL&1)Ro`%!?5|cJ{jfPzGV2|Bnc(_tmW-Ky=PCgZ5;lCD-m(mtb9H zoq3`qcvT28uLZQvD9W*z$~$=1fVANb3U()&P4SX;p$QIEhsPE01`f)ej!17N|EO=o zi~<=(DHfOfqd3W}u$!(3&Zu781!#S8NQ>A4WW03EOOo1QSy!s)aLIH@*VFufjq3#y zu?7Qr2C}T96L65ur!6S)w|G&w4V(}O6n%nM}p9K9is=vJGx;wvVXxFD! z;BzRt2v08hc43Fhl4b-DfFBtp^3)WRx4|5Xz=dDQQ;jR!FcoP%J>rVp`l5J0d6}>6 z^R&;$`0p8{-qP2EG5|*gCFQox%WK*=5W6_DI+;u&k8CtyKx8)!UQMiEcN&3o}Dqm=q6Oygd9spJWk9sMJ3@@`;h1tZ!NNjslqq5{suO)q3HIgjkE{ zvrzYTtIC5NyWezepSH=o*W6Axmy}@k_I5TTc##sn_VhsYxf*S!8NU7J_|}{1yK1Rk z>eoIPran4Y-#(W@%Iv!4?nILH%N6FRtC&PsF|dKfXon6F7EobVQpQHCD;E;;%IKaG zrP?qPCY^a9=OSHkJOgY6IaB&}0Fnz1OKG$9*2~q(N%Kf?cSRrdwPAW$&=v@ok@2X~ z?F1L;N$YS|r!UH!+Fk=3#bYP9ro_+S`R2u}t+FY`@2Lvo(s?NaSPuC)UJ7wN-J498WjVOM6v2QvWT_7GtOssjx?Bsmh(*|IAKbf?7KbpGO1 znCl)t8vT3x_xamxJ1iJ)NW>QX^wILM`)!ildc+QX^{B_4KFhx%ObeeSW_17o2cjDr zP?A+uN&=LJhfp~C6JXY%=mshd!h?e49g6X0^zU)Ga$e^Wct=MnsB~JhdFP_kxD55c zBJJ2Bf@!m*emSV&=**VevnzM?H-MbeX;5CdAROIQ7}|-u1Up5++LR7VPbqrL(!gv2 zeIr@{tD#ZxU0j`YTWNeG3Wq?+EL5qrsKPRZVhD2hG+| z&c{7kH`i*!vLW3Wx1F$Dg6~lAG$6pQV0H}igL?I6HTg?H!h=;9&u1MM$gi1p9bNym#lPSvgjpjg~QI|A-Zn7pdS*Oe* zh1R$AMzJ4WnaXS^qonh$Nz*$)?$BG$`)c(&>jKzq7aD=f#?IszfLRc~6IrE{ubVfi z&6)6iWJeL+a&Gbl<|A88T#xZh?~SV+0yHli$t@dG@-)cdB9d-i$|^Atpn(p^hRsQw zs6i3OljIhM)BQRCRpl`;rPlD9JAkH{Fx zI8?|#ddr^n&Ylo`5{VY}$^>S{BNQMfB71uE*^i_}d=KX#JHHF}g6{P2JbrRmV#6(+ zJaR;7L-0lB)Z(CBWE!SiB$1U0t#BekNH;J57~5G8C=*v?y-v zHYN38tu>>?ynKOm)neO3jC-b<7bJ6yRSTHs2UTRdD~@Q$*%F~_ zD;(%WrXaFF8@lh3x|~CE5}RdET0lg=Q#N0A(r85t>od?!0SsG}mykyv%eBgD!<5Gc7{}%%t}Th*T9!am z%i#seiN)$B2yRi7jWX5Ot2+SVYMk&j+?0d)McVT$2YV*i1G4omYq&?f&968F(%ZS6 zLr>4}4^d;T;365O$=_CXI{#1A3-JoWt=z`p0a2QAX-WBpsM$lL`?fnTw`|MWgck*qC1(e~FzJx1mnqwo1eFEmftl`XNa|2`n zA3msh49?7c9f9PO6b8QUTnPgoGvPwW1%FUHBM7f`m4YAWBo8KH_`n39+8bU#3>_yk zrxRQx@)o7yfmD2>4C{;{`W`1b$o3Rgs@YKQHcx{ib$P6{(VSTLrQ!D z1{1VX*;K~=ct|8i+2mvA(qm| zHbwJzRddVqR(=Evj5Dv&a;6ufLrlWS!oVk67>MLkiDhI;pp$;3Qc5J)Qpi5|YXp|y zWz2W7^BT_}W#o~JZcN%l^}-Ul3Lpfy${Ui%;^eG!m_Fi%kXaTi(LKx5Bj@OE)cH|Q zuLw@|NLoiR@t7}iQ{Zy1c5!wxz96iHlnMYKb_jF}I8*pQ02VWebJ!VMxl6=!vl^$- z1cWIvQmUbd8y#T-+f{;fKjI3(nH=fh+!D4vQB;SmglXm|Y$3zeOp7iPnS*D?m6@Z> zO){thcxj!b9Xda-ORlnOzII_>U*901!b|)6->X$FTN=1{X=vT)kpt(4Efl$>ctR;% z&x$;k(P=GL%NWzf%$4K-)4upz%9=CS(mQP@0N`kVPY$*yi6;;QbOt&t9`a9?g4uSO zJO;SH9BU_m6~X!Y#M;5Dl^3cUGH;H9v@CGjFKQLB)9QPi<+d~j>q@ciT4>MEc)cT5 za%NUv|GRF9M#sFZ+h?K2!hG}cx4oBGWp0ng>jZ+yHB>FB>NqXVJBf;p6k|j&vY^(K zN)q~WOf{ouWc{*g;udtVz;-!7Utz>wm=Vkf1aLRnfoM&I9QnQUnG3T^MTjgU1wov% zY1YM!WXeFWQdlDrU>n#ePrQ@SnFb@8U{W8#;SPx-6O8CYJB~w^9?h&2x8P!wL}8p0 zUnLn95e`qRhrqKV?%%@=kn)N*1rkh>%*5OWLW97_fcxniCUS;13lkKg@|^@`h)_~` zyl4E>npq<$qhQ;UwjUBw^kBGo!Y4Dw?z}+(F+{E=gi)TO%;br34wtA4Rk9ToJSfQ+ z3|tVS>R%eB8?+Va<%pf5;usX$1~_1eU=A^N3_BC zOACv_;YfQ)i;fC+l7KFCi_v$muy82=OA8?$#LHuF^(f)Jrld4!Piw@vY0-#tOqhot z(L%#Xl#vO%D3Bd(uuIxSbf?+jeL$*a+#|MgS$D2hjiqMd3z%&dM1cFi10kC%Liw?D zug!qzUdRY{P_`o zRww{83$#E%wlLdqUTy3FJi)G3jKEY4CAd)14X=b3GZ+OC>ijIxwb`aJFQWX$0h|W0 zge4PNcedvauR)eWBuAA^(S_-^Ys2vHB{#_%71kF+r2D2e2e{dET*cH1*KWB%&iX?0v)_FE(g`Q_<?!z;_Gmc)1%-wlEpcX0STIl88>l?+l7r;@HnJ- zSY?1u#1+$4Z79l>i>&D}b;F45q)-aYJ1+qgX00=|Q9N{eKT_cG9!%R zSWn}eEbYlam}C&FopGfbNwZJF4=@BB8;xUuvU{}#2HnFZiP|}K7I}nbz6(;{!*>6j zZgVz{_-?m7-JS|5k`2NuSXf!oFXDv2Ly0B1o;oyhq@1JrY;+O|$4-GhoCFnO{lK#$ zHUuh9*5OeB4muG`Bw0Ni)1|abyuM0FH9#b(YCFEc8#f6NoG3ttRx=yvIV&%n>C&;6 zxeS>bQDrYw(b;k3PsWS1zU^41)>GDvwT>QR#{sE+1A+t5t-+uxQepi+;0Uh0-+kk+ zK6n^N{7N5UdV$de&O|uiJpki6vaBQ5Iw1~;CUTIq?a)ZMf~mBc__cw{gFcYIQVKcb zeG`2P;~hE|C#*MW=qqq84oK>64N26S>K0s>6;~$5^}`p1We8yvVl*hOftk^*q+;O2 zXL}iq3nur-j6U7B{)zrA8)jG!4%Uw@@lnKut*WB8wm}Ed2OMmRrHK_|k0hT*93voL zuQtAicnH2fnM}bmA7LK+%}ORI`mQ;F4)y3TlF5a&adFF7>BHS8?OTw33dJNM$9Lcx z_-;5WERQR>$d=DBnPP-?JF+-#y;*JDu)sv$hK9RY={7JO_W&EbHa(>`c0IoNab*B; zYw1JYM-)hub)6nv{A54l&YHVEp?29YlTsI)F<*rd{lUT7_POl|8$-;~Jb8_*^bD=+ zg93pLr&TU?4I1}XcX@l8vU%B+?c2Z4b8XhYOV-)d>))rF|7cHKAdthkYp!aEfHbX@rYdRbV_b+{;n+4GHy!lieUU&B2NVj0(T$soprEDit8N5zr_%}ou|L)gLL%1}ySHoSN}YtwG0Xb3#i849T{Oa-ykJlp@@cx|u>f%^jDQ zi`y06zjY*jU2**unXyf?l5^wAk0{_la=c^67XoIlb++-6a?-9Q&YE~q(vV>QdRj1^ zD7a3R1##&j;5a2v39mNQ)II&t--mx(F^|^1RlRKa&F@Tqa8?WWp6(Ab`RgCE&iJ~n z))m2-G}@>4vxmmCu_LE%ZewB=yifiRHrIu(yc0;SeT-=vZ^K#g_C<$z-hh8k^4?eI4 zNcXsA_PdLM+kS8rSv)sxXWZLt1n1$O2)d$!;)?T($wgOdCoP~cGE~`A&(?bS>be5B zP_#KKPrxVr)Jg*->#h4$z9#SRu6gG@=(_j={m;>L@A^!uk{MyJ9hu#PDHg^_E=j9i z^ix8rG2KwzK?4s(Ea*C%r7-2f7KrzoXl`6@BHQJSm1@|D)CjW?RA~*;zrA2wJCPX1 z+||g=G;m5|A2oY_I^;(TL%etypE$_SK?!7x7gc75hoe>NM0YBpC)S7HCd4}}Pgn?S zgLgF3JX>YACRgrCwp~+Mar@<`L5*T>M`5bcn1hjO8izWjbq`h*wn-{{umyz-=XeOd z1xVRZMtO5N4?LFu=K?T{ELbi_91#-2zErKgR;TVX%fI&Y(C8V#Bj;)GLq2=HvgzNj z;t*X&lp4oZ5Q3H|8Wkpe?0X}W#in*w1yxnY#i9PxIzb9R!fmG%rrsOSjHjxRaK=a^ z4Pp@@icxRrBbW4<9QUKEF;ly;GH3Hyg%>UgBbUG@b!0PjHFSn5t6pO2NSm6qj5%n zogPN)tbws7>$F3hne#Z^Hq|o$d}~&9!TQqkNFi zqY&4HN=1~v2es{48=hjCKqD}fc}8DFO+RfyeeD|7YyZx$YeZ@vwt=GAC zeb5edxjn~T#=BMG&71|rON8Q+QN1jHQwtJNr_^3Ttz9B&BNj=q&1;AAds1th>H{Uv zr0zQ{ESIjhmVvadEBAnHsgBd8Ly*#(sGuGP133J>vmIoEIJm|O{_Zy``UjIfM0U79 z!=V82QMsH=mv)FFMXZSlU6nQ)>uaw&_sH7n%3wIsp_uMA&W;J4ofI?-lL_F?q7qeh z;VLhP6H^Cg=&-fpaX5#=f(u7ViH8PJpAxlBU7*~uRJn1P{%o~Y=C`%5KeXt7wW$3A zCaFN@LS>yoeKxpPKsm3o4{x5Xyf@N!abJCKMEfnOArZ~KIjLgZn3eP$nM;ao2;@6t zCDzG^|2}AGxi1E%br^Es#~w1R=d+jLhP^8a)}3Ft*OGi##2*{bxLr>2p`pg*{Xh&5 zvLNUXt5>qFiu^?YfbTbdqW+Vg7yku8kEW0w5f75n9596~&I&qY?8@Pp$wj{0W7f}{ z`{(kh2|Q}VGr|SBRkLLID}Pr!`R)AIDpJjLwa<;8an&DnA555j;m@_7|Gwn?<*`YB zFMer$w5m3hm6iN>;+*q8ocnH_6C~nLiQgjDLr?I3Gq_$8cEGTDP^!!tm#p6ry1spHApHTF0t+- zUJrHqqA)aa@++vJ62G!T4yA%;l9@iG&#q+bZWH8`mHI>f{2_V|8`TJl#!v$s?6@FV zjLfbH`|9d9!~!Z%bye{KOkokk#Om;por^ynPSIr<|9Mb!@J26@n%)VZU;)k0joDf)37hDcukSF8U=8XN1a3xK~fKKoG?uCNaw|Z zkd6J^tzxUQVSdx3eN?ag zG9voHz~%=^8lNhum)9ShllVXK-UC3As%jgq>KrHMusfRrOU@uc5D+sU5+sO-AQD6r zMNt7k!mB7Mh>~;8EK68&PRr&vyE`*GJ2~}C=TP-O=bT&BJ+rgBL-PH;?=Rb>r@Ol9 z*1hMRe4g{h^u(==$ycI|yZf>HIh4Co#k*<)$cw|txtQ%Qh0yoK6@}qmo4j$*drfT$ zLHd1zS(tV(o)GExP~8QkfZ;XWk-nq2XRL81Pir*BlcVx@%oBkxJ)^Jw{*W70dMl z=T@IEU3==?zQJ(Op8iyGZ#+1?_LSL0U!D;xDXltlpN11AySoMe(d683_r`BHqVElD zI}H74h{ZO?IG9R`3nCD&4&@G7n)`Eyc|@u9&`hn-Lp~DhDdoDf?t|X~bO?c`?H*)R zTW)+6c#}`IP(HT26tw%Lacy_i&}Yl<)v914wx@El7H1D$ZM-sUwx!XzM_5_@u>UB0 zQ^;Zp&Lx!t10u{QO`upxVfSXfpvUrHv}1XmnmWpw+{4v!`9n-u^-?}Ns7+jPPFA~AI-+nNI!!ed_!byITpLF2 zcL&urtV)rdHOXzDHOpW+2OOd*R8H}+G^tNs89cF#(%=5tRnLByj;zp&jLcQxdp^h(b>W z7kS!n3}qZZzX7CRp--C(TWN(vEr+#KH0dZpv7PUb-O3WHJKrA61cTbjrG4p1#nre8 zYVk7JxM}tb7*&%i4y-Af7j`B`5~+}n)P-E8CE+<_Mp3mR*Pn6CU^o=}kWEr(OOD~H zvXSUCdtcc$z2*1j^`^KQb*<&RhsXPkpKUO&Xf$7$YyP0Zcs*hqUPAFRJe2h4BQ;LB z&^4?x?9_fiPgJI@3@Se~DE>%%Wg|eeGb&FI&7F{~EQhciUmruaEonleftFTitSil4 z6;`AEPR9oP{yL+{qixP;hX9X2*Y21?R6$Qa##dS3F{VHgueTMZ6IV7x89}k>Y;IXB z*PqUziWQTi+yWN!z)vW`XB~N;{^z>Ad4a}0fqWw92L&~5iggkN7FcHXvgCI;FOEz& zoBN8k#Q;(y#cq&%a&!KnMhz#w&*g+d5|p8TuCwt;FGd2%79@&kDcwcXm#ynUpY&G$ zo9Ay$^Bc9|JV5zmvQCM+7Ue= z1{MSyzDLVfxHi#0lN0PYfk|BP@*3q#7ymlHEMm6od2#sRQ^Bu=Yk{k56l5gTxT|MW zh>E=4BKPx0pMk>LLEcSWi#jh;ku^ja}PY?JHb$q zwba&L-GVp^r_NUzaD1q8P8~f$AlLDx#s@4_C2^$AThiYyYImHp(RqC@Wx9Pe zlo?1F0Nlp%tjkig`8(m{dvVt^cdpE7{JlQDYF6~QY4OYJb7xl>??<&0*Xc98h+@*E zo*Oj2R;s-n)vu~2-}?zI?n8<|o%(l5GLH|rQds~gI5GxY1D>GM<8=XT$B{A(%8A#q z-wzG_r>gt(;^A5D^o3RNpH?NmyT;vvL=J(LlSeFgP`o9%E{F)$rht11ay^m-(t;z* zP34s+W9KCfp(EINy?yC0yJ&som8Vq4?^+Ts@$2!V>47srGl%tZT9A#4*4BsT+x@FUA)9z{12|h2#g^O-^C`VMmxArIY$$2xKqiZ&p=)xiM z+79jE>Ba#eE=V&?Kn0-5Jr)ylBB>IiGttaCh*C1y?MvE1ogcb#t6Cm z&n*pA(t=o5$sb@A|LHLgTIIN8ljHDJ`kyy*zGuM+#3GfPpkbqA05u?A#4)}|w`HrE zciCe3!`ik51fobsyz46PA(?Y*=tzB3{t-uoMhbkJ>K-yIk=wTXwjB0!IeRSsyMkTG zFj3u<2pPT9U&NyQSFfo^dMnzW?7`6@OSqVt5DBHKGkc4P23%N5XPY{- z9qhd+BeCXycNUqx*!b9|sGCJnImD_Gk?L}zV?BIpI|fu365^Un9;YsKFt#?KEp{98Ojl2FL6LNT7-w6c5E_GNm=e*l9PKV;qtlwA1OO#la0 z`cdyk7;ylq5fCc;04F{>tnVE(PAtjXTOU8fn;uG&-G);2Zxm-X&+fgkA@=T!$lEiA z*UpW6w}fKRB@ScvK=vy|+1r~krEc?}uu@zH98WHqHlk^iNYW~V(R+Y2V~(V>L|V^g^^=Oz$CqY*+sX+3DzloI zwxWCyPEzTs=tuOG?CqLq>H zvu3Od=hVoC(X`oqZF#If9`NvJ#`wT~7V8{QI(o5@gntD>lBz?u^Ef7|MvLKs$!kt3 z_Nx|&YI4jMhjLNFys*aHlr{l=XDJipK-$`T*_3YC>og8o|E`pI@_PNFsP^!*^m8*( z3umR@k7@ttVxTs5Z74>=yMSe(R_r8LO{gi%k;I#!j%_^OmJD~xlhp+am5x#G^S{{Q zOlxq~idaE&H8xr%^|F|?<;B70`6&A+O;R3EozJR`@|4Q6*tvM5PRUp5?#x<0Iq}*W z#g=bIk87*bOfpOueSU(hDy%$FDdD%}iWJ_L2|NEPnEL!wj*=FZKq-og0?FPPG;O;mo)MRqZ}FC-Nh%{UYe1g{ovUV-hPGpXr`h4dm)z;^SDvz|g9 zmYC<;k?u&a+$<1LAr*8}FkRZ8D(ykCY^;|`x)J4~;B$(lThA%B2={$e8%~BRhpiTn zt3bgtjG_?d_kQv#elRJj5h7LMpI94#W|(VZCK`n{_+YHVF99n-={Q2uEC)p{%HP}A z>7U}OZ2ueonBRH8kzcOd^zao=EOSkoHCc+tw{|>v-_6tK?mTbTeHy3CP@Xp#V4)>s z8!`N;xMNt$qyLHh&71q3 z@5QNM=yboiQxNzwuf*WUm7u39xc* z0OFxo`Nlq1ja!2k7t)$ugbqv(ENT46B?0*$5CzLQk|wXAHjmf8-;{8z#}O(mIlRH+4~D-yEnH320{%nil{Kgy=X$uJ z?3>d{cCQIkhr(Z-5e(t7p1`4VE51}8tm5ma#bTn86|tr+U!h>F5hsrEIaF=PKZeW( z+#6C6d(*jJv>JE!YREu*YEa*l)~;_dcCuOo;M}yKU)$-tbP5&sbQAmF}555;Cb9GPiDP$_~qQ-NB!|YEJ-kP0Pypm;1v)zR3ZWA2PL?{ zixKv^s2r5L0ZApK?Edhx-e!d}dalM8# zx77(i!0JcfWXg8rC<-5>-2*L%(;a~y1(1mvKXQKnD=YF}#wR_Nnio+g5ipyZ9gEtXWFe~>jM$8=oCiG5L0hM&esiZd)dOpW) zOT`|x#uv85(mAY%c!AI!Kc=coVaQm^1h=dfDq8QvJg~2WZ|#t_Fiznxyr-1N->#r%4I}RhDjZ~PX!etm_$c}OET0a*JT|G6ILsO`Vaj^*F z#hMNL*T%V$TidrNJZIYy!~T^eokq==%`RmAg`6bDBGW>A$$Dhbxsd=aqm}jLUNWk+ z5|{uX*f2vOfF>@66mcl(JFb9FDOZ|)Mc{P8-r2UIAy82qCsQM4jjPe6XgnmcWq2}r zrC`xp>*@I}cE1iK-PmEv zOm2F6c`LVv-r_*g+F}l@=_Atpy?j9iG){*fCq1+ZSOE2jOgEN z^Zu&G{b0m-OTWI~8rP$PBtj^)61YMp!NMFwDTD@<|IDXm@KpGw46bg$pC|X0+ zjhvE3X_H(}naTo8n0&&!`f}}QyFfz!X1TM>3-nSZF3mW%m0E*bUpW*HBy12tglLX-GYSLr4D$fcz z(uZW%n}9&gp$i=28*^vRf?Q6fc`^2Bf(Rjk&kIl$U_n7aD=r?vd ze%?ueKu;4WVlu&AgyvX`DqUq#Y&Q7>?-Dvgm_##xp}b zYX=60QYnhHApHUX8oM2n4+-Tiysv?6~C7VXnL!n!qi6q?4U1gZb)he z7t^m$ih|NdDV3q+6V*U|Eqa2@=d7ued~#fr3*<~>YaUvpon4);Wyka(J^s&=vgfzx zgkq?Q`j`$RnV&DePZ-VLgjtL_Sg6~j1oz^Zuiht z_Kzw+z+5nVzbYciPZeK_9!&t?E&MP}r)O_JFFi8~wI<^crXmpW?aE=vxxD(WmU48C zMS+F3<#gsJNaWK*G=nh{SUAV_hAN=wQEOmJ!NO75ZV5THFnG%b4{O`jWo&6`i}^9T zxKM;|x&CSZc7@3nZ?;QF_M;WfgDgjZ@CF+vMVVr4?0l7u>|(r0BpdP`S}(`5l>;0k zz(PO&u(BQSE0zl+JGcy$cOMi2@z`> zw3XwXEqI=7D-Oj%UE+Q8vb5|mltedTl}a6CDDdqelkkqx<+3RA)zM)c39+)NMK>8o zW^Q){KE(;iw$&Y_^P0M!yKTh|hoU%ouZrx_C;xQKyPYIHw>;i_@u_*c@0-t<8$;uT zJXLW*wRdSd3%3*|%P*{40A??vfd8>a*_*FUOTIiUdHkTTm6!)`O?GBdCyZLgguHB5!1Z2$-l3QF3@0rV#1%%KqfQ!Ltl?I)tQ$`Dz9 zCE|R3*!+64-kj2(oT;5v1F=oJY#^uqsl&1NO4kYN9ancc@9%f)yVCWKZpUAz5@Hdt z0A0Uos^|4xsHRV*MC93yAxCpki*rvr(#Nwo=u7f|{e8VdL&NDT*@wj4sO4fVk;eDX zizKokJ7(-&Aq7fA71~6aq=@iI*0NjDL^ghBhRkR@1NJz|7f~po3gksy&tFRX@Vf-;^HB#3*hvWExY-F<$&9byQPA-ApoUwxH06OtdWP@#&e3 zE@nYYl`>sI_9XJjP9{?shct8%C6MK~CTc?=+S6H*>kvZl)FE*O8Vb3^6t)h@h5y1~46WQ?&I-MC!-jp% zncmS~vwLmFBmc8v=Sxo5t7260G!JEDc<7$%FFWKL#}*E3l=#kDeq!z@LYMc#kL=n5 zGDaPQ{*SD*uWfKnc9RbSSDxg`j%2cvotb}BMIRk@eR;k2fM(Avz4{+ITz3z;Z>&o! zoe^!FjkGoN_GT1cPA{i^sZI;_Od; zzfT!`whna+MxwEJ5*ip~;Ip)_{hyX?J&LieM99V~bxKs5PFv4PMCX2W zTAfGVl!Agt{+>66DdAR<94(1HM!GZg+47?KS%F*Q=|OYiP>A~5m-txuK3S!Il zaIIUYFyyG~7e2GRmrW$7_fpX*BUKqm$}A(f&StypJ1Bu-%t-`@wr2se&f5iiB_S2H zUo8<(I1i*N6eePA`Myw6GIv#Dw0FVwCehZP3dd%@=f}0=s>S^tM%EA5tf$Uf;&2*$kPU(lZN-i2 z=V;qNZ5cwtd8B<2YOLy{PW+3X=f9Q@pJ;i1(9!wE#)D2g!nwAkbhhL1`xo#3gH!jk z+kxAU)4Fcu1>ZX`Hat*KSu+uWDBL)sl+Xgj7E_GsK4dllMZ7gbjCH1mCXp4o9HN{j z7bWkgkG<41@sxFHSE5SuDH3&Uq%pp%P$guFA@GyH@ zH(mMuU|TxZvcC0#*9Q8=jhB4Fi*Dm|o1#U6qFKv9Mf#2bV&ktww6Ct#e$Y$={Nn6f zh1v;Q~mPhVtd!VPUHx`e>X1DkMxZ{_*EKTSD8N}xQS101)EQ%~iDFXwDFV+Qp zhJL%rd}Khox?xnHciR(5{K9&)>pRT~m-*8wm3<>0%cO~;9=iMaHRkU&krDvqLB0_V z`C$~OeA+il@{=U&W{hqvzZuJ8KBu)7HuXub&w7J|C<^U3ntRcwG4re%=4YPcOP`qT zxAv5>%3FJV_PNRPt}!Y?0Ts!kkF!|3RCZw%)3oJf+1>=$_xKC_6RRMz6&w+cSH_wZr#Hob>|<*#YATLJXDRmTL#X3V1lRGR zjAMTD84r0P*8B4-sGi!=47R)lL=I>4NmKw~LdumOxdkurV47OeVz_a?M`espYgWYL;z#m0x0?tIPeZeEY z`|(lxeEZz;x+#$XvU%kghv@Tu8THO~yV+qvaogc@mh0rE`=45hG~P>~aMRryuQzNE;={ z*QC>kdbJ_1+2=62wOoh8*z7XfwQRedZFgi^c5o~{Exh8DVVImzhmq1Lm7A;-PUs+_ z#S-H^G}%;+irf$^_Hj1ZC!@<;@`WWMH8U%}+*tgT9jbN>yR9tvPj;D4cQ)p$)~&ZA zg}~IV+^qegO*^+*yRJ#Qw@>@p8s{s+j;E%lXZeWBcW3kii?{D4W_GMsxg9so^qjvw zw<-y;pdREhJY+u*iJ@+lDqkI&W1aZWnR7%2BJo%Z;8tWST2_utka-plq`4U4<=RdG z#0a#%b(wEPNMYplplPQwMT^(8>pIM}3GK0&go3A(diL~;vf9UyAF9#;DF6@lYgg5C z8(FqOZ0*4|8gRWIRscCz`_m?Lk*AlSGC@7BWy;$@X* z5tBuq-iY&JD|vSbprdu&^85CMRH)uYKwS|cZNWkw{yW`W@n z6gJ5vw5U)iYswEIvs9pfZhMep9jh|p0_%T!G_bA9=O0Jqk?=C{qEj@T^G2m#AFLp8 zol07$q#?0TBj7?#?xB1Oif1FXiL@m~lE=TwYh^7*;q1vg$f2zEf+bUVvV0PG;iMsf zA}*%J{GY6PjyY5`$a0fdVc(RFXOcYGK*;Fm{C;eKbD_LXlQ4^X*Fe)7GG ze(<$BufOu>pZ{mhK3@-)R7D00GtTt=Ty>vfyGPQ0`}x7nu|{d%rX%XUG!@9JK^H0jfgq{GZI0=&?N#D*1LgII~@ zK=IBXn&l8boB(SnTw~o;AIQG8q<0bW8ofn7+%4=&MxS5R`^ekt|JIy>4D^bWfx?%tR?j)($@HH3>w5joW(7`=*+^2F+zL$`qSFEBE+}Y&p_KnArQX zWV~+azuMwvtnO&~t|7;78=YsaC;yGo=9w{xFu*hoC5Mtm3O{$nT+!i3CIxUJuJq>_ zv|q9bZC?DRP8Uq%4Jqw~h`DbFF)ym5XUkFjPR@ky=iz?seet5NbqYXjZ z6>RAQwtp_oec*xbTX;wzh&q?QfTe!#wCp=0+Hcwb)quDF3HA4)#>+@qC{fWtHF%~S z<{b1!WmVxJfebOJ^B zC2i~hGutg>nuX%WKFglrLUql4sO>#HZ*<#4R)euVoPgjQ_0Z!60%UG1vXg#1cepoq=Hk48G(_bQ7T?#(ScB-$}8l1N%ERxzu}GK-{B=4 zP)WnE@(j7VlK75P&-g+)E?wluyrgNeOq;EU=V{O4+XaN9zNBCs@J$36pEMUPm4UH7 z3}I!G12g0zC2mW#l(+O2n_>G4{prqd6d!Q)@2|Y>M_-?6cQ>nTY&!YuUtM#{6Vai8 zLr=P-vS9`;9SD~V_4gLuBflGkTdGx80!xf_^{@0~2HfS;KYoXi<{Yz=5%p7rk@lTy86l0*Q|`ivWdsu?Db44+r<-q zb8{-2joj5#j4xy04P)Bqmhbf0!zCw0)dv_s!>xqe@tc|@^M z>*3s2i_IYMJA`H7C^9>^BtKkoTdc$j=4+Dj0eW=BnI1L)XVYtK z!<*$(Jz{24DO?b%%u(8W_)Shwo5s|DGz@gXZZPTCU1TE55ppa30(j%$-rc2DtSxvV@gZ+|J2HH#hQz0-lCWPWwE z`SsQ2p(|1JuiZG=1pSLd#lMuWBmPWD`jG@(L2|GFkd*we<=$4vN7Srs93qsI-$Erc zSwcDQtk^1XN-iSrD3MgWM){X4dOr5SDQ>*Mp&*;Jrt&v zdbr7l?78J8t$2eE@rnJC6YwGJPfL$2oG!&oM28i1qu>CiQ1M;*hN16bSq-&q2;71f z0IpK_OJS@6pGXVai7e_TT9s{`>?~>6X-Bk@8*>1NroL%LIu#dE9EtS5_v!-Go>iS{ zM3>xr&ppp=7}^%J&6e5_evM^*H%fZX@&xcZ^`&!DFHDJDUKPjuAPEby0qcZ%Wpw^Q z+I*4MQS8yf9tweDek5v+gB(7T6{*}lQXq?iR#StmjZVGfAh9PC(BC*Po(j&BuJUMq zpK6}n;#!lUj-hi``rb>Tv8cY$G>7!mp&eC+bxwXX?s6EdMsAal1J+#}UExE{60fsH z)9X#G#xN^Qt<=^^A=&hm#|LMPk^HGCN5Fc{00JzO#6C?{>ljX z@#Guw+ELL27=qb8+#w&j<1ViUo)xbby@9tmeRuXd&#lUh7~1?H?U*tRRgRM|=Y=*0 zUl7;$L8bnqDoVPvtAQsnGjfjXUld99Wf7#{0a=VysYLlv3hy?Mb#O(4@&4T0^^ZWny=t8L^<0t<7TbzlDkm_ayEVm1* zZgU3vk>#PrbTy9uwG%Tv=k+x=>CxhWaofIVPFPau7xY{M<74hNzRD9&= z8-C_65`m(!U;pT+JOBBofxd29i)`0N_dKwC-OKm>?C49cxp#dm-{PWBFIMkW$iv#S zrZ&e5H@n`;6=>6z`x@N_!T<@BtC@NReMSMZ>U9=-okbq*0_37lx|BnUAwX^!i0v$1 zC{?FyMDFH`ujm|@bFkRp_fF>Y^ENBM6tp1$=OX{1rX5nE0cLgguycx6|MnUkNai@c z)$ICVtNZAU;eFTF9UkiYSJivJAKGzB_sQ#1t{m01>p_<<;4bnw%5=S4BZ(e1%%EZT zx^u-vK#Dh!`v?7q96XkVO4W8KcYt;P4-&bWb*;!lSOuSuff}tXeaJ}1#Y?KozgntA z6Pc7Zbm$H>C+`p(?n}i|nG~u>p*@VmHoF6Ls&a6G>paeB%KWx8?$b9ICp8;81hlti zYo}L`?sfmP+;3~M;f~Z$+^i zReYVD1Qb}o3GEzQ$BYIt$bs+&1IUH&umY#-L@OdGJVb+azB1`Rb=e)g+7Trtpl{~+ zDJ5PGzy?WdPq43kR^!;&F9kWOLdGhCu_|&T2wZ3_T7p;{(bslq$CMaF*yj>m7ujYN zBC~yFrFV;IY!Z6G4t`^{kCJSp*B`&EO;4Q620jq)uBZi8_;$kFVH;wP##vx7TW4qspyUzIs*c|%pRX=RhkMI{MY&@929Ce`<>G0_Ywx~j#CBg49 z9d5(nek$(2Vjy^I2^l%3R>Bv;+8uj<@0;zqyopK>uAAmOs$9QuhI8?5&QmLMb9|`} zW~}X=_4=;v&8KzmeX@V)f$o-M)}1zda4>saMIKj?!x=L4P{s`8Ods$FAh?%hYIgCA zpvD_M8WCmkz@UCe6u`M+!=nfS3rZk*oH=7bY!q-QS)u~zmtQm8Sryqk z>snM=d+PLxy_1_SeqqCvZ*+J2UFDS(^F}(aduQ{58{(1J$inr*J=i5Y2I3SFre#;4 zEn^Ews$fGa4=l4?PNhO)8`GHM(+()o{?ci_GGd&(QQIXbO_KARg=dwHuM`;{#Pt1F zI(GRuxBueIz1_$nWNv2(E|K&^4bp&>ymJP$0T55pvezYKLuWc1o$(&r#+UITN)kX` zqu&p#Kix@Nhzj3PykJ33%e+4waUEWi>&cjR_nPNd8gRuQ2L()I82bRpQczM}J%S8g zYFky{kLz;^%WZ9kwgkLcE~3c7czeYBWerqxenw^wN|w{Re5l2;LB%=G&nY|{|BtSF z_0GTk{onJ~M{U}ni}AkU8O}$ttsJ5W@Pj-V3ezueEVGJ0d{7vr9h(%%C&S~^eVH?* zRbYq8$;$mMS5;NPN~~~zlOnGIASxWpT6&xMsF{;h5uk*l(j#q&l->O1-T%7z#((_h z-;b<`nr6KDmAkI{+fDPEV>HLn^$YL)+qJho3%Jg$OD_yP)wu(dZ#tnyOBE_^uN+N$W0)Jg^3Z0!i%>r}l4g9?@^3fPqHB4y=N{03@) zzfF2yk*y^NRm{D~T}xt^|6~fZ+GeRRIK%)&?p<*4qr)rpctvV6@F=|=db!<*laeQ$ zt5TV)We!y3y826^V7#yC%R+p3DP|S+W&L>6(lQw`^->sq)K|_^Prm@h0iZPyR6yU2 zfizNz2#;k-!09DS9U2+3vFWK)-T?t#63_~7WeV(D8)Gc-erA%K;00b=@aUpfpFH#8 zYrcEhd6L2H_xtDWxLYt7LOy%*eV0GG5(xvo@~QJ?&S*gG76mob(vXWo5))zu_0&SZ z3G)bFg^xVaW_Jn+X}NV-$FsxEWKP>RXu#{v`EHbmfgZhB^>hwUGw8xX-BTF1lU|a3 zi3xHWS(gb|SAu;NP9%5N-JVn0ysd_(%J2SpyK`R1xgq1YW{Ue%ps;d=hn1Ymrjm{h za?Y=nyKrj^^1#5z-ku(Bs=GBFJ*RKa7fNpZo@?p%JZ*l%oz{vqXHmc#PCEiA-J8^0 z07FA=pHm-pn!|Uc_CGQ>Q0y(uI6{d2aIZR&e6frXgt4v>cI>i!aQPC8VX7w z8tlM9WoB>QoL-l5oZ(+pockEWxuUxv>#Qj+FY}i8U)l5qJ_*MB<+-xz+S;PBGG8#{ z_j$>PB2-!s<1<6X6pwLa5y^G7Ew~dU9+t0cEv?MC zHS?A(q_|M7qX`y-QP_%NMPSc+1O!P9xE^^5eDrdT|+wTgPFCwpC^6R-<>P63KRU zB%P(I+Sm$Y$P}7znQajvBELm(7Oh+0)u@__7aE_77A*c@VgD3Cww6!yMhqC|TNj~U ziQy}Xg0PUnv@J^k$(!|jCT%@shVic~F{fsOF3S~bh-U-x3#^+uu(9eYvEw{QJ3p!z zzE)Fn8UzqZ2+a$_2Y;dfJmoh_3OyNcd;q3f*gJvNu^}hC5$Ms7<@g0#c_iPxXy5K} z;RU%4&mQy!7)la&6^=>D2hTiHmkg2s%HUVPex%uE-@eqcE1SfU+5l5PtiLR~6<(Ib zs94@O9UIoKf9s6`9NDGA#$ei{$gN>+jGHYu7KN@o)Ze5M#%VIgEif7Q9=1!k;hQ$NSOK_q`k0!mW%ZE(G?AqBQ{Tu!O;Eg1Lf9 zdQ#>{R{K$f`O`}J*+2VS(^e8zI_m+%K0rp82&1wE&1Uo1wdTbQ&Oc0c-#^>EfAJP2A!OzQ5;lWkXgXN@fmWSbB4NZ&@7?>d&?`GQ zyHWS&p^$mN&;T6*_|^avN62MhGEjj#sijasJRvAx@U!#Zp zE}sDlAY&i z%uMCyPf`K4{95@%s1uF|hOxs}d)Y`153F7I;1h3e(!KFTkFS_>+G$4|bmHkdtbO>M zw;op>TJg{0 zPrkcF0}ixX8~O0sGynM5qIdpz#szmTd-K=dJonBwUw`<)MT6U_9Ff7;?4@w5<8o-r z)nPX#&$s=y%dM3KQgGQVXKCC!+ILr3DWiWj?oY;*=v#icCCS_O0;x#JINZ!u+A`md`|&us6q@DZ`GX19F_D7+sLzB{nZAroyme06X~;bH)Oi zl|QSh*-p2T#13047NtZ&Y@%8bRvACMs8$m`MlCfem9>wfMoR)&&~!zF{lQ<*B@E1+ z3;@1|%B8fF2nnlj+J%^ITRChO%!G&bDNfw5b_K?B*ik2q_uF*mi+8t7KVhF~bN4>+ zvJ1~WP|3{#zRWcq^ejQnkR(Y*052Nq)u8SGo~1VE{!vYy}*gN^EXtAHHX;$hq1wk;+hOw!=90UMVx0z#sq?eNG zmLelIimlF%JJ*HV5(%C~z&0MWRTbYE<9gZJ1~jrGBYFw-TXF?LT8t2qw{_$x!;V(k zVtDKuj%UlWsGqTHW}pv=LDJ@-_ZBrWG9W#^;)co?r*#oUR1^a78OU4}Qmbv!O40>! zRW{%XMWX~CB)6Z8C)Tu>{FMF5Myjrbc02Fp+phY>*SwGZ?25N~M)cAEzHph9(%Se-M_9i z7GJSoc{*VBu4#4eeE5!~Tg5j~0$9yhfoW@5(n^ZUCboAiJ92m@sFxtCsJN1~(WQqC zo9VoBIaks8LPD|iiHY-hT#DzvAZepe;PZvZHW4@w62MeKOd?io za?Xz%|CJ{ywJkYuO##S@PYC}K8%Mpj>37o0<52xx!H5u><0^4}!Zbqz|MW>j zK~$VCj5tu9O_{W#Q7`OxG%X}&U8)oWVgHtk{=krdgFtfm*W$zrGiM9k8#4zjO#>7tcI*?F9-{vVvso7iC;qr`g z>#E*XR6voi;`0)}msRagZV+}llW1d!Zdcv$fCwDb=zbA9Vb&KTUVQJdO0xzSv|5q}N0tk;?v;2ff# zBQ}Ci315f$1jEyWKTQ|(YC7!IqOY<%Kxl%pHj8834o>qXf@5V^ngF zJi38ih6Gc?$uCj?N6{~SQKBoSyIPsATuDmxGNaN03g@kWjCl#<>4Y-vn1$N%mIqH3 z%Q}-SFH2n?%?cdwEbkL`qR(baipqrW6R;SVYe*Kx@1c(%;R^Y5NE#9dDys04l3q*r zd;$hDk(K-;=M47uF8}DAFCF%+t^6o3`N)fZ{jYm|a(Lyyx(#qJ+)MPI>;9WY%mSsRfvD!R}V;S?~Op&_+k*ttu<1Rf8U zERdL(;)xCBuu7mZXVUP*a-L|;nKGPNNEXe3SV|HBC(r~Q$L#`v6$g!ufxy1Y-WgfB zwxhix9UVr?7zgUvI8=*E;!%(&5Jh8F7s+*88S|ie{f#@h+wjwDb>mQwQ_VLGD+I-~s$9(miAD7(u!xK+G?WW>0 zFF4@f3r;J!`J9taIOpb))6U&fCX5;-rqN>=tsdZWqn=IZq=0^z$uvdU@V|_Ar|%!@ zzWt|XUvkj}f4qOmYkxfN>N{TC7~FaHt;bR987^EBp>cbnwMUjP9*+U<@ha> z$D$93AmSW-u~V5`GLxfLoG3ub^93&v#6ccB~|K5XzySjKFuk@`p{^0FojeaF?Vl{-Pf=A<0@ zkr;tWlg3Ya(&k=^Q`5YZ#&}do?({0X2C%NQw-7Mz@uWBIy?&>K)eklrkyy$Z&H6K1 zD3%LpPJhVbDf2sH*<2LFmqP_3&L8gT?09!o-lb7iQ8jJ$+>(kaw?C|V0yO?yt}C8x ziRMC#92`W}oYM*Yzzz@aL(v|gf0aRF@7V&&QK>1TwMSVVVJ&i46D3neY?PD0`DgT< zh++Jr3PRW?4~;9*+1lNMSWm0CVEU7KAY7r?w+OC_zQ{ ztnJJzplXPv3R#F~lsV2Af79r#90H!vOWFA=Aa8Hr{BMRd(vd?2C~l_3piYX^u&a@p*iXG>nTHSBNl7bxV^ za2Igyu$ox)3qF@wlbsdK>XkLmB4klZ>;lTdtDW*A>dhJ?NId3LuL$#|kePEz3y zeny-{`WyoZ6Hm2rkg5Kt=TcNU`G13ru33I$TX*&ui}MF;!?>bRlMRp;xt~) zrYxw_2{`o~eA;Ux`O(?K6qOfCP~p|CnC$#rqyF9w#_t=nTBP7xSwL`_WDU=5-ocj= z(^5KGctU6aRo?WuFlNJt>N&m!;zQuTkc9xCEiVcB5P!Fhfxey(-+HZi<&yZwppi*I z7=ZGUhGRIZS9k%3M?}cBj>SjEo#H}GPSg{Tj``^xt$1%`on%Lev{Cuk%Iin69V1Jn zQavqeR=zR+tw(QO^7{O)mbJD}$N5gT*WvMPsG9X|<6e7~dYYP=rcIkZb^7$iNt3Fo zs=YqH1d*7xaM6^hzaQ0q+pga{Rc|1`JH?3vHj-ZAmy-4mrnxSmUDT!n(cz&P=H;99 zx1)4V^(Z)-b$Ji+8~A`4g@?f%mn9tk>T%rE=elnYSb@%E3FjLz=e+~Y3pY8SApUtW z6_}v%;e>L|A>eHJQ9&}+b$ItG);TIHU0}gaWJ^&ypRKdbiCjU>=^ltRFZp2N=PNE| zF->`*F)#aS>Ul-mV7(?Uk(j82vg~8b1KFY_Pl@uY0?XA-N)Qdz_7IF215pZpq(VOy zV^vN#37#sK9Fk{zA=m`!sSMK-T=l`5%A_^jp|UYr5Ynefas#7T{ntglA{OWJFC7kd zn1wnHXP|6bLY+v?Mun3iE@3{lr-6dCDt>3bu_5to50FTIp|^aVhqe1 zqSb;ZzFZ2j059(IMwN2(;+}6*GDijRR2HvZR7!`MI?+LS5~L*6szj9`Nskqqz?8Fu z#gKR+@jP~ofJ{Q6^j5loMb-8e*wTD<0J|ej#Ub#%Law9c$58?2vyN!41`B==DDm8a zouxYqszN_}!PeXE^nDR0eB-zu*3?hl)|JPIn>-nbGHR7@uq2csHQOAycbV)aW5`Sbk2cU5@>m}d5kh0}?x83sO2x9OD1yBmUUEnB!_jPmH z5-GG?vf7HhV`O0Wr_{Kv!e? z?wsFcc%9Nho3usfE1(#!+Y=6ktI(6qIv|T6O){x?bf`a85Z zH-7NaV8=%IDb??&v;#$9es8F_tg^PEvihBdJ-+Acoi=sqjOjC`O`kq#@}$bD%1|hX z3(D4@9l{paM=|ZJ7VYXreQtm=CB<99Rj_%{&VVF%4P}kf)@x4<=@0a4bNt#b>JVke zPb~gRRsyNKVUKc5XI$B4cggn#>wePa+LYG1vd%?u{f>U^mz%V|cWEER^?Hwf`*a5| zdR3MfO|0|~-KyXf1;5}`_%`np-Nr6}>G_!vfavn8SFL<*{xhF!BX31_wOM$fw3Y|6 z6lJ?azu?*V-u6#ysuT(pYev3SoVq}4*wd)=2J11%(6k@P5^r)BD?qEZFk6ojU$exQ zFkNL6(;u;8)Ls1|K{>0y0OwVgDrbL2lZKb?zXEH?> z$?K8UdzmYlLow6sFoftp@`;=yfbjNci7rIvu>ZA$w9J4#IRt8A8Q(TCMIi^Z{ReVQ ziGX1C#b(PnV(DWLwW0$aVhF{;1)LN6MXg5&Sj1p(q?ws7q z9G{ZrsBV9hIx%MUwp_po(dzb3%JeV&;Q42kv}{?nR`^>QoTM$t4BFaaArBR*<<&=v zHX;%7QW&V=Hp4J{O~Ys8J{mF3+^A3U7(Xdb$I`h7y$F>LxpiXKGG7qv8G7L=k|Bvy zJ2$HZTsLihZ#*@mEgaF0D$S!q@D8)G!!W19nn3AR7_`#zMjtL@IW?| z(6X5Xudmc;zq+jbr+Ds|>3wFd_wJdVD<-?otZ`R)TzCqBHz2)<0yL84Lw~Xb zf`dJv%8t*QK{ofXx!Cr13#EKgvc><(A3q`oXncNrOI6*r32R9vd+3-MJ0n5ns_-Q{p2dcJ(6id=0?n`moyL=H zy*S?<(~B#}^9v;~cy?YhBPlh8VT}IMR(D0mqNTKQ^6?cJxB|1vp#*#6Y>+6qyY1Om z`^Xxia4fkO*TQl5k2P;8T_cN&ir?tP9#mDfV}&c|Os>VCLyAEPg{0UKOtcCn57SC$ zq;LZO8jk?-i0nm>+oU^Y=h|B)FJLVvzkMdgt@UHb4h`7mLGE@%;zHK~E`7feCu}^R zs-pxBW<5%}C9d$ldl->7?)cgH&wlvk3x7KCf9_pMxbUC$5DqGcgLp2fxQ1r}Qn|_t zuvqPyPHp#9?vqf`Qgwj*wIC#m8eNCG&Sv&V@wfO@fn3}d8JD%3-PpDLw{ zwvnh}&<1knZl+?XFiMXw+0?~jYh|?7c2KlW!y}s={l6Xl)wvS>(>yJ(7;laat_Kxm z5l65thy9!aI4pskA+^&}S`x-u2b};;B>;L*UNVvC>*;`8N0<+hcnkv10uf49KKH4U zZTW>B_PpdW>B07O8$Wn)>9cokc>l$rj*W;xTDQhH+=lLRxPrkjP+uAvrc7^|IcLh; z9UG_5uBfhC=db>1u^A2_zfng>JDW*UM;0})v`kn9ps%0O;&?r(-_fLfDFkePcs0nM zfv*-0nLk>Wdn2N~J7P}rYCox=l8_@;P>Yx62DK9^G-Nq^yTrJr0~Dfjj~_KDq7mY# z3REH(fEx{llY2y44|I;GY%JE+ZOC-{&3}0l;c<|s`G5E!+{!+L8`?g}Z47>lW>9#h zEm7n{<%b`At-|{jp3g#vUt9W8l%b0Y*>dcEe|8HaHHy*-tVugJuu$D7d|rA?mO7F| zDlZY7W2V$z8lkDeYV7~!EQ}!-k;nF{aNyh4EbTGp<)w8gRr@E|^{S-F>Kwy`xZt89 zW=4n5L(yGd139> zz21dUWtq+J7*|v$gHH3j&3?e2FKCK0#S`ciwQ8k|Y1OdHJvol5k1|v zDmpyJvEm;?)6=Hok0l=uXMrdd0^SiqW z)!CAv|6#!JbxSd;(yH_2HgtY`sBfgZHP+i6AM76MOJb;9U_iOtUJw4~51{XSFciis z5Dt5Mel)d1+BpK1*LG`DyylseISN3~bXoT&e}En_9OrIwFOH*Un)dxNqb0;PkbEHWGn%yLi{U1iz5&V%g8}c5?U-;7m<_S5;-ykF`8w-GD3bRW)TIC zibqfuF0)F0&(o_M0P2CH(fig8@C_JRvetAXmV9#HLkyCM2A`R43byW@R4G%!mN8cDFTV#q>E1f^2lcj3Kxix|?|W88(27 zD_KxAebzIm(egtHabba;U-0bTuDQz2o6|3RuD!uSLLKSfI8RI@x*$!W>0ypMm@#_N zgtUrxh^t)X|FT@ylFJ`H_w)~T`^WFk+zYKX?PFZIu6$^`4W)jZ`lPb{ z#Q|NKcgh*lOjysTTj-8w;ASs!o8?|@X~y+p%=KtwR13Kpm(i7V{H{86T3HrK7Qq%` zZ6qwtivdNf)JKig!9k!EA#{O@6A-DBFn{3rNEnV2JHl5r=JqV2l5t9yq>wo!*Kzg) zYkj<1r3D;TfgNQ$V4=`#+{i?XWbeYk`ojGixEG@#KvN$$u8 zvLkl_Fwm%jT6SP)IF^jXld+L_?1jF{s=@yJ{JDMJ%1Lu)&8;pgLRu~c14l8Ez*R_z z?N620v4@%a& zf6(=I+;PPu2hf&&x<2=ARJ)@wHOFTj(Cj;-N}KL?99rslHDcV^W86LiDxzXL^t_xr zLG{K?*Q+CrU$+{!&-DCaL;Bg8x2uLJAO5*DJNKJAPi|_et*PmVcRsS=aeNqx1a=GW zK55#F(yAH*)$B5H(j>#e9%3)9lJ3HFIJ%{zIP-K%{HXuRUbdDl`Kd( zp2_v6I3KvGFcPMlvf~p<-zcPOBXNRVaIu>k`Pg8eO@53 zB?O}8IRAO!Qxq`Mu^-#A3U3gV2^SS#dEIrqTe(QlT6=Y0n^RlQC6^O1Df>|(vbJ2` zhS+1B-@tmkfz<)^%V)lYJgpraXNG^PhbSp41$Qv*>N+PqX19(S^ zql>r-+{l*NKuWPqP0Sf^u%)Y3tZ?G&_ma;)?pOE_*H21WLV?5;TZk`esSI2Deg5S^`BvlEY6|&#R1E8Kd}m$xIi|oYntL=0~9JaEc)B+7m81y#UHmS}WOybW>sr z!b2^!sc>%WwU*fsy%F!>y@y=CzEG}T{$d9@ftGqmPDAHXkxUlqSQu2U!>ohE$KwrW zw7!hlo6#WqQSXji@lvG!a7=4_d%e&e+5WtLf-^F$_gr)SJ&jjBekz)5TgO)9x=Iem zw=6No%5|nZ_*czh;HPJ@Zw}|WGUi@^>@!i%Ekj;lk?s@79$%Vm%{c$s&Ge|H4t|^u@78^-rqUkK!s>PogseCyx`G_?yXN*x0 zqah%h*VI=vGzCj4Gtg34%@B%Yy;T*NSba%gC2|pny$VEd7AbNzJ2(PJJR2WL4)-R9 zdJ}^^iQ#@bWG=tM#a*5N^cY$Wr_%>$b$HcDkca(c)h>^h(3VjX?uP4u{Z~};h8qbw z0JS8)rPq8nPN|6dhm7kQsQVtZE~c&z+5>~G_Kf3#dP*fZX07?kOd$4Wu!&w8as9Q& z(U;ZV-Nk`ai366JAMU~|TIiM^ip*eBzhblFqo{UClWU64al)$fOZD$pN3O>S3)k-0 ztL-^u+SKamY7FTwAK$DQQAf_POJe87$I30ohT~FOni&xX)LC8TK4bWcd_to5 zvs1&i*Lh|N)pfBQ3LIdJuO>VN6vJ{I_PQmR=N-i5!uc;Y{q;F%bNxFHxIuJ9m8FE)&9KLvej8E}df3b2gGbw-OKLXymI zko^${ANHU=blWW%}ii75Lob zx-}{GyotZZlIz?JXnfE!H6Fs)z)!fQ4hPSwl8WT5gi%Lm1=KNb6i6fAS6NLw+v0+f zMVBqE#!xUhTgr8r2-uI$EqM0t1#;a{=BD~N&@?e_;n1uNNwh|(M0{6x^-5sbd-N)F z8AqQgfV%LLq$2|ltsd?K|Nf$n+~zl~yYkKUl)K@8-K&P$I^jY1tOqK=P*H-#c%a|d zzu9%$kn2wa{_nJhpBZsiIgP(pM~@E!KE`Zv=KfKaxV$F$&$`6ZP4T0{nRvz=$xvGk z+5lYs4(o`dJL{0(m|P;rUMxnNM}opghW_j~92H!O#+Ag}6oj&st*92sb84LkLmvTV z#)kcrNy&m&J2`>ksKm@x#>VAUEA7aAHMwb+w<>V{>J=`OW*5Q zzjC0nEj|)K2wcJnb|D`g4bZQ6QQIQJ$RuL1p`J)*OJB>%?zJDcFMYG^gBM!ge0=Tm zcQ(KJVEdw%`!+0#4R(*ogG&>f4tmyv!=;twb(5;6%&eI{yK35;iYc>7>Zf{wMNY3@ zcLA2qDJUYMK`Z9SyBtjUN9E?-Xcpd-S(!kGLZvm!Lsd9U5GQ`v37B*$a3HG2v>aZl z{m&$`9C-QYUdW|=837Je`Y5$h!TW1F^q#Et@D856id^_DVp2H=`oz%)yr@fHrvc1h zfYA(j=FpyW8eL}BaAYtUi%NLX9<5~U%BYltu-Q7Fr|w+H_{S2seX;x;Sf}JSpr|Ku zC-8_#9&=qv83B0)Sun6IFFNiga-#{J{E1G(Wx;~R4cTp*t!!(mw%`qvi)W$G$d|;y z70**=3ky`nmYovIYJ;c_W5#1ET4Q8Wp|ZQhKt_FFpJ{VlOK26Y)mE>ew9qZ4i5`JX zGGYQ-`L&4lLQ1lkk*GL!X)K8-l}g4JWFhpq9L(^x`ob8ut_;5 zrU0$Tq7<8CgmC2fmB_UBF)7(r>s4xiBq9H;+#Ww>Ms0a(EFEs!!I$km3r=u^-2|wM z!|sI01{WW!pk{R)Az}1pL@*ehnJS;7&hIGmQZ6y6$wubwMO}*q25)*{-Cx%w?M$bM z-1`%sX(rrF41RyZl_VYa19~H;D za*m!HD!JJQF3J=u*VqPj?;}hQG<|6{AeOqoDbqPps;Cn3iC@92M;-$dxt6SRvIo)w zCOmf-P@)}mu7#tF`Y<`WK;A4RE3#|n%P(ucvYEbHZz>c40q?e z_e5p_882hNiH*MS1gQ>BK3mvi+%evXBwI6TJwcpOn?AqCoE;iG%D4KqvcqT2np`}2 zM!34k>o3B1Z2pi*C5C(2JJu}P@X@QQ-h5{9bN7Dq^c{R9nk_qs&`ZL3Fm+EQel=jnp?4}uOJ z%@uO^O1;I^;mXF+x=CdXO;wYpS5BT$-Z-_mx*jT0Iyr`r;*dXDe za27aSwK#%r&T7904IxL9s(l1EyXUY85*oULDa7D3Zv64s;$Qmk7J! z&8jxR+N5@RjSEem@Hy1kBB!ma-Gvcc0)i(REnHh+9z18d^--wzj+>vP0!_QU2sH=})T_sp#3V z#N;NmK+%Ph&~Gj6%5oCq8q79r}jh!x|^en=WwL-i$D^sCd^3}nW zssU402XGApJkAWd^&-lgC)g7lnUTTAI!%~b=N&oyhfO}TC2jAGqrGX~!So3>@pe!3 z)*kx1%kF*Rl4~CO`^}f^T=E&kI^7Pk7LcpwR~R?dq#vq{Pj~0mWt_J}0{H6g`UntJ z2{uSXyCv7LcR|ur#>ORK@?v(Qnm!8#DmF8rv7#9O(?6MhkTkmErhfl-%Q2}4A=66% zIth)?*3X=>F1PT{&~oN&Kq2DHo&;_K&k?YNV>_xC05 zr*qy^&IgEixW|z50A+y&U?JoPy1G~uoTRy0V7JjZ2IhUus=oXJ?Y}Y$~2jCn$Fh<~uwJ++Ch;GX9|ix#rI49yk?X?CQP} ze{ofDReeR>q^e2Ns;A7TnmnVdeo9IGq~hwjP-&$%6h>s7c8h_=xb#%q7*V=_@RV7S zS8j==flh|j)$hd|dju6Ezp!Zvh?wL`!FtX15vu}*E9c75RbC&~4lQ9=7~L@^sDB(Q z=*Y*;Rh)^gFm*_(l+d`TeW%>@+s-1nZ-p7D&y75r4j;YIcfuOu)SB>&@JxJ;D)v>{ zz{tpOn$hX4hJQ-16a9!dx7BC$r`pdJqmkV$XDSUqNu<$dumH$M!(@ZoLLRh=_Kaw& zx-LchgCnUNW)sk)QQTlV8?d6XYUZrj+ufy~?+G&PTOLXVk0TKC;+bf`G!H!ZV7Qe? z)wYt$Xi?YzMRzMf7w0JvwoWpbyrzss0w*xx8QUGlRWlf=c4Hi9P8%s4AT0+wJz1EJ z5fWns815)`ryPZPmS}9-T_Br63a7}HPokaJ(FeMn6mi+jPen<}N1sM1PofIgGF3#r z1mkV@(q~z2rJQZu31nZ~Ha2bbP9hZBou5xJy!@zmUX-WCo}6b zkZwr)hH9U92V?*wPGNYu9zJ*ZLtmR$?A*|H^Kj7-C9xZxTKCj&cIon-o~p8Wgirbf z91dTwIBa(TEm-(*wudadaz5~X*qY6IBxElk;0b5^IX&J%L;q4Bv!6fp)j;y=p(HpU zv@o?v7)VI+ld0~?0-hA6ql_eWfKw(NH3Oz|0}et71w(-Xf%(0pFI?%?e%YXB9UhZw zBa!e;i%0tp`Rf^HE|JV-7Dl~4DeBt8HTb8&nz?${486x~#62cnF+Dp1xt_@k{c2#> zm#Q8OYv{M_PZ@!<8SuhkjgBL_2Ed#cs=X-N84piY7nlN$Pzq93Ml%wcG4Q+LuMC@^ zL%qWzTBy9Jq_(1>va&K*inpb~P>~bu-&7v}fjBL2z}i+(f$NyMY*C^g013Iu+<-qE z=xd1a_}$*1FHjT=mllg1$J!}>^SVy+iY~|clzvr1j^N&T(P>>wy)Q=~amSWZzuK^F z{;fxUafCiZ(Bi&6?ZO7?GlTo0Gshp>;8@U`d=9eC9gZb&{hWSyG=x}#;PQyXo6WkKj0cz97;tD%h zYfTZR@nUDEzVa^ogwT}{mXg6Je8P` zeGWVbAyQlVDwncS6L~_c6@ZXtps{?5EzVCKm4qNFveK0;25l*75>^+=W9nnqostu_ z8Lhx5i7k+Zu|-aS^=tZ;muZ`f-KGXPi>FIm0^%FM{{)MT)m#-I7hGjEY|GDqGiW?a ztrpSQ?rxDf$~lC~a!^AV^gQ4Kag-m3;=NlM2@@qDembS9+HBVPF+LxoRBipTTb)Fk zzU+y#-^jujqV#U5fp7y0HP@m6C`F1xsnX6vVc{_Wa1yk@+H+G^Sz~!L0-ob7APd8j zERscz!e@{b!iNkrtFLcve(Q}l&N=Tqb>`zAbR(Y&KgW+@63H*g>A)&2tsH-)XvT6Z z;7>5$Xy3pRcgX=Ij!4UfpKmBT-Pv}%bJ}eOgtO~b|E#a^h8>ePzcp00SCE7%n z^3$CsQ(-^9a7sa56FS{8Zw~AbV6oWwEs5Os+bOKDc=8a|A_WnPZa38IkEfbdD47J_ zhot6%^Fy4FF3**L_(A~!BRMVya2p6$^2n8-2RdQcX(NXAWIXWri1+C^IcH+Sv$x;# z*1BN=4uExBHGP*Ojy_~=*p-XMmpyvl1Ft{S?F?w<)uwBVWZ9*8Qatw${F7Ghu=SCx?}U25AM46ttCU1$Nu8G z2UPh`4F-GH5!>|K{m;F+A*P4Q_WkONJ)`fQG(XVj@Emx`$>GvT^`UU3YjDMrcfPW; zN3YxGpl=>h=SZiL$etfbr&H)-kVzq%8cA}1rW4nL>|^;q>4Wq?X|T#(XQCRa!Gi1G zi_CT){yI7L4W0nR19Y^oLbGWqQIM0tgLE&{PH=Xzo&->c{0fNZlWszgJh(VhDa|}5 zn-O|0Vh?aBnTM}3uAO9roaVkE+GgbZ)Ulutb$WM3KWU@$=Be4k---NnlDQ$JAzr?~ zs03QW#r4`(E3lYi?wV^8#)Cb%7YB_KtDI-lI*whL{eG3>8zq|83mpJz3i2Ch#o)K7 zYQH#;+mOjQAKq|s{p6{&4UI_k!w6IH*guy(ol8=|TaU44Jh})kT+|lx|`b) z6_o=YyqBDJ$PQ)9byYme3Y1zhmV6!T!V&Jw^ur`?6|D$xG0AoI`}5+`8%{oD&5953 zahObs7)C!|UYKoFB*~@JwbU}oC)N!>)o9rzp+g)3!b3>-%-bblg+|3xhdYuf&$;d- zRCu&X@8RvviM{OD=dR&UfNVFN$n`uaO)MXN0%|3*8lD+zaSQl7S2NkGzfI~Je-dTD zg~KR3k6p9mB;UrtzIXcHm;^>^U{p`600H?Cq%@l3I&)8U4k_(T`VitAr85D@7KRb) z0dgpEm-m)jN74_*zhJ?FtFOE=j}NbYKxVqIH*&lyI$#SPpF-iM2B0Jx$u{B;3ukhB z9V^~%KJV!@zj!});4E{&CeMkx030N@VROn8%02Z=-;VoMtbeIcsL!IqxL!2(%U_$+_Qq?S^G-YU_%DT)|L5A% zPQ7hek0Uo!I%CdZ6>Y}Kp0>lzd3oye(850qT>Ohe`WG)t7k%6JlRx`M-hMCf^6uxp z81MJQiyP`I8@)sCez?BFS24MvsyNo(JV;#3*)U^Lwtel2cOQOdz;^pMizXd$SXIk= z%iE{#|Lu8YllEw8YS^^){kLwp?C#DH6YXd{!G_(xwQqXqx{^b`Gq=8?sG_R0y1u+& zO2woZl}$4$r_QXLGPAO2R^=3V%|>2ZMbpgENz+Rjr*qHd6O9C0}CSs#c?YwA$2H_eNq-Jkk)aJMsn>Fzy13I{Qc;YAQ0TQCSrd5! zu+*0T!b$3V*>i)J*k=!W0A#+u)}=kGV%{M-g^TuC9%WXt1M{^hkE zDxlC(ZO{MpAFsBqed-TazJ|Vy1=({1gGj9!#n{bf(un_4Rx{JN=*`8wvfXfX4yLNo zaaq~Cy{n9772#HzoJ|$NzBx@t#cQ`YTVk5aQrfGj2#kLy`2=!zdTRDzNY{DnCCinq z+9ygnw`?mrK)~iG>B=14Q|McgD=KoQOrEX(X4Bl3iCZHN@V_dRj z3jO(Go{4U2HDew34TV^(Yzu)LK>{dNkI={Y4VNV;g{Ls31~=lssI}1Y#wL{sPpzFw zT=3{p~tdom#z3vb=V{W+r z?snf%O@W=K7>~TRxvL=*Z|+_hi@rHXdEPx8k@W~@iyFS&*C!{GF~6`Eebj0xg_h_A zcruZ+*{GX$S0-k8jBj-mpU_=;dSCfP17&xPgfJtJ;t=Pk*9RI8vI+phCw-rA4QbsY z+Zg1Iqym(TlLwxc2j?Ko5MSX#K-s(;_jG3+JBN@mMulxo4|VbJmQ9|u@3CiIa#F3f zY2~H?hdF|3J9PTR)K)gtKmIM}E9X{)Q>*+N9(Xx)!;<2EzE&F1w2@xDWODu2d(OW6 zk6*hjeDKVm=9~M~um0pm$N%B?r+;@6%psT-yF{&OTa`26_>|HHXvcox=}S=QeIS1U0hjPTGLQk ziv+jHW%W&^4O2*9*EJQ@HHB&#Lp2S-YP{+Lm34uNT2!X_%Bp;2mA;Y+UvU{A+&!>m zeE|n-R%Db@yzx43(=kH&-;NE2~Jh*J(qbpx| zV%6*OKUz4yeZ_~do)#lEfS~^H5YqAy)K?LGJQsND%7nRR&f;riWV=ijEey3@vk zy~>~^dX;)_ha>KrE0k90*&K_-GHD>(QIrGjiW#Mq1HQe8fjW$R;tLiJXE5eug1XO< z47O}LrW<>|E2b>uIu3)j1vWry(b`?k!JHyKz(2^dMH2oZ;OY1%Zl18g`RI^V?g9P; z;r|ylewBMo=*V@yaPdzcjLzN3_0+F^^-OoZh0uh4{aH>L!)GmnS?xQXvAnC!)Dq2) z-@i04YlnF|G?hDgo;v@hcZ}??yX)z*&VP1u$8$eF{hsI!ySW}c_x#5=~UN>k3U-36DQ~- zekm1!A4jwoC18|{vBmZF=FXOOHZ_TMD1uzpH~*(FF3W{Zd!#_#OR|`JSSal*eks{x zD&at6ZNV@L|M+CWb{o>&etP?g5&==7W5U938?!iS?~K16EY-=f8q|`BXT%P`^Pk+W zopHpe!i{u6Ipi*)TFK9>nN%(Zej<9xF?zU}mpt3y-gVNULFb%3XWjU< zSvT$NSlHq@ex@f8&*oCmJKpSE3MrQ-2Y#A@Lsl$5S(IJMy;BNaLbJ+OTd10jngjkK zZ^h92QGo0U=o$TV30`f))X`?G#A%*UmRis_^kDtax5H^5w6L2K|EGF3;cLh58G0=iJgaB!cSn$JZT!0IuRFV2oGv^=V7E!0R7Q&d8i?Qpa>w{y zIj+`sR9RbtBR{1QvakKZscUmVMdCm{!c-!84x!qvbI3xrtP zsC(RGYQvEZ|GLK?^q@DaKj87_yjuxRKz+10adar4{HeEjqs zt6q6*u)R4Ijle%`n>M6u0SgwAFcux^>5dQe_5fQzq`z)zZe8)=%6DJ*=*5SZzBd1( z*IwAPesu?>)xN+;?=5RbPFS0}v?bdTPc81~`NQJwhnu?(Sd_SYc?8~^=s-{Z z2spfv9_i`t>urye^#Ef?(>r8j5ETZeQ))KV$fY`ueg1iv|Xk zc5G}LiY0N^Sl>{J3KTH5RJ3mp@fy;cRXV$#iT4c*^wSYT5(~%`ZBZl9Sfqa-23MIf z%uyYX0}27xNGg1#bi98kk&5EC1A_w~OSltI5{Tc9YwNZ;!3L>7>&hY}0*im&Y;q?(dH}_vSYj-Fxo$fAd=Z`g<=p^_o>Q)`|`!doq5N*uRQ$NM*|>CD_*NwS6Cxwk-$=)i;nY0UVM)FRQWL!ua@i| znI7>23IAi{P%+sk^VfRi{pa)*{Xoe}OAIN|&VLqiYf1+Lwx-08t$ZU9R`xiRh?+2Q zZHtu1ZBVG_s&nxmlISoo4PsmBtIUizCqyN(&z311t!Zz2uu7|@RBMKMl&nljcefK2 z#hs%n-SdeWk~uGjEQ!1yr8^Wpt;k7x9!5`u)ft!_0*G(HeMEL7W1h?Y2NQx(%fO;a zoC}B&j!}UPhv%S!W?iy#f6+_ys~ot5@$M=?cdzHs<3*dI42)3$=8#qhFUox&pwG|3eMWJi%}s+j3RJ|^k_0S zkjOz!uQ%L_5{{vq{^YRd$W0~3Z7w;gqZF8D(Hx2JzNFTfF!2JIS651FPI6HkrD0=K z&WPdsZIAy~-GQt6eK!tzKT5lgZx0^X8v5}jzwQm)Iucx%@ZL5xwPy*}wK4FF7(DB) zJLWt4?)JlLKgbnj-d~Y8seRhYOv!Y_%C(M5Z>;#{9o}Evll}5fk2qmkZ9=PxY1Jv3 zIrpxC!8601R~N5+r}CYh00>L-K>b0HC1?D0N`aw03iePNV3YF5at{3PLv zvo5#?kDK9InD)D8a@nkx4$4qU=*wRVrG-gxr>loNEnlxDeG|himEFD@QDo$#GuhpV<2cQ zxwzr2tgb9C@n@59cmTs5blo)&`9e>*8NSReF1@&-qNXgEM)jSve~|c^urgZv%C!ol4R zYO2}yxUV{%d%i6*xUMB0U-shil;2-}#IJwJ}>*^`eqaQC9SCe9Q$u)qNmp8w1EL*|QNlNSvyopF(ehP@kisEHo=jErr!3vx%pdrT3c=C_<`p zEb-E+^!{@~9t8X{23n#GrjW}`DrP=pCBqOsM52^ps7MYLLI8+uQ+Qj!ytA%Z5LeuC z3Auy`u4ug2#G&{i1QqzIblUDqrm+n}y!y;=R~Vb@>#Jm=Op z0B$-rOeV9abK*9@IWvC#(EYE!b@v^=KPdhp{F}$7dh6WURDvFLRfKyYufO#EaOs!! zXz)0SQd&vUEP;uNNj4oJ)FHTBK6vv1jDoY_17Jua5*L~FMbEDpUUAE{XPtlV`!TKW zl{Z#U`Ie=6(khudc_aTQdXaxv)bA*pbHYUzf4gDi%_}bZ>)S&V;h{7&k zW@*p6-ARv`JEkb}?y!HI;Q*3hoyYum7uOGJJ=C?G=#dF16YJ~m8yt*n4j(76{yl3} z2bRa_IDh8col0lXgoM0n^(CDH?a*(sDWJnpD;^2x@nzMEjJQm!f1q!0 zU^pX0?nHH;JLrdEBJY{(u`(`qu)M0eDy+o^k_54Uz2FAGF8GQo;2QvqIvtgMTAROg z)A0V(=nfV6DRWcv)rO$Vsy)SSg9(~DXfj?^W45%z12D3wRcovz@%Z03l&vWSr)`8< zCMZ*a`dq3TQR-Q<%dXQW&E4iQHn}#) zHQ2hDbygm5Ov4-3Khm6n4~mTp)N|&X9xVmV0N+&(1s!fwN89AjAMU!^`CE;|JJSFt^i^L7A~~sA0B$_x4X4ocfr*k z#70jW<%jYU&{|m1lq=*cvs>BN%KWw_A}@ID*s%Q*Vd%D*DU&3Ioy-yUp-`n2VpQWC zP!~g)a+Hjz-D2X(y{anr_|x$y$Ku+f25g=E>50V(DQ%O@Z}aj6O3DO=L9>;YDr%o{ zNvJA_9rH%mAqyzZ0hShU{D#aU={hZiW(Af%F38*@|FXX(+lEIVB9FQBDBaGM>-N)Z z`GjBW{sa@LnpXFX5@gu9v)#Q5oaKiUJK#(n%xK*yvps17Bt$)|MJb|#6wUx?*lZCh zyD%R&+Mc>*Q8TtD%xg>*s2PF*ZCLTI7?)_y2Ffl+j<$np^dA{g6M~;UJwje&O5o;K zfhS-p(_8F;NwU-$TherzU?A#yXbQ9s7f$e*KNP zBkO;E{p!s*pQ-z@niu_DKt?&!V<08~2pSiz$wH3m@!;OTvm`gX_+IpYGj6!yxBt4~ z_jg^sZ%O3i#}*?QU(7u^nfw-tgoOb1$4(kD< z$BLx(<5u(3R_&f4{o5O9tuL=Pr~0XM<>nsk;BYR$&#XmfEmkRUv@uQD&{pb9jUUcyVzk6_f3YSV|jFGpl_|+fpe06=MJ_@ICKZRp&;uY-OV14Q*#t%FoJ zK$TS&3Ub@GQTSBjNcu-V?8%>DneKVg+n(s$)|^o%Axfd7G@sParBAl|zBK!sYBUN( zPcte8gI{8jPXjP5<(jc@5)n=fXhcb21I5l(ROG_s2vLnH3w*+`pmY>In|d!l;Cz0Z z51$5DB(_;RYl35=kPIyUwIQ>@=bT&Y3i(_)ht`tQ*QH5&ekEeQ9@P#GnQK$p9)1(; zzu=|k`OJ>2_k1Jg%x-+>p_l*k=2>_C#Zls}&3fu` zfLQt6S$BR=@~vB+ICi?55#Xt!56%jT(U6m$lBgB50zn{?8zY&BB1RtBydgf+v!yvs z(PPpFsQHbuvrQAy772Rc;*xMlS$SO}{`KJShl-SX|TS|kDycEkQpe=B?ljQ z|EA_xe-L+Y*$GOy+uVHM>;;3!o>r|$Y9(FN4m>Mj0~lGCB?uh zSld3_SyVn?I=s48>DG4-f{s%OX8=A4j59ernD&+yd2^B8xQ;P7&0Blo#$f!!X+_Tr zrmtO7wcv9LC5tCF~>;GR~GaLBewl>h4i{j9+-&@#vDZ@rkz!BS9`>NR?nNJrd0XNop{f)< zfM_%w1a$$BA_Hd&raBiJ7&gPjL6;0TZ&EYIC$^&gZ#}T(mbdI2K_{d=Bv+siipBT1 zX*YcgFFJMF@p!T zpb`UaNGG0iQM_zciDiTuN$8{!m$6(sHVMg%aQ^cP7F<(M=jJ@_$G^-^-Ij9wvrVh0 zgtUL$zC-6#eyNB;w%iAWTp;euR*4Z_<6Kq&rtMNJJ1sp&oIWVm6 z9MFMKc2LkPasY`_+b3v#C2XEwsr{@9%|-Mb{Q4vh`B+#U&>kq=*3+!BdL^@<&LtgrAooXPeD_dfqx>qykB+RGsTnJTJuKj&V)Q;O3x-4fU^sxzFs0=sWtFHWNhT90iGzP35g81}htU5P zd3}CAI?(!1KaUBA7y6-yc91jU4|>aKUVws}iYBQ?EmFH*>xg(W30EeO)I32iG6UVG z`$y(Flenzm3L-+U86(js3~g5c*gr|+vc(fw(5m6^m5ii{!?E|Be($8U1(-zU@+oIfK+m>_>!)VdONyZdZ`~#-(b-1)^o`$5&_`yaixaV z_6;@LHr^=8cPR3uLcj+p7R2hH)e^w3RMt~)$_!n*ll z4$uejiqFFT#hXp&0C1=)6Eds2k!4|*0^$*<-;yN}>2vmVqC^FBB9JT;1QCw_njB)8 zNn7CjOiED2fAMS9)>$#q9q1M;MGiWFIP-rUz&_^03As3NZI9nigHlJKT$ioEB6Acc zE}RMF#1$E7ooqjas+3c~bvi|aO`(XTp$hf}HwwabhU|xPi^j%)tPEyOvoM-{<&&r^ zO+#H)@z~L3OyN!W1o5J8anctCYI$?23oHK+F#K+XzF0^$=-tJ%&g`p%C>v_7mnmP|s;EfTB5pM`vd;a=l@!0}mAH zCz+u@T+5j7Ib)Yj3Oeh8t_*_Jkkj0G4fVc70LtaXK@oMqZX3NXdDxT>FFVa5-$K=! zJlZ178L5Sd94`c|({KXvK`&`IpLAf?g-)ojY$Yshk+GD&(CSOl%5;Wjb1&s z2};i2qhDU1t^Zv`U(#Klaa9_wFu?3!=!LxGU`JJUB1KKRIm3XeG)D&ddN!>a+`JJ+ z<=9>1fK*2K7tQ1dozuv~jTB1C6aj$;qD;Vnino%|BFN)PxU#E!C}fAs=Aj`j?S(Nz zL@caPrb-&rDkdcpNHGjb$wP5j#z-f%bbM%VaQ*t`WQ3yZMDb2nQ`59*)2Ek|6obVJ zHv74)T31Fpv%=gbOzIuySUKMtF@M>TgWn#vy>$k#@l_d^&=0#Rb(9m(;xc+5+cZQK zT`9P22zLnbUh92sw(C*3_2$^54f^q=HB*Dd#R!DM(_kcqTbjE&Q=3;N7bOtP;Ui>* zcP-j;O7*NzQ5X}@lGY#WH{Xd8RLHJAb4Oopy4RfPcT~cE!D0a$;mlT`1Lo5T_g!SfTE%{!);Xh1-ui*g1>Iy0PhmK4L6BaB8xL6r?gtCQbaV^{RQ`Zrej zQ`qbF5M|TJV=29mzoXu?Ky+Z8o;IGqOYm1VUlOK7wiKbQaim!?(dY#tK!OfU9PL%w zu`2BitW8>t(WM0ZgSB1`jPRZ(!sY()Rt2^_HpMb{>cw7{_?CPwZ}N6LuhFNr*QxZ} z67vZ5!(PY5370TSVNj4XTCx&aGaj68FQx64Gk|Kg?O~502&T=v_AuUQqVW9RE!VfL zYuYN5dP-|XXgRqo5V^yuc`GvzOf>=QTevi0uTx5+V8Ib6U6``Kg)c@d;kkLV!d#sm5^2_hz+WuKcD@ItL^; z5N_v%s+=#Bx{%Qs@HW z_m{*C;oGE1&M|9EE^8` z{+{+VOPW7=y?ynfk-n}hq^Wg~5f4e@4ghM#8!q+*0o9t#Lt(RVK7apB@LGu+Sh{kZlAAw%dxN{a2Bv}_L~(SJSfFXdTi-}{#0n08{l3Xe6GO3nrB|!_DizrrNaVX&?mhzi_IFW_+<9=#;-I^6q z6qGo@hh$uFS9P}FC6kUPU#!f$KCW^%#$7;Gyhj~dtk3@oa(x2CYb~)QjIBa{1+^=R zBh|QYej-n`C~BlG%7iNqv;rPbG9<6z*%W2dnusBb(3;ncvezxSp0|nkDGKOvf={)z zh0h1eZE}$fV-XNUJJQw=K12WvMP)51ts`kd(!;#2@Njzu7U8hvsL0;hfy^I2U9eIN@;3C>qJ9w1KQPC+q~~3_<}=%z-&0$^_gAgfY&zzDh5#=~Gnc zyv3y0ztqtx_P`Tp>jE^F{2d_Z9q9a>LnqOgGc)4Ij<~YJUSq_Q1Dg1N&*=A<{T`$L zq2ZGIW0T)0yT6pWhoc7GA9i~}Ze-Ev}9(EcE?(}c}VQcuv% z@t&N8FgKOHj4|V_=!Gx~v7-T(?tLva9T4#chcj762w7~fs71L%9DQVHu)A$z`|71@ zKYDZ1>LtT{-C2~3TTBYU5eyEhz1tV|7nPzItF)#bQX2Rj>DX{#pdA_M8s(u^SJpOE zH%vlT^5U{GUx3&uF&g%5%9yFdh#Jz7D?+f3K>aM_8QhR}f_Qx-$HyajSWXLsLgAv~ zvhuR0eUm-WL4TTp0*OStt79{SD}3U(zR%;@F`yq`X8fo$y+^=E82Vqj^l4u0ov8k7 zL_e)ko9kDdxw-g@L@C~2?FKXEC9T;f`pr`+%_j!5L&D~z?b`FRsUZHzLG6eN)bV?A zzNYq(#!#-==SsSr*;?1feQoPnB9*CBIt}do>eAw12zhx`-s(^+G?461(*kNybEGZ4 zx;!)Zvw*&T$Wi5|!aN`VFk&tTWjV`$lroJV?hy}~3^HS^L4_L}de-wo#mUtjrJ@c{=+LLsbmBv#(^tH1T`arj)!z&MAv-09!k z(5g2-j@OiJ`sW3INgVdwU5Y{U+%t_LnzA9IA6#?lwdS`@+^Lw9`L1WLx#AxWJooJU zS62mh*{dmNbvd(TE!QaVUbX<;oZ85u%TKw^{MNBM7gHHGZk_9WD%aNUsgz`X zK3hMNFo(!;R+f0_rM8VtS-a^4IsI6WiN}b};ed$LJ<8h2%*wa+p{R`i2D67;FT{u6 zLay7?_j$}7i@>}(j7!qSw9?ceTOeof0BCg@Ldz-OtHKWt?=ccm$Qf?-r6o&{OZTiQ z5FuikGS+kyIVoe#raX)Oc_yemHb?I9L&||Mw7#@Cl+hr_YkedkC=|d2opf=Q9D=~Z zK?F_%FW7ao3^ufcrJ!+ff_gNjY0+inEk7|5vCWjjh&i)^&TOAEwb_wwcV;&Ga$U|$ zM`v>2t(fs%+y_OA8wA ziOw=tv|T)DI+KO%j#CggT@d$8DJ!l_565G1d<$2@Kz|=Zy9-D<9?BTN6r@c9&@?;y z&3!`Jb={8VXKCLp*LO!2CDxh~=I`q_@9Q%UD<%W?(E;<~HWNMHu9;*am2iGU-!-7U zIIMrCOq=U7Z|>DmG>`s0$P93J%UTn2GqK(>Z!ZQ@6&@(ln+MZ1E>AJ}b-8!|9)_SN zQ0u6TCj#Ai(ygJf5N4rweXKb;919poSC`xv+9gOE%pzHfKA>TL6eo6oLOzSc<-ej% z8hb6v9S|m0$7P$fU)O3iZo&cOq6??XPq2ptMp%IvXtA3K?e)m}xBhFz4&Obj5rEfp z=TxM7Q~Rc#n7h~?Z*Pwz23k9^#U+mZbsPGTTId>h{hl|A58k8L^pv6jBzE0M=bGk0 z52Yw(1~+vKCx*KFHoth~Uq7hXbC0GHKpbKtF+Xc?%CLp3Kw}(J?l5ca_vuEbjf>lUz)!8 zp_koe$rM+7)#NlCR(Tbokga4yi#wi8=KC^*3~U|6f<1`JIFJ znt~J`BRK$Fwrz7n59E3~Q=t-Xre{M(x~M4N%q0i9S~s?LMZLkqn>RfjJn@VJt6gxS zVkY7r|MTh>;{)q6`yahexjERjX(-X(lP)gKcC1|2=dLJ&g@Pd@2Rd3>T03KIWMJkM zBU$wAlKh6h_4sObxRDX<@!A4R@RyTIIOj|)7yo%C>2u_Y4)!|qJ!qa zho~Tp5hn&S2JqWa7s?bSglAd9N_?{Xl#gwt*rGWxm0^Oz;-`u%VCQiFsV8klb7q~_ z0ke^cI@smQAuifW2vG|jGI3qO(;oX$AJQpYg{<-bm<5YF&ia>xI=@J+J4vobn&Ytt z1_KLX;b)>{k4LM1H@xfZv6&qiS8vu;sSW?h|6-+?Oyqn?10_m+xMPty1`7_3cZ9-__b4P6P+(o&pf^|)Dye`My`-wH zq`I!Cvc}A&yVorl+`IvmKk^fs{*c<`4umRd>#OP;%ByRGVD?`0h*Jf-GAIe8^XQ1~ zc@eECRFd0(4J2(PiH=maB>JUPQud(O02L2u zOMWEXWAc!j%9O6ZJmQQS`k^J%?*RAZLIv~w0qyw+uxhkthP2!INEf`i!T1KeNl-$v zxt1hgejPgm^k1~;AIG&_g8Bh437Iq@v%S9HfH|jg&|BeZaXE5+SG3N#C^p>Nm#D%7 z5)2>GH(c&#GvV8`nRA>qlVg!6@D3PAq1WhJH@rR*%lb{M8qyQlL!l~PiJUqz+5?07 z9zm_hrQ)C*C!yCJz2>60c1neIO(%-kw6B#4s1!pdp_<+S+|U+Prz;y%}+eK zW~XDmH4FB4s`bfhFZ}b%t$i!+{nw%yhxl$e^P0DYql<3)$Nfus``14Iug5Y6d@1$# zJ?{@`skIN?_;_~jeX@`K=6^oOX{+zOd3n>GslT80yJwn5+@7}iuME{TO`SKdk$eEz zmWQr-V)9wvh&;b)?y(1WmOlUV!UZ>8{di)>z+GqGQ~lNOzrO$bSBFO4yWyJKKkDjT z`P6myWez#0=l4H&r2d#g!>|A9w0i=R+aGwUuXfsG*T+x4)n#Zc5B~YC+#yF6z4C`M z|GZ#h|B~Bocz4#3)h|5Q_LbAWI~~m?^~CB&Z-3o4vp(C^t5;UUU%2d|tDjld_RcMT z|7ddc^OrqVf7IdOcYb#2gLU7W`Tifyzv7wJ-oewab6}#|0bvmfiZ- z_h%h~^1pG7E!3KE2cg8e{6`5ii6m<1gwE|DRRcF^`oe0OnmP(P z7r^+l_*dEnPa3_8GM? zMRF!*$w8M1uv_Hgi&iG%|Tw$ zDT{~1Qr+_A<$m8?d06|NZCTf3ebZjfWd}Pxy4id4+y2XL^4@xt_mOivZv{;wZJ^pZ zfQY}_=?%HvA-47qdd-v>m5o!pzCinmk2ZYxT0AnKe(FSew$iOq$k7fJ!&0wq zoK#U=6D%r5PZV|fGX-Y3t9C6D8SWSXzjIZVonO|NFSGjRnyK!=}aqw#M zTg^a}(~*jTpEGhAdGB#CBt*VEWFWAzZ)LEyx_a8wsq=Q+sVH1jQc^;00VLVs|Hx*r zRYOg?tKWHArGdCl41hHb6B(0lMYa3-9sg*|-8t3xX|;LtRP)9u<_sTYpi#ntt{q-v zJU*y@r(AzRk?H>OUnb?;rj$NtWJ%c5miLR={2NPd|7@X5BPR&H7`Fffoxrv$_b z6ogxUx6C}HT>JSZ{m?b~_nI|yg%_l%1w)iHFvqXAr?ibJ?et2@qTuWZZUoKHIe2m6 z=BTV%i6AQmZTm>J`X<}IVy$bZ*`>(3GJ0P7+r8Qk{_>|^e5)bYwD+XpHNDeL{KbW* z9yzsokCV^->4|$*cs#lGCEe3c{?*UVKL6y&y(^nv{r6LwTb9rt%tr`})G8|fNIyKDD5d|tA<>6|~EQMS6P{-7Bn zE4pW#_WR$R`Ry4s`DqbJvr2Lz?7kn))(zNJIs%n?OVE9n^GL>!8XYazI@$H z14sS&pBEj~STu7#&+^XNFU|BP+CJ*4|5C*p*WPNLe$&4%I%aZk3NG=%hT`4z+mAou zz=Mwe^}>y>|MUK?s?>)c^$m9prW5TSZ>~A{imT5pe&WH6u4FqL4DCynJ$L18=1>0p z_e+kR6q>UCEUx{RTqxoXwxX(hlgj)R*Ji;Xr`yV${f(@zyyUX>j<(;k8%(}0@SgG{ zNcxD)JUOjI4UBI$F00S8xh<{vv4ftdtoT3lyu!U>Z=%9CYUV}suxo^8n-j$dPL9k5 zNhy+x-EaUJ@?yCEyReDn-(4u%W3%xb1tq1IWP#qUgdu=9C1L| z?S?QgoD9z+{)NsGcEO#f?G|=S_0iDLeqn9G+?=G|(j29r53Qul{CwfU9DlXS2l>7M zR6ubw3Gp+y1r*D-&*$aWzjw+gT#77=;cXcdH4$OVI&G$Wu-zcOU(v)ue`YwnMmfH9!m)1$pU zWL{XAePw#)u1OhW{{MJ`Baz7^(>cnB&l)d8v|qP7{-@LNw>oMgi-i1=(z3}@rhe(b zgQv}yQ(4;>2o=L{jirqktaXAz*48BS^-1mGHs?hx+KFqm)_C@oF72{*$DivnWk^{t za(nx-4SEhg0q|-xnMsmTpzj=X98+Q(yUILijq%Em`PLB7ZGoh(8xB{-bP(2~?h2Pz zmQC7ix$~#*^c^~!_Tod2Bf5+4foaiyHutq36HMGZDL2K3lDTkYWzF;{GY_acaM$df zfoM@WOH~ZLM&yOa>kqAa;=}cehaw}fL^_eqK}kZ1;L#<<{2AsubF_rBGM2_JoVh|K-IO-T3IGJ9REMcip+hof>LhZtOfQ?7&FSv~Tr2xAh%y%9m#V zqSqbi9FA{z`087<)BbQ=W8~wH&0S|}YnE#}&Mr^2E$Xe>rO`XQZlyMFrenieeNI!z z=v%Vbx%(XF`sL2ub}Wl5{n*%PZn-wRa;dq)l;q;Jl6`k9F$Y&J%FUT>uKpl7XI=#& z3DCwyR(}xR@q5Rec;YeNJEC^ruJ`pC_HT3y zZ5o+&#_#@g#btkaV8K6Tu4yaTXQxuf(DKFjeMz3>k}pvDsxk8+_Gq=-rm%N`d1muZ zRr|z$+Zr3^8Y?f3T+lurZwp!c7zr`1zz|c1+pwxjsnD1*y;T@g3NZ@Vdm(T6f9bu* zWAS;&i(5sj*Jydl5*nP1nHw~3fn%pB<*F9@Mbj%y!nisEQkj?`!4EM1r2fK!jx0qP zJkOT;rldIESk_l^@d^*;ac5nmB!1z?pNs8Yc#-^A@}pDU9PwF;YI$2ylvsxYMZ0h!!O+JSCm-Y86y0RZv&AN5Yci*Yo?V#-PgN;>tI$P7>@chOj zUTHkMrZR9)Wv;TauDqhU49(oiD*WMMKMKi_?B;T9TCr&L+Y9qHI*{bu0au_n91fwT zOR*>2jc9sJV^g@I+VJ`@zv5H?{h=owlDtGQLgw~`?dUT`hy{z|+Qzhb^alOkeR{$$ z*QT}o!sgl4K=IRW>@nxhGUoV6@WTszSdsDcus&jHdxeoYr(ND*ycjXRR-F57O{URn z3d}G(i&T=tsY{5vQ^mUG!0$m;UA?Qy7j^fi`x3~81fr}qvOd|o zrgwENo(buG!~g_J78()8-{8u9y(n{ikN)mR?vxrQ2JnkE6Y~RO9p(Du>_-8B^tH#B z8FYH=EB}m&XB9m4c%LMeKXCosA1#0XwP&7hsXu%_W5LaLE&TB1Czkk+Icd`K4{q51 zlp|fQ-SBMbF(=Gvx%rOfeZO7)#4S&*=~z7f<*r@N{^e0SRQ5i5<)5E>|NZwCrzd+C zKDP0I9~?E+)A#OUw>{lfxzCs86l<;bUGjJ1M^~P8z}zWCo1S=TQ~AKX*S+H|Ppn*( zNW8PK_lOgxzVcZ6!KWPQe(m2cR~~!ftd`sEX*=+wBm5uV^Pguw`1p-yR#l&T=3c$? zAAG(g5L)%_;8%Wlbk)k6Zfif}tmAeVTKKQKUw!Z8=a-ip^MlDR-MVt$pPo1eOQy$H z-F3qgAFo{U>imVvgL{2>de5WR-u=enx1QfH_2g6Mwmp2uGaulqHMOUlb=>U1=l*&B z!gpVvzpVJU(;8p6Wz~K^J#LS>a8Y1r{vYn~oO9`!2Th+`wE3B*dUu@G{Cw9zKm5+@ z%97y)S6%(oP}8 zT`>`hHICv%dDDkP@wmSM<2=U65RK2&~Si&2gq0{>aqSye~3$C%z?+TC%lm9N-W$?DzpR(sckCEA4=i5-@r1!wZq3XVC}yohQH4AN^QW{f?b|r9<)xf9hi^ew+zikG)7J zqefXV4kUr0%~d34qAfaX6fP9i5FM`s=%#p+IHX`@8IU-Kz9WhZJm)}rMUWmYeMIY5 zCbTlQJ~iM7L3CP5v6>ERO=NNKp=i6ZQ{)qxT;)|C^C7pZw@<*XB(9nhseqxmaw(TF z@^&P7N_)NBZg*GvW1)K~qy=bk7wVb-MIKC3p7XfU8%+Pji6i&*^q*Zkm~m8PU1eEk2#I@m;_gi?Yd&~A8H=jrb2xKQ zJ2WRSSdo$5-?k2kUQB3S=mFJ@O%-*G=+kNdf`t7_c^r4ytaY-+q*5-R?f@ee2!_*{BBG;j%s%PeKH{2wPV(5 zug%N`pg%FBogjnYEb2Z3j64hpl@yd9Td{qa4M%hC(5) zhq52CSs=%!qtWQl(9oKJb?b}`QFk8ar$`IW_08U~axTIO!C(Nn0>pU%N0Z52)#G`5 z*o`^-QH614MV0~Nxq=3|Y!1i^l=_Ku!RjfudJbeYNx4<_8jVPIwudNEHI`Tsbd zQTg^bcL&TJGk|3ilMXkNTsAUMNFG>Ka9dd=Jhn2OnNJqVb-oKFSSaJglIyC3m03I8 zOXBO|aTH&_buYXV|FHNYdEWA0%jU69F8ouNBoFBSZn-Yju*}DpNstE@xi0TXsB=+e z-ppf_Nt`IQ9|d2_B*KM;_xAO-vchAG%duxMhLXPEnfX^2)UR(vuG{(~VMa6R?p< zu5$#OI&Ya-K%hEvvGX?to*5~^1@`lFM-2D+Y*A8ky;1e>UV&as_oWP9BI|=_&lx~% z!vj&49EaAq_KV4fGzL~8{B8}ftR20>>)Lucx+9TcFmq~=no5kg9GQyp((1}$j|YO> z;XzI~x_qLmx(7*INV~(paH`>P8ZZIf^giu!#2wmTM>e!~`^obg-mmf$$Mx!zUJ^^> zR=)o_(&N>NM0(E?=O$va)OAn)vV#O^MUv_J_)=YHBA>4VG7;ML7HwB_6h+ zH3)3;`G|IZpN3kjuN525MjTZx^XtXNy#o$N$4Zxpg5wj*jT6eq8*^QkV|7x$XPWkv z)%w4iahO6xzX%$!%1Wz-*LBE)+w3xdQBV4y4-A2?2-s%3QqxeqNHjgt{9Yi6N)Er>Cnj_sX8NAA4LB zgTm1kpVzK`Cs0%$E((#(!ICSTOaa*r(!IIAd3C0F*lVd!xU%V=>z}<#{0(t~;XCQ@}KF{UIgX zkl~^D0#kc_Tv(FxA1wy$wVU*&>mKLReVzd@I3hc-^z8VOcPRJvzyk=t|qXFcZ^&oPRNo& zG@?Sq%lZlZg14_)`fcrlLS=1>^JIY*%ty)Q6|0-q$@lDsw-4J}Vl%PNVsL*RI~Kw~ z)L7bM3f~whWAuUvj!bFTsGVqqo}reh#V$gC$N7>LSM4RDq+Zpg)|WyPaViY^aKxMw zfKZ1Em$J`f!;R(Hyjex2OVYK{ZKTqa4)vj}2#b-Z*3y>iqAUyWloZF&8IJt}iJ7k9 zS?=hUe8b0udVXKJ;^A0r*5N!N)B>PtJIfotQ@MexaZ7*)Z@@Ab8lPMg(oI))!E50Q z1cRZF-{*m`o!V6y-&RG00(?-m@nkr zrIFVg`$qTu9s`=7@Pxv-W-sdGerAn!Rz-FnFS^`W zO%i#fEUqLCkwk4H16CG}L>~dwNW+w^rUq@XDaM!UH}*PyQsekesrF#M_J=y-{g{4H z4ZwfIbAUiU0^A1FsiLCdv}fkZo+drhSLPqW#f#lNRr zDnb=?sKJbQW9eARMaAwJJ=>A(S`k?l9f_7WiUD^^hZo&pNNkX%#}r8IadE)7=A1ar zs~>;lpU3Xp;u^_SxBu)fJ$oK82W0|V9=XVxH$P0&RCeC{vm5&MK4dH9=%4ezw%}k} zPKW)8vvk*Q9ROTbmY4v@j^S=9VHr2AOAKmiZ@wN=z753)MM!kFnS-TQ?WS z%w*x8d`bR5nLz(VBK%wlh`4Tnd=U1sH2_jTt-n*(;{Wup@?NH0IMTSk8dv^|eS$3) zwcrfdY0c}_z4iL*TlnGC>|3WZFQh;0tnSZsvL3!m*sK7&q>YHNq(a# z9NxpLfY>=AwRn%V?hx<@sDqIs08cHJbLiVfar&rXB5V4~rOrwp>D7o?@*>gG%JV8Y zZQJVwD{3!5ekD{g1+AiZf5}p}>~)dlPKvKnBR7)41hT>%*-XQkO`vm!122G&<%Z7e zob+t020w_+_?u=TZ41VFD3|l1Uu4>F;6)&^#P_N7ANrKTC5qBF1lp0$g+g{XHlyiW zG70ZH8iS-phDHF0f>TS10@IqR;C1I1KaG*{=joAY^TO}|vK(I2*c@3LM#5nXIkav- z&MeI|oZ9!zXDi-*?Y+Uy&VE@h3iP}EE{`t|E-I_2LRuW^(K}k!t^VK**}xgoSquQ0 z#>p_&aSmiBGzPC*yKJ-hNWZpw(Co=*w>BAJmvLRE11iH+^;tAQEtETBnDElLe&R+q zvL)V{m4P*{h9N!`{uc%m3{x0NILOaQMc=@)rzNF&aRedA$Rc4!O>C&{5ax z*z8HET0Rxr*i%6@`%lKq@0(gR(%YPofGRw*IEU&FhVpKJS3d;oT;h z3eMQGX7}=NDWK&MTw(d`ApZcFlhjZY@fK=+qwDAgKcVfmy_1Y&Z(Dm(&y08`&8`hP z()}$RDUT8NPMThlXj!siplseQO`%L*YkRJGO0_GxY0buT{oH9KgcmWgdHM2A&y>dW zlfU@ox|9BO@h0rv*X>h&pUnYRA}s<-?2@5T~U-} zkBU{wW|`u`*hDnD(u|6cf+)a27!az=#gc+VL}ITqTD-E?sXiBFjLcYU)JsavWz9hB zbuck7D>4e1>58nC03wg%Gx_0h4cr%8j-SYqEb@#B9G*ox!4y4M>Ssf(R7>QI6-qbSAiiLy8Lcjx+77bzXA+`rL z51dOVj>0E+Tjg;;tmB&WJ*!ruv{_5MTZ6V1&wgY}*sCA&pLx}km0Xd7#NK7y=_v#? z20kx{G7tVm92#$sBA3zi3pyH+=QYRM|3q}gE}rg6_`?Z+1u`m^$f4|wvCkYR$0DbV zH2Q^7;&GyE9qJ2#(1EQ3jV|DI7X`dUA%8gFEe`q+-3y~h8dXn<-c8I%n3%0bleSKs z=s9|b1bH(K_hGS?d~9R2_Wq(s1Q_phI4Jt>N8wmyZCy?Mq>{>NU$|s=sDJre)W@Ax zN^|)Gq3U`d$~A;a$|;ghcCq%*fVnK8P4a4o6q$c*%pv6b$e`niLC2%hvX$JlQnXr| z+-&0mZxFFQs?<26%BV(JfVG8WZs{j{sTMMCX{JY0-Q;+`B%G}O=ar~4 zp}ELfuk?3;q64mIgXhCcti3N@nS;NHt$Z@YDazqP*?mc%WRka`JXMB9G%-hl29Hv+ zT<_AM72W+kfgF7QSU&0xOS+7uPteWSREH3n_-5V4nL{s~cfv)lqDuXaYv%h8+q>)c zM_usf>fz!U?k9e9?qeg4CD&d1!MsD#mz{iL*%3_(etX%QS#8;!CFE!xVv2+ zT=Z_ox`l5JHB7A?y!~f)SAMnfk&{k;a@e`-uYde#-uHG|dBF)6zcHLz^T;(1xW0PS z=V{4r&t4zRmMtD_FnT<>OtA*in%LAQ_7Ti;w80;7!K2(Qu>9~=rjJU z6w`|1U5qJ-*IHR3MBv+AzU|uUVr(e$ksY6+waEA_sX=#mqr0@9G>bWR@ zsFT?&#*88*JUBJMqn39pn?$%1QVksUq$6^E2dc;byXFoB(6!15AG_a&UMyB*8EQCF zC9^7Np3Z1*q*4;OAxj+T`oN7JNf_FA{B#(J@W3JXq z3En)(Lhwpyv)_xdRN~ZtS;AaKjC5WXmEc2f+0)KyA7zuV!6QCWj;zbcicty%4s&Qq zDkFDw4&rv3a^2nwTVbypwnrAo*Nbwy2h492flk#{RfCmWGU`)<76dwgVqup9^>!dL zWp&>quhCuX8^M_+o}L=VJJI3(fpm=qykI%psC4v(L!qMLqOzj0I(Kzhyf_h0BwPu$ z7R>>3aQVpU-bk-E>-9O&=YZ&nse_)9Y)i^^+m2wE*zQcMf8_Snhg|nR=N%S)>6VYC z?mqO~;@z*g{bw^?y6B4ZuO7JeTTRV(-IdzG`S!{kkFI#|>Q_7sMVV;#@|F_!!Uv5@ z?*8-1haJ9uV9C?#4!HcnDKFgl@owMn{pX*V-`{b~F_W8by)Sq8ZfhS|edu5Q=ZCX5 zKl@h6w~n5J0`t%7n3!BwdsajpQ@UrPuG(@Qa>O#n^ zW0QpUoyAXt=0%F*9riVY#!%TC&pD7Kh?Te;$s_Y zOlz<$8W2Nh{knB;7x>}-8<{JgWrvDOO4<#<0fJ6zz#fS(LMqxK8H-BJ`Hen+Qx*|n$)_|+NP8_Kp1mc3FX;QAv-+tvSu{hww?G{hCAxF40W4B z|88`7!Al{8@EVgZo(t`fFyqr)B{Rbn$5jS?Tw(sKtnbD6r0xvB%6oIU&AD8!VZ_m? z%ckFg-3?w=-;34vBCr>FUuY{3FKPDJkLO0*t4{O`pkR(9$OKLLj&PrWTpPPZT zVc2u94oQcUwA(FX!G!cD7PxGWf*B@}YW*o-g2H$?zmR0OWR#3P7v*`QyDO2P=5Mg|fxKH>TwGUMGi}<`ooDZKXyd^L&*1pzVf|hhBIA@J}~Fa(wkT4^L8lHhE}aGcPOmz{#?fXDJ~+?T?kS& zZn03O3a>^x*gAozzO6q_6Y1Gwr;&(f75*-Dfn} zC-~6guDMvm>~AMylsmE$&@5}ezypCHi?U<@wOL5*S5`7Rvep%9JePa z0{~Jkq~?GtnULJ4Of#Be$#wDMBv%x6If~z$=$)F4nVCe;jP_*o7ZMF$^R5CeY|IF} zmY(r)cFM!48Gnz@y*RSd(}`-2W}Xvjjb-&=GgQ23z>ISq+ud1IE zDz9`0Lj;rK)R(^b!ccD~T^Nt#34}|^Dr)P>YU+Ic0NIPwIF3rxAlp|aj3GmRdv4~4 zqFfCx7DxN3G$;$_F)0@`p_UxPnD`tOGN9CMaauB;Ri`mjld_zcRoUQ8G$N{Mqc{b% zis1-`lK%V)il)=0sKE@?{B4iAZSozTj*;a6?c5QKtQfskB1tDuSon@ zK;X42E_?Xx57&F9`IbDkuqEhS{Br*h=bkXT{o$+bdi|Bh7f=7?W#5TEc-N+besomT zivQf*a^Me+M%TK}@7SKb&Ucc<;&+xfm#8zF?6R8`rLfW_lPbGkJmtIw1^h}mkpRO* zO(B)_&!xu9S}cD!{syhWZlP#8p^=c4B9}&GE5iZvUABH~*AI`M3Nksa1YTeRp0K^d zZZIpci^hpuT`Tnu_mx2V)^0!M^TI#>pRw0vrD*L79#8ncQvR5?7Jfg5;)qiz-o>(k z=}0a{Dt|r~dn;?qf@W*$Z);;4M%(N9qlx=nH2CcMa&dkK$ zVUIvi?+j7Pszl4Z!cLwNuW^lW1YI~TMg z%v36uOBmVY^3}Z`EbBo%o2=y0ikZ8l*9A>yb;Gpss)j(g3?=EB+l!Pv%+-da?>8@g zk0t;~d=5`(MJ2-O5d7hiQed&Owg7>S2sbR|+&9;0H&4y(8lc2AWCQTD(G*f=YmGVr zV9uosjm02~VUCLPYO|Yzwh*Kn7ypvKU8Fe6^#W^y_m65fDT~4io5GHzRpv)i3|GWE zQ4zP(-s-U(xz6znxML_|PX)5`^uZ2)05Gs%C&eGKS+L(Bl???*U-fb(IUBdV6ovo2o6@a<>!P>5Y)$kPsdacnO5ZPeRG#(RmL-NeGV?S_p&| zNFmKB?mg~Jw$ex>)i z>{Y7@qmc;p2tan<*Wo9Vf=8d_X>kIaOmNXsqDnl)HxA$3rX&D z{yqKec>aIko9k!Bc@Y&?*olww8qmE3 zl8pF!=N9^gESg<$GgkZwb^~M~h1fGxE2tw7ukn5kn4eAI!Hd^1Km5^Xud!{Cfp|-M z+=TtgA8)_0eHv#x`R9K-zt^AW3Z$)cl>!*otu2~vu#}Oo)Kp~+V^^RPklVGz6&T7-#d>Rd1jz2A(3i( zONN71>v(w3=Ml4S%7Qfj@p-h+P)NG3Eegx}HXaD{D8wg@< zv3B9;nq*zGQ`vS&i}n5p)bK}<@fBdoWxAlXvj#gYeH6V101{7-o*3$OL+r!jHBLIS zL9E%Gz2PH5rGZvVp*}-))dft}m1pjJ_CmOh6buImI1u+W}{KA zRF;>P>r02$#~)gkIoLVvl9`({Z#1Ge#1h$X1Rdo&T@mO?i_7>>5oW=7^}x}wi_|s)6(XHGf6RIjRm|Q0MXioSRKidY}+~rW5O4U&K3UV5!lmbM#9;`@6Hh z{<&Y<6h6&Zx(oOG!AHNC{a=6c%dbwqc+ti4zmaD!-MYn4+o0~-?MyonD~#BL*N(r6 zNVQm&85jNb5MuVzTEro4+$tE(;+eoN!n~pz&+v{N0LY=n!9jAe8}Jw-*(TZ*qLKiQ zDO1(C3iZ4;wnk_<5}^V?#pf%cs2Ls>@tB--6X?a!2^s>ns{O^*f8O~7{lY)Ss`hj` z&oe*kDZSF(aAx>E?bVz>oD}wy*g8Mshr5C6pIoV5KOWa#aYNO{(N3OJus!LT8Q0@b z`>?$OHRq^7sdqG(Na{?LcjTrgH5_Ttp>+FbP#y@OK!pTop+66|648E$kp|Ci@HEy_OD4&TXW7NnSK0GOH8Qe5oM(0j0DU%J`vC!46 zSaJ_fElx}>w4lK5Z&+U%caFZH8O{DLdq*li7*C*(s-OqZ#1u(%gskPIg_%chzgg(Y zDZvPW`6y{C^!H~9g=iv0o(+R3B^<~fG;dw9zgbdlT}x?r2I>=Wz0GSE?mYk*DFm

awuDP0;_ojxt|JuA&OB<*0H72d5;lKrG)u+O((=Ho-Cs$t7W2 zC$cKxI#FQgDZ<=%5pbOz(jVaZ_jLN6Kdzq=%e&A0`wiD=S!c6F;JRQpi1<7i)E+|B zZo_hc>v#=_o(rI^odWDYbSTUN#ql#_Qt)%#Bi?mRSMtDql%ciN_CZ!>#P)?IILFHm zCo8m5uO3j^I1WZ(e12TT3E*?2`_C14Z1t0hrRr9L?s7<4{NFSAqn4JJYeC8S)7S$M z4dU2y{`#r)UIBZ#`!oM6KZxl#zMYWV9*C39-JG(B4^ zSN&47XhiET#B-TAI<#U*fYXacFZHGcMnWQhSS}Wzj$YMbl8~Q zpV|0V>Xx2de>7P@{#Vn%FGSRX^1-cU{l0I08Q{^{9=N1;1q{hVh_+x7`N4mYWMPqnDxzUW>5Q`>Yy@@M@$B*EAyFjAVzv+9PRHwlDxBq5zN7(+E)^Nm{e*?pIQ zLw7XJQi}x_D3HTx8{rR=oy$=`cm||0d3rJ9GY=+5Vub#OZ|ru;uSLj#gY9SE_>uA* zL=pDq>EnNpcFpd5Cx+iWTxZ|=58iS55$I-Lit+9Q);f_8+?wwze_c$ccJQ2%RVZE; z1*0TfgJ#3FyWDaon{HM^HXSrN?mmk6Gq;7sV}tiY7Xs~Mz_G{20nEU$h$aK$nV=^{ zbkc36oEHT!sbrjUqomDFi7|xnRfwq(awE16DQV)2@pB4{La`S=@@OnVjeIn>7I4cU zcTskiFFyR%odf?ipp+z6tC^v?9Wp)iM?q%QF|kU!)?b0B6n1vcn zsOh0N8r;Fa?)?i}_e`C^2|33nh2q|d^-$kc_Yb}SAGy{%^6QD2(Of>9Nja%Qn^=suKsm_sWt%vhH$f}PP28TkC2*_hh&jTvE6vhbXXsY}Ez4o8hU?1arz4;HEY4*7t#7Ygc12%*ABb|8BS1}&*%1?%s?mrLA(L1+$c7Fi zhFWmJ8@0yL@{&=V9E)yWm);ur8Vs1MzeT<~nOU@u zT@bE|GZticjwgzm*7l2x>*w-#`~cTGkKXtA2R4=b^oN*)KCX9+DqcuV!1ZoE{P*~T zUx354eKN5;GNq1ChptmlKw1W;Bz3{UKE5BDMUmu!%TkuGN zntwuNJ?tv<9bI5>3aMx)6AM)8Mho3N&voNYWeQFVGINHEepZ>GJ4ar3^Qw1VYaZSe z8T%3G(4X}!4EGL35&-oGiNX?5h`HYmlQ1+>Ld1qrd6QIUx1+RQUbeq;4;Z=}3+o?l4j@Wg=wfg=# zm*k4ImE8tj!`kW3j#YcE<8~~20t4vEU}I~=G%^pl>Q#X)52dJAf%MD5H=CBQhbcP zcFwiaZ){Wfx(j#+$hultwK*38p~DU-xN7 zXWiWo-f+$%(2flG>sjXxuG~$Y9aO*m$cm2aD;(EXVrc#?C?SBmfG-d06>7?+%N zz_u`k0r^m*p&+~@N3hKDi*TUO9WEP`3jrD8mvv8`GNp-@H*Zir6w&)Qbkw2B>B35o zz_CZMcuEHsoszqxjza#r&~GOT9#{`IQiVpOU03a5$e!8TDE`%Q&+ex8>%~|7LG=Fr z9eL7nLWUEuoN&p|tCoy?a(Ng~5NumdM`61L23%A^+c`aln@@dK{^%`62d{;<%3WL_H&d1d2l2F+0B58*DMVJa?#{-UTg!~N)8GyNeq zt|GsVMr29=J?6w6JXE1jOuT&0W|WTJCI*@Q4#Ks@s`b+f;hy|@sbAfO~)vRnr=ke(Jcl)0*}cTXEHqg4m$wsIS9B~ z)FswIGQR05=(ieEmEMq?2`XqJ4yPPRVEE{)G*5vwwzAv2>)a72BqKd8yi(TdpiFmzNgNtQC&25ej+<^cYD-i8TjdYM>*8$XMPE zDQ^<5CgmD8qSkb^bV$knLhYUZJ9F&KNlnp{hzcNU?rXO2dW3}@v4S1XKDYhp$7#H% zi(4cXPYjKWLP|E8%;5B3Baso~!IZI3-=ul=lMVIPr&G5NO{ZN%1(0?ZYO(l{Y3)?V z52FS46iTa!Q-&P_LYkKQbGIDcJZqqE@pmq9ZX6D0Q@D@>lL6Xs#8W<7oZ6&FCjXUh zVtc*hSI!5JUm#r9zIAixj@z)auUvJVGBk4eWt(6UaWfbX3bD9$kmleZGp183Su&=$ zU|%?JY@pCa)$6$BrcDKIjV9{i%Eg70w{3lT*HEgf&$1*f8-*F`s#ffE;b;!kaa8^& z%XP5oN@Z~7_g4-aQYVcrR$af`b8Yr&uDF*T9=hGHEs8;=o_;kfjY&1~8g=f?1;0dMdT z5bGe_i3b#McywEVmmgJK>T6CqISK@DP%lS`b*JUH4NbyVUGplki?7lriW~ol0~q_LPhHBRM@MC=qw-hb5d zzh7A+=37Q-eJpe6LwPvnIY&m5^)QkN$dHpV3>DwgqOf=0{-++iU%X$BCSvh;zNc?! zWGt4-pp*_tcU?9#si}A^&BIkU_qUV}99#GIg}txR7SSIASOvp^>i(!?heUIU`Jg}; zKZw#hNv1kI_^PlVe)*26dk&MrT3)w)du(~EFWcLb&t_6wYb&@Tr`T{Gg~GO|QpY_c zT<1hU$NRakhpS^Po{xDD`r|*)CXW!VUwNH2w(82uFH5J>LTUgRZaBtya(%N~k#W#2(^m@_Y0R z8?K88ikNAgO$0_)K>heR+75erP>~X0LQb*!&X@24g#C%xKogjm@Zx`wU*~S`LJ#?T zah(@N(V$)A(Q#BNo%1afPvr2yHjAQ(%MHZqSlKju%F_8wU=MLuD(9sVl~k6nfBGb$MtOs7}?!^az4<){?xY?6o`> zMgwpF!EJ!3p(-X+VZs3=7E zgbO9UI=tL-A_bk{k@d4$=eYWvxTCgF7}rlhG3#X3{iOK`(9Zkig-19ZBB9P;F2v;pr1IN@^oB3V)Q;Hr zpJ^{~XPBp_`;)-+ZU#U%lV2djx!m3ku8RYm@HnzJL|;G1ub;;~I`c=wPg zAq&dB@krlP{lIh1K%Y{pd4Z;At@2tPLrSmUr|X zPtABLgvvQO=z6nLM<2TDHc^o!2hi3<8yp%Q8e5HaZLX}Nuu5_aRceN%qV6tjZ#e&R z@zRa@!d=a=sB9+DchiYpq%Tj{$-LUUEU>&fP~Bsu`_$%j;pKP7=4B=7$v9RN_Qa>3 zbN+EBg+d|A^JCtY9@QKi8X8+Q(%;_`kH-<0J_D{(`EOe*i|TPfDQC(g-%!s6nN#a&1AV^+{-Ut*FB$^Ea&UOn71gl02%CyLt7b*x^A?>n2n zP7X8UIu-qOY1EwnZ{4`QvJf*D60QMTreXo6FM0zz5)`bWhm(2lR7wJGfqOWz%TC2< zn8_FHuhRk( zUZEy|jU+@6=SOLlB>hWOTd<_}>n+tY(@H(7)ZS6MD2zvR6-)Ow^ouLD74@_VYuwBhYV|Sbs3Z{@y=jgpH2ho+D zN?4J`#R}qr4cC<1(y!Mx-Q2p^kknqa-lw--6RrPZ-Uh%+dIHSqsfojn-F*jZk|PhU zhvJEJuBU%wEK}%(%SYH^w^U>t+=?zO-cr{8bb0k(XYYG=WE<(yLu^)3El>pzZ|Zqq-FS!g%%%o+iTx=l2uZjx`ZGU+5hi?9b(s zXh%-GEzydax{5oH*hEnf5fy=p8kt#G92*wQEXt~oLO$O_yiOI2{7$Tp6awXlvPh$f zyNtz}wY=I;+WwPxX8g&(79Xh*uy;kM3M+$gjxd!o;)J^_M$2-7)B&CPwlSqY^jCi# z*uM`y8>;sC8(%*%GJ5gF>jA4I6wfgtf!3$Qbvg-=NZ??tPpRrKt9)D3HwK95M%i~% z3mWx$gEVSNCEYx@D!zMdW+K$lmj$!ZN={qXRf4b4!&!u7a6Kq_FBZ#tYX=TUhfK}a z9K?gMN*%tgaCJ|rhs)vcKWs(JD`bCY45+6#1`rnl#bstlh(r%vxG+6LFj)+ysFip1#SZj8OfmS*jYL@?Xoef6k2S{e2Nr+q`f%;%as;lf7Drm$v&*tE^U2xNxEXwXaO$S;I3DxM=RWk? zu}5F4AHGsMhAZ8)^h=9g^ojJpz(vl;khoBhd4LZ9vJGPSKpzL(G>FZig3h6AyG~M8 z;Ph1`X;D(jj$+Kp>HDl}e`onE+t=>agT1bn+VSkR?VFzxAOd9=JrY7!m!AG%basKL z92R(>y6m)6r=~ikDYN$eW0&08cgrREVHITr6nQ}5R>+g0C?uquI+291E94OnX>ZDM z^Il`^SL#J1#0;`O6OMf_7!3gYFR==BP~L>&QKxh)QR(m zH4#)tlChCMfGAs#93blrCk#A+91s;BGNR+VNG^(|y<+)er7iO8sqaG9BGj>exe(I# zp()`a!d?^(Ck(|Wa7olGk8|KK7|}M3mnp1cyj{R#a%%j zNRWunyq&}T#WDDM+j{0XdA42u;P2-=0^%;TN0@FRf-W_1zh&vWcYS~1I!&FnZzF2k zFp)4>!D$B!V2KAE{J3%J{I-Je?PsNJ3Ae|NY;A$-!d(~W@BhQN&Rkarx)OaI`R1x= z%r~1wqXrULP&R(Xyc*3eJ{&sw;doKglUg9A1(50|T^z|-s8~yXy_kEVnSNy8=Krd0 z{QJr!cMly1hkKq9d~?I@J#mffJ~ z!JPNK&e!TkKOMiXpg?|(L~D5=z(WhKo(jw1sFO@Q=||!xplQRCo3`9Siu-R{?_QP% z{?CBbw9^kg_~g`)Nikvo^>7?nbu?cso#GP9A-0>$zky z-#;)mII=dK$?9P9dr-!6G_dr!gc!jXfx8%TpP9^TBg=MB$_ObTX!;U(t z)OGr*t1_4OWD5}}8bSbvRWigNU|8VHBd&vh0c;*h9Pl6rZa>~b5Y_EeUdW}s6rUxu z?K*BZZV8)^f*0NR+Qv(<1PdozOgy|GB(2y>rs)I*F8+YP5>0B3Dfvx=g^BHd7tUc|e}L=fFi0=@TTY4V&}hMd zPr&t;o;T+-YR@*bfzWvx_1#Y$e&$7&007Gm0<)|>b|zfsqw6@j|HKN2U$Kd}Riflo ztF{|Zsk%)pXW|Vq4xxk~5h5u7G(^~t)h>hsJ>g&?fI{==2 zfnYeOhjr?;fdaWV#OjaLRgX&-N~5^mI#!n{v>mE~8-W0nA|HM^@|2Pxcmn zB31ojxp&dlzA-%a|D~%N1J+L_N}o(mek6W$!U}+K_N3LLs*y=AJ1J#tHP{ybTdieV z3$lZ+CCOcuyrLqP6uCya)N-IMC!eq{y5GF)bB(M2Te1-^weGq5;l+8s4-nW{j_qV~ z`M$osLOz$vq(VAEx2Ehg6o9(hkli{F`XuA8OKU;7z9LvfWdI~|BsC*LAy>^ST0&C7 zNC9yBD;Pf^S;ZTpvJ(H)wpE|o)64hDy-wft*v7ZL+CH$MFFrCn)Ym%@4C6gIYyvEr zXfO}RK=KjG6;ddyLBQ37)R~G%bCj6G-dT|zmK+>((RQ6zOFDv(`XaBry%gfFETZYF zf(XxLMLb7jWZLsUAec~*VZYtCqBsiSA^nUXI2L7Q9MWQ~9y%EP^j`>2Co@8l76PHe zL&F0D1F2M!OaUAnF>P9ZdEXbN(kkYnFgVD;}}Ps)Cx+VC8GG?_|fGwFdC>fQ5Z&8W&X5>k-8MR$33Z9gjIVh*w& z6v07;hme~OP37*){^LR9{$I}5(DuZE15Z46)FZE2UwD0vB3vEA z8P9;I0vBx%PqFzU*r3yNU6k`1`|KqIXgLC;3i{=2pC4Ph^# zQ6(F~yIA$nc#V0qc({QX7PV!g0&%~UiBOy8ZW0KuqiP)G@-5kG{Q7KuTPu8Zs8n^; zy=D~s>2C@j`f>GSSXO`95A;Rll9X9xpwLxcc=fEWZS^ka=V(Hy2&3|qU`CAW>Gr-ajqtz@JRG~etbuTLhENF`J&m4&5+9hE(Yl}ShS1MC4; zzgSy$d43bjJn;VDspIG*`pZv@FnUF;D7l~PsS~fC$$hWTtsC}M0({*U)3xmIbX&=Q z3V$6*3y}=M7hCG+C_$5(gB_gQA>t=F^<2A7+yyF>z>{NB9a@ljPLj*+uUK7q{mvv5 z2ko5R3I2Nfgy>F-cXmSYGzr_n52w6A$AtvC^7q0P@ohOj&QGtLjO#y$!@qzt|72Xp zltJGvJfHX7dB^uAzwR}QrMu?U8`dNW=qqM69$(O|8weZ^-(Gok;VvuvqeCbKKWTIA zLsOM0HMA}paEi-cd}^UIIPj}iq_8(+vUeY;$-Sv{y7BmPNB(Zyy8N0ozqKxeTrLTa z@|sK4+e~^QN3C=8;~q_~JhyO{nf}pX5Uq~Kbv_qv&gSE~Rb2W?GxMP#gt2|8G>VB) z+L-FRMPPs*Cwg#zK=_VB8;B3{6AOu(iYL`PxrNt}nkDIYDPsysSywWVYfk``ld2sP{;pv28|6_T>*0Fn$QwOel3WDc2 z1ai;d5*Wl@LlK>%EH}N6Jfc26PqRRiocFqq=Cx`u+`FXb?{nA1S`GB7hB9C(AooYr zt9nA$4@P@J1P(|8qt_@FIGV?f2N^*sR>V-N&<~)}MDG6LHOOm}t-8P|PGQ z4)(+oPrmBLE3Uk*NPJ6D|e^h#}mfQ#u07@Rv;eBH2@b1>W>A;+5IgTythBk#a zUeUV=N(m^p;~0f6md9;uh+#qKPW~vVIvnTFy?~3{_heTmxSQR^oPT^Vf7&N=GOjb% zm1=9r(8RM(YSRh;o~Gq z|8Yov-=+k2WAMLrq&HhA>l4jPVvY&K*$0qvrx1K=I2DGVEWGkjY~uDeRbmP#Pkf#l|TFcr|L zJ)|h~Mbc6t=F4b7%r`%=%%OnG# z9Q&h*%|8?!56b4e9htKuNMo-KRGu@29%znjH+w#iocKU;R))BZ9P;obA-Rqd5s?Or zY2b-z`D2et(?||5sP}rsMK9J;sGj=_TW`pFbzc4@l2?hL8Xxg)*r#>QNup{IBL;_t zKaQ|G$dUx`F`e+fQ=1E1LyBF*HpRLo7;_?F2|r$>KRbhqyYJKK_%RacVc$omyU&3H zQRL4)y=z+D?YD()`;KtaNz|7=@^m7#u2Dy59!bknAx!2$TV_zYs?^iB?6 zUm&iF6BD8D6NZsFeJ=cI>TbY=?}FI}#y$YMTCd?dr0a~z#QNxiNWF_4V1GxO8)wz` z1QSD{U=X=^sNc*k&uwq)nhP#=&?Di+uZ&*0KD#!ZPNCH+{v%~vL~@7}K_qJg>Ph;Z z(#svw=*+kJ74X*%fUV3HG5Ol(elo5T$(?DNLT^ssdH|0$W)3%lp!E>o&;B}ovdE9=4bQlhdZtB+_mpNOG+-T%Qa)c z)5Z$no_OTiHQDQPXar_$8=w2ywxzwcvTk+$^`qH0_ny*yH}AP;&p*{OfB5d9OWIyP zqn)JL&F?%g{`m#{9dBCuv%TuV^x}8+FWr62939KQZXorhe(9cj_MiIbd0n?!kM5cK z`i|0+7r1^?&pR&4Zh*sy@pG&lyN`Wk(k`Tfp?c-6W6o>ee9>L2pc2f;c z?^DXxXonGOAqi9p-60Tyf_dcIu|@@5Dy0j7T>wO9T&IKrf{uji@KK;X<0^moT;T7v zQ{>@v(+u5cq@X^~nyq=^x)f^3E0LW`L)BkhXJoR4TrLguIxzgf`-jgRWtl%ttdpPz z>OHC^)&x2UC} zxUK~h1lFn;BvdZ`-RPS4EH8{zN8=}#PNE*I-$RIT&xkmNw zrRYcBGWx;wk@-W*lZD~Gd{f^W24kZUb{`bAHxsBGS=tut{r%VXT$!McoV>Ya^Re;b zzPghd%3c;Z4j$mr_NtA?rkdN18u^jr#!T$;{=j@K_VceUT#m9V9DSLOzAijJQJgFc z{pA~b-!K%XqhmL!Hk=O@4=?Ra_J91w>-~$QRfk5Q7W=(9YqYt05KrSVVn0C1NS|NqJm367Yfn90Yye(53?=XQY{mKfy;Q zSW>9{Od+I=MAhLi#NfO+(;lzc<5hbJA~#qPIEIf>E*Jqs4I z5V8s330Q6p*6D?rnW-a(4v+7f*t4s0aQDoYD(k(Y*UEd|7TCHWUp_jz z;a8mpUX!T4Fz=u3DQfmttJMeovvVG&DRaOS$DGobBOs#!aPDsT36Spbw9k;@82G zfq2UKey)!@pCfG|$&N5MP?d`4*h_9#0Ei+Eki6ZE73U>fw)l>{rAqFFdY0_0qrZG&IAUlHzY4 z0jNoK%L??QE{!Tqqwo0A|Gaz|#LJD^Ry%Tif&6|)96f@gSLx`h+eh!rN3-^g zZDnVu=O#b>@0E{E{^7Rf=vAZtV*qqKQVvOLUNRHuAws+eXz_d&OC{p~k+X=uO|dn4 zfSEuC+bb)3 z&MU8XCa-n&|FF8}jnQLQC5ju;tU-QxIv3y}Lm+$Y*#Mh;jE8>mowVB?S z9*89ZU}{BCPylQvm3jCv5qO@80*eQ02g2!)`o|ai^@vVqAhfhtHpIVWV&Ut+wg~pD zcwi?z!@?A3f0{oE?3|fZ?z$uPh0jN}ZV`wM!o=Qzp}W^_99v!-EiU1e1F^&-V{3A` z98`A;`}W`!&9YVuD{T6c+cAW^yKc*fsyU|{;rn)(|7f+?PB}Z zj~)L19;{vSri(w;dmK;BT%P%#ch09@z2T2nQEzmtO*K=BA%E^~UU_=v3zhW$7&ZRl z+eh{dt@`W@aqz9hMnmWt_iZk(xjGj(bojTPu7<`&{$QkjkKFU&erlZ685BDDL-lLk zc#(hf_IzwD9{ZKM7kh8q@W*39!p7P5$euqqtbO2J>)sD{lylX>*%XU>+byR7CA(V% zS&uTfcmhfIh2m!1HkH+3RnXf7`BfA_Gv>3)#KPd7hm^mGdM%W3Ar28wH8_HXY{*nc6TwJ45<=ShHBH<8FBpM2%L1;FmrDAR*WQKyxs}_Ie*4`)k z!+o-z1v##1npHG7St_B0ofiy;!jW7elF(If7ckVgrdWX5)x+q)!ql{huK+$>CLrZQ z6z4=5p6&rj0=JiBc7uq6Oc@OtMlP}@mcOWIpaqUDgKjj9bNh4T-x{XAZENuHM*`#f zJI^Q~df(tvJ$*(ba@EYSYY*)(eK}w+tZ=cO*cj+op&^n&Y2EXjBeR0RFfo)slWOtPJ#-rgs<15Z- zH;x>)x6}V}L941*syeh)vITt?c;$ed3+M(vdNep&PC`jkpdmMGR;T95by%M?-6%Oq zf=ePGk55o~h~p_}CJBK>f_(P$g(wZ?3W@yjOzG4z@L;w5^)^3WTr>7ac{(52eRH4# z5Bxb_OI!Thy@{dcdLrMF;D?>R_<~PdiufFO=B_yR&u_Il$NTv`d>fsAyR=mt_9O%E zgn>BS6`$`U?25h|kL$igh2vpTeeGMf|HEH=^2Lh7*XL(HbI8j|))<~?01@#ukJQ8A$y`| z)r$3lM&Pw;V##hFz-l}=uU#`3%BEwZt)A}qF;z$mR#YTLu$oJA2$S7ilFeB+d`_iDI{Sxnn z3W{x$mQ$Z???1RA6W?kAv6kkirw$+3e{j#veLJ4r_1x1tw{G6MclV(~2WE~P>q!Qs+B%FvPGRfY)o&gk64~_N@3>A9& z(wP`IPno3kon{J>GCv*PMKv{Q3ZO12QCkk%$e?Qhg$nRc>I7~xK#0^>1Q<{eIcZr_ zEfW}7D75D#Tt(gDM;=uFc86X8F&_bQ$yzJVeMo-zl5nv<6B!sNjE(lM9_wE0a^P*6OutWen^_B??U(TMJlvBp6SHVu@%poD6H}pv*OF!khx9STP;B zY!OkBPC^00NJ<7|PP$W59jt)pSBn$FEg_~IZWBTZT;~9he=<-oi_i&|!Y$+*VM(QK zKtiFGWn(EheejTW@7?h){b%@@r?llIF>wt|-_<*C`>J&ly#vtgdGo}94HE~%GJ4yp zwZ&MXQ0N&R9`5h$ZAHS79ozA#!NvLcMzh)17mGr|fKx!oDR4Qvzg`fpoGejNYUS`X z>Jad!vvf*jSFaPrrFDlFamuW7D|KN^@+!QN>TbV>S1tIF9J|NQu-K?KOcej8s`7@( z`bDlWn+}!nr?_4o2y8YghbzuNJk=9}c^Hl6WBJvAF{L4w9B3C(3z?EsK?|8;xd>t% z`Rpvr*S0H;BlppZoR44%JzoPeGP=WIVr05kN)egxN9?T6!}ERPsdgxktb3#7^;EA2 z^gC{8F*zwF$254nNO3#vM8#ztNG-|4pXc}#kg$=CZF%wPWV4_4Ky6XT8Kt818$Ucxo}aY4ANmv5WHIM0xqUbMCrz>Cv`2EZ)>uSh%|teO<4P zWwO5~s?01sS&h8wk~9Sc#4X_+J-wZez7dsj?H6g3+==~j-z|mSd0BSE4=uw zS|ycvL!R20&mUWQuo@UkqQjbhC&d%R?gS+&*(E2(3oii6G5&M_;f-;YtXZwhPfi>g z-+OrX_WjR2wdbiv_ix=ixqtU8MayTa<)YDSiiGQ_H=a}!*z~_t5cY((XQPWbSXgj> zW65YT9fwp~Cf$#U^F&&Xrj=A-WOQtJuz%HHVPqhe%jd(Xf|khYQBa%$LCp#(m4LVW z+jHxGIr-cgy$T$Zl_WQ10rMP1eQ>}1Hj$XzOhgmisd&S>40nuFQDN16SH+fk@|nT@UZ~EDK>9r!N3@@t=s0NEj&O_Y)Ld)n?$)|q zxjCvr>MRC0A~Ts+G~}bHo((K_N@vJWszHR`f`T669WLqH1&Q~KN_py;p$qMQn(o9; zG+YIRc_gyUh18*d7C|q2lGz2`qdN{Yfajzz1s>Q4qfw>b4>XGdHEdC1j{h^C4neOe+=Sj?`r%*t{Tr-)3 zx1KzB5c}_&pDisc9!qB-+lP*9(2k**LzD|%B)KrGy;g8@R_+0EhV`HesQrl}Cg#d4 z;)O@-zVl-Ddejy!^~LY-9$~)<{=B56rdu11lzJlad<;59vXl-k7Np0P7mh77@|qro z0f6L4A)Fs_`=O;=ma5{mEP2bjt9#4Ea@0m2V+xCilmqSywD7p=JOxH@2n?woPGA8) zK}w~e<^r&jU1R@IXgh`Hx~QHA#OM6ElinyE{L_A&^nSij+Sqj#Idrbbpm*Y#A}fbGK5iOzF2DP7yD?7e^Oe7e(c!ho2laL=q7CzYghGtqan~%cxbxBrGaj9R z74uLmO8EEifdh{}^6-m+>+a#b$2RBs-&auUi_72ITiQ{vXBV1vEx0zL+sn&e+dA{j z89dR(ysh@6!+8c~t5&&f`|Q^awrYwNc8x6u=l*T;(nPxV=hlV8PV3Pf)Bp0+v3r-C zU^KQVt4tnTxb1Lt%CPn?+ktpwZB((UrEhMX`TW+>{)PIaDfi~WnLuD&Utpmcc=c$6 z`cCtO*H3eFbR>In*UW#7H;SYJs;|z6&?g3?6pBSR1ntdxmo_gq_fFTA66tpgp+3of z1pHaf11x4gwAjJ^6Dya;$m1B5Tn&!QuT*=nBbfzdOJ zh@}SaGN9?90E>m8${7o1m^`CcED}Q8JQ)ooWAMGBXk!Wo91^eDTp^UoNwG{YnepOT zFP>2o*>pOqMN@J#6;5VHfG-&coh8s`)eFXyKr9#tMRn+_Tar^(-Q~S4`)k#~|C@P? z^Wq@Bfd>~MLOT^7w|h;HchR2Lj1+XSv;+$+EETnYU)(MIj|bF;XW-e>2o0;1pVXhZ zK6tDz8%HDc!Tz59ULblZ8Amdgn$Xf-NKGCLFB5&?6t{Gju{JAPYeArwk-QCiG@RU3^yL+yH3A~1)7Z>(c;}VorN{vyAYiNw=q^+PX{^#(9#||NJ78T{@cL@ z9|Y(XMs!Zz)2BqiCw=*K^6g-I`=IR|pXKVm4{`l?P+zft+Ly{>OaA=nx9<_IA38Yx z*uxM1a@${j!Sd@yasKc2=^wf_oqIu8GSB}3>iz_rXuqY$+4j@1dQSC5a*xT`5bGi{ z-)PxwFM!mJgnbGXiDLMAoc(H6ipTbBojp8m89pSOxMv?1eU}%tzimXPU^Y5u5swM~ zbGfmrfJF~q*a>huM{%3LmMrTAPkVgSkwyuQv~Z9-4ka-Uhp& z?k%LS#j!tXLuP1hEg~_kCpGg-g<-t2{3oa8&4%>MD;CF|{ zyif=R)L?(#Kz~0pSz(#c8fsf;in?5`HlBWZ!`-(B7^>&8`H3I>@!aSbDDrq4t+a5= zxfG3pw7BscNQY}njOf$z&Q?-yg7|*?R1=Yvw${O^*B+*8@SPT`J@X|n#qdF%(K6!m zsDMY>s934Y&(3DuM=#H9j0&PdNMFE7t5%S*z9#B7mq>y-Y`RS%FA$;3yG@LZK{L}EA{`SW^hdbUFJL}zfxxT?) z_1m;4|K^Ov$h{T|D=S~OwdI1 z<6sC_j@2A+6AFjYnH0e$f|b;LO%A|g#~<*Yjs_t*a2*UU)vapgf@YT$w^{T8DDPJS zSxN7a)C78>qPWX&-F#T8m`>FKH%Bfu>?f966~oHu?&_#I6jk~nat`Y3(4wR6uE39` zgwVHBoH3j4p1uCL!T(BuB|sV&F-cB(3WR0g;1Xe*q;!QL(qV+_eW28 zn-_fB2k!4R(!uMjUCFRA*jE@G1Rp$`PQ^uNm)AHzl}TY(>XHK28I&PYck2;pNpUAX zTfO{FW8-HMN8CWK989UfsH~$7zEfC84lTU!7Hat@B}jBRbi_&{GYJ8I!>yX+peIm0 zNMPikp`VE;3O5-=fIz?(ym>StfQ%Oa6UBkiYB9KFi}&PH>g18`2?Sci!E|Hzy0zdtaGmTrvPBU0X}6a@ z)datAT*qDoNuExC2n8&~&%bl2J|ZzfKaN;+XcLDn@1@0=UiY4jx$T`6GE1%80psmz z<~rnnFqx@;%+k`~nIpSed*_2o9Y{sS{hGuTm-Jp7PofbqND<7{7er9@*hS<(w8QZO z4Wcmbm5l2Yc<;o_xt+@IbijBKOSQtK`Ka`}RHg5Sn1Op_~Hi zh^uSJq|#S_;_8uTFdRmW8D7K}QP4Ck8bJ{|_;Vpc5!S#A2sraj zWBf0d`o36SAHq9j?=RAOZ%Cv}tv8?}5l+3gLg8_(Re&UiZmZ#q+?dl7=i9`%dV)}d1z1d_mh7@vp*lyVLI@~(%x-{T8eTw zlN-+!rt>{I9C>6cf`LdV1p6x(NAr|;rc}&-?Y{!ElugHWpwRo>v9(?l#D;VawnC1q z7?c?>9SoI;(8j^t#k3JZp`e;C?%TiS8(&FOEBLsrsQa#ejr_(pCsV0JJO*PARu95F z6piP?Gz{EX<+W*GXr=bu2VZ5+_rbd|>8FboGJ?{51@RpeDsJM!y=XbR%jdwJHFqP$ z8*H0I=8L83^2D0p1M4#TS!|a!BFua54rMl=U=Al#tJNyy%8|v%oyOkfV5x)d88>}x z^2#-ZRY`WD?Y_Sx{yJvSJ$KykCl~6ki-m`;rZm5N z*NnGm9m%vkPe^@Py#36$&aF!5JlpgMQSgSV=hz3wOrcV8=$VHWkNU#kY=@(HCF;qN z(ReBnPXyqaGp+;Ff$`Mo5?NI+pDCxtMRBr?-YvS^(qyCQH2-`y^)tEJV1RVo9F%yu zR?t57+mnHsZTwC2pL>*rZ<%lX)5be*A3W01hSWd=4c+lj!?CVgQWP!KRC%gqZe6M+ zq{hZ@%`r-4(?C1A7B{Q`wGbSBUAB{2;|u2KV`ky*zFR>NhwICr9z~Hl#4ZWWxm671 z9~jpuAj~$-fo18_Tf93a{X9C}GO8@US>8RUmJ^96XnO#+Y&wySg<=r4*2ps!3@9d_ z2#<`gSx|R^lB**#Zk6iBv5IM3S^4GfMDObfrGwEPJ(%&dFeG_IoenK@zKcW7ddsz; zCJ($p7#>VGX!7C=Iu?o3%9A;m!SXwwTIq;ot_Rbs=55Uye>e+YR zlph#`AS?3m6np1VG{MU`UHr52@Q_n4isQIpXg99=d@b=@o(9(iHIMm^tO@uRt{eHme2tC6}E$=`XeXT#%bCjJr0j({C%vwe4`aAUKHVeLIYg zv%(QMsqZ_Z0-jdv2Y>ZD?L2%X#Npf2gXal2(69WbIb~Z@=?lp}l9gT^=cS)5ATCR6 zXRuxd{yL@*{Pj-$*k`jxqz5!Y#kw{e{x22txt6)0Q- zg6b*L-1EpC&1%WNdZs*q)Rs)=Q`w$GIu}hQ!9Jo~rQe@Stktw=@$*A;Zg9eN$pWYY z+JA2<_-_jd{Au^5DFkyZHwc6XSko8pyJ&mn_j=vkz?7!EI=}pxW228+fgw|kND3Up z05a>gqb76(Ddh1|bJy~6+$(Jg6%X0YHyZs#FF2~geN|`d5Sq(ny!xyZo$yk3Dd zAuJ3ak9q{^QRvJ-LyyA~1YrEY)1_k?A1OaE*Zv8wm$G{`qpbB zN;KLZ4CN&?Qg=*Vk7&eL!Vg~rWHsAD-T`=7bvX%`4<-!q7 zjk|Vi*ADsV&HBE*i2QcuDXg>EbY@o~c_5W@p*@cRuV@T@b1IQYCgGk#jUMd+U9&#!E8UG~O)m-1opce!yv-FK*$@vca5u z^>N+zeq|se#bt{U6PDU(Z?7*@j%&D_I-WfzKgUgYbp8(4Phn<8AzWc$NPubz0x8<+!z1$ zurssbtex6z`+mjshUIi#v$Je|y>epGRWX$C_VX zI}wmI+lyL`rkL|<_FcR)@p~x;Q31Co4_{XM)4hZDy1{-E95*HGDv`P!0RsjW1ggCz z%H>*PHYLq|(;2wM82zQt<9Ver>1Lrip9N!1k`Fsc^kn;B;$Tt*xeRcLz&kf#Ll+jv zypzA~%U+;a5GL`ln)EkYy>A{OLa!LTf>M92ym!5O6k+E=J~Pml?<-`Zi3pGk$#X0$ zi1~*oh#)3E!45gsh#ci$duG-%Z7Cj4{A^j#)Z;~3-Mq_ znw^`kZ`pFm{ddJ$O}rm9a{I4&mGQba=5kqTfr^Yf12X3E#eeGrGOERf66c7=y;HZG_ zF$$~tm5%Eo0#DO}onwLP*r*2#hvKPPy`4KJBU-eT;!(hucP45W6GpjMKn1Rg-HP{!JptFL09wT1g)!C6)Bit<>oBB#^Psxdl7A;|`%-0|^tGnC z*-`G>=q0gO3mynRm~c>p8SdYgm8Z2G_3;02YQyN{C;G%!&Ve`gio$itIe4%d8BO&a zSM1)oYUjvAMIBBL(qGTgrv0he`ZBj^e*@aIA3tno!*x6ZbbBZ)-C?qDJ(6iQ_C0w| zOL*#Va6_?3ERn@p-#-BQH{4Z(yHUplr4&w4vSCNYfzJY?hlh1G@z~NLjI=m)c!E3y zaC&4iNCDjtshT%#{PW z184Ckd_miVK2)w-|FGTr+#VI8wqoRRa_zOs{wsqEv1lj}kM!lz*$jwKD98(f<%iff zO3rX0h)08MPCZn~cV&_@_Y*`-Irp|AcMsPN*-^l-u7!?oj83|2SNU`gK&V0oUD@(uy zvx($)hDI95tfW&t`TRhCZvol#Xc&dwz;!`;rZ#cxl!1*8>ONY`RV*o>sfnNpsbHec z@`Qr}R%tXV)q3^V)W{v*8JL+ChbW~p({Fo6=+aG`ZuiBT&b%JL;bZ5F{B_X`l&34> zI!h#-*4}M55T-s{qPBTzg`jBgx;@lhIXO4 z$|u7y<}Q8oSC+pnZmYl4lg&qvfC)@Y7*bs(Xva*WA!g%+E||2fm<%tvPKz7V-a0>Z z9A&I%6xerZxA-gWnb3_QoaW(Up@V6v z4&OZ%FXqqg;eB(((Y`BA6Xh>YO+Om#eMizgYn%4<+@}3+$F0k*Ui0hgLnrL-4C^MA zE!46huu66=c{B7Mxhbx_|LJ=xi@Y4mYA}(DWpc@EHkHXjB@}&Rb-5|K71^mHz|NKd z<_lb5;`}P4_iW3u!E&fzO#^6Su99?>7=RY+IbCUdanbw2Vgx+0@yia@?3iYiKQ$!{ zd6OU0Z^PmMYTGy6Yd>ClE%M?Y&Fp<|ViGXgauVQrH!OXr@Hi-@{H7 zt0GrKBfzU8PYl>bD>e#T%cy?izL8LrQ&89jN*T%BfJBZrm`~Z?f)3Ofqug zb;|zB)nlndG@Xv46diC5>6JtzfH*V!J*pQ6Tr=05G~&4r2m*<;Vi2&?>VuRs`;>w@ z$GDDgg;#g2S<9|IWcK|{>xQqz@799@TA)t`u3JP2!Z~5|$RHreUJ}G@0XWfWMw9y^ z5XsY^^D6JyrEhyKyl1D{E;<*Jb151-lrJ34=PQwjqy;pn-$&x1SRC2_=q*3olZ`{I z25s*lXy2yZqqnSj@Ic}V|E?`jB^xea^Wf0to<2PkOrkzL3tJ|S+&ZM>5a$Q7(kU_T zNi_V02gc-bL?pbTO=ph;KZNVC7|*PL3t<4l32W9b zz3uI(;gNJAhS&~Se_fB6U;gFWh=^oB2!>ri2lf&9XQV1XxQ?8J z&#duoNKk5#l)&2$&iCG57k5g`2TY;6?zrPmKkN%0-$dttR;S!QsNtSR#{!7l`+V zm1Dm4RR~%?K3DvHC{II-Up7>}0{(4weB61+&27?coJ%7G*=?)_|q*piS zxH6i+0t7c z0umaDl!`KE4tmhZ%3icy&FtL~+_{5f+m9FQD~BWFx!kryW&sq&P%sydW)SF2BqNEG z9E!?8c<0oA1x1B%oWD$}t1Wa(0msd8!uQ-Bz57nFq*emKTSmqf5~*w=Mm21?Tqu@Q zBT)E3$5=h8dNHK+Q9I{&P^U-DAs&7NDx#>2$1qFsGIB2*EX4_<)*n+BPFsWl3$c32 zi<{QcamMpJ|LtNjF9Fo1jdD(FV@| zU*pFP?Kbx;2a6pL>5+0bWUgJ6ABsdHDEI^il}1Tqamdtwf;z3$I71N1@RLv3@4Be& z#6|l`Uou?B01Dw3@f~MQ_`zSS6;FdqcjS0*?OXy+La}=L8!$@LmkS&Mk)_)O_nq(d zU8Z-oKPSuuAGX_j6S?-&Z^GB7Z)bSZ%lJ>CUj=t+_DLJG(EZ&J>EA2r`@&AclbW7< zneL9M9-Q?hM=E;q8lriedb`h1CRFw77Yj?;CG~!u_Aer?pKWjfT)63X-f_pDfAS^7 zb=TfEKJ(34H?BE{=UZBT??67x;Ont3w?Jt`YzTMC+rkDmt3YVXH;v+4bHluqjof>HZBj&^=gf8)z<&--1v{A z;UV@pGKASN3yse$xPLmGye?Mz=K49qiK%w^z2ljWNAG=|HZDuhd5y?=$i;eq0I*wH zu$5US{@vQz&s46sQeV7OoxiO$T9E7COnnP#rIwT-LL36@l(rNyrQ`zv0^p#-Wv5s; zB~We3>T!pdiHh<+?p4}4Gv1}%LzX&(frhm~G&ZjDmXA#a_Uw%9-X5Af(oQD&H+eY}9#3ZuWOB<1w60O3sVqXf zNWiCK6nKZ>1qC(m5KutKPrFxzX~S4co2Ev}<>3xaFC6lQQnu$`qFW;rQiOfM$;k_XciR3xs(aRguuKS1};q zveP)DrVfd6UVRDIxpSKcq~lMtFVSzPy>(y%lncaZ&x-4mB7(KScN3rG8ZF@n`M6FR z@3_VEssf!@IPTSQ39xOJ$Ja;iUzJ`V%pa+5nA6@JNsoaEkG%f;B9v^3)79x6#?F#f z5hsXq9aV;2mA$ezU5LcvAft%onMe-^{&S9>?Icps7XgWG-|A(B>tfjHPMm;@?NW7N z1b2erVgyz$!KJtez0$sS7lP{|@+JUYY{Jwy{npNfypnO9CO=p7h%tO>(fRN(?N5@{ zX)?TL7!Aspe6*}TaH%vB_yMkW2FkUbd}91>O6lK!OYg-2xjujFSMOa6Ze05pmq*}} zJN4pU-8s2EH~6U=vk;26%JaYfxciZ}_T+1|!&>xWSW{N@Z@zu#nclH~d`(=p>^-{{ z+>859h|;@8?F;uDyrmL&&kwEt>Ff!VJFhq~@mo(+m$bx3-#+ptXvP|qzkk~P@f$Ly z)5v2F2H8C-wk9``{h_Jdn`aMhqbCjQ>r6J++Xo*modbUxCE$+Y)^vORw-+*|XMR5O zrIcqt@#UDE-r)={d(n(y^=hplt&-9z6xUSbU1t6rGe3IA@Rr_S){)W<$ZND%nulA> z!4Sl?b@fJs6koIb_oTI)hdenouxPq0fs7ehgO|Uh~3x2aYvc$8A%s>b4YEdG4^g!~(ilDG|CNlMN4$j__^R)CB^ z^g<3XXt3RxRYoi;4#N4~8x|%7bTIC0!7`{KV@K-~*k>>z7}x!k1lR+!1TMSOu$86- zceB+pOP&MDRb7|O4^`fCb+G!&$t73LIC8?4W47rAjvWn7O=#o$0}}_drq8MN7eUUQ zA4sPUrc!mJ1*oHI99p}mJ7+2!iO~bvp#(%dNK}=x(F_c(J5yq<5&NX%^uQG@h|-xVfcDWqEGCu=%O=`}bQx zMNIy7Ot`C&0-cHQ5rtF?hzjvp-x2gHLdBk!qQr2AEa|LcF3JxF;1T_MY z)1k%ybeTfT_)NI;68q~gvpRL;-R0>#0oo6wcv$?KC?dukB*#defa_umF+0Tk=-eYQ z3jENm7y*=e=ht~g__M(G+Qp8(-*KH`@V7cZ6Oz5;+5ySA{%cx)<3))ckfggG>eIJr7tg}s z$<{h<)BeD`eEF!~rv262ru{S+ zxQ!*V@%ziG@9z0RL4gt*Wgz24dEPB z2)Hs@v$t4;3n}f8>V-8gtV=frXaCp2bw4rpgtBcs{P@$+yYEQddUN#Y$AbHI>kD%o zay!+Xr?Z=T`%!haYiPLC(-X{6Z<`*--1S2Ftq1J3EGo>oXbl-#q-agLMON(@1s679&X00#fP?d+_e*^B!~N8ms6&E>R+*!)Ups)fVJkQ_2p z;-xbmM@-O4kZKgV1Z(IGJ&bA`}o{)v+nlcrr@10zjBexpwo|TyJgSs9|MK? zLzM}+rs@c(_-#<=u8DIX0ooI;icjoRIDaPWf4(dGxxXJrrBDzboHF9=Pm1+Kw0mhI ztFXmZ&YmqZ`rH`~C!kswHlj00=lcCUwO{Z}JrRd*f6D*Bna1W7@2?B_Z=o57XZ`;h z_wuUr6Or=-bqsIalXu(7d$Y7^QI4cLI&_L#)fwCuYX;I<%>CTZ_vM#<T_2-BvnVb7B4~ zN33+fyl=~5eYo(J3`J$THm^K0cdL{A$q{YO{_=zxf7>wkx$JDNwQbTGTUU5(r1`+X z<)<2gV;+*Qo<<6mZ{tvO6drfidE6gsjW{Gul!(iXFzJ9^jdZs z3R;|DSDuCBzUno0*4=SK{Xlp(nv_z%H8t+35l;<*FhR|j(XY%6SZ>Ic0;u7JKL_F) z>ed{50eXVapC?%r@*Lo@x1W9X&Zt2gKmlI+zM}Nud*$y=3n$ZigLd$p+OA|Iux4yv zbO`laiA*|NaLUiJ<3Q9DIg3Kw`#+V$kXA*pn~&*6#MK<-#>pQ zv45|)HW&)G3=KO-#bYNueW{*)WLV%V0(+qgYr$qAby^in3RqR>pcCPqG{POCy%B|i z+S1e=33&yCjyo(uyalQ?R1lAtyamx;<(X6h%05ldujc3aatY!TbztIH(_YeNw+URM8EtuxAFW0*yzM2 z{JSY&`*_IUebS3`cLXl;-KU%0eqEe^KQsKH5(9SpSNl9qZ7hj_e_3ySTMvqvdEOr# zbat7_Z^Thid_gCDcT@Sf-j@rm(*LK$mUUR0YfqLkJZyI}F$~F?ob#ncwnmQErQTbfjw12nVrhTN{ zrv1tj+q9o}zcFgU-@+3|0Zq?2w)Z)_30_jR(3j~OjHC<5{8E$~4<*T)wjg-^uF&qM z%+!$5xFihEr2uN3qGe<)rDzFNgJ%yJG{myetA%3O{c3fqk^M}0t?icPt!BiV&qxcJ zTSrJ=b!v)Jd8i&mRr=dQhZSg~QXf^6m{Y$soEyAhgmoP+1lQb_!jPy#paTI~N7nG= zVgO`7o4@^|8ZfR~W93_a2^3E{_P~wR|8tM>D-SBOP5Ns@GT!4nd39hWpG%Dmqca&8 z{wUjnGs)U8-HRvf4d>6fEAV#Ni4)zZ$d%$4HJ&D)rpq3@e-4!3N2^&P?uDji!{6N; zy!#3Lwx`w2hvfb9@@!41iy{Jlt7+l1KcFFoR zK=Mp3mrQ5jUZWTtVt+a*sNt^BPW;tVoM_u9A(c&>w(Ue7d?5LS&+8S+?A8OpZ;Y;f zDh6r#a4MJ26#C+soEoNn=@g8ikHD0I#EcGwyC4A0vB0DciZ(42Y-jtOz9@77f4vEK zWgH>}5*0o4s8|I95(6dK}P>3Vu@Y)APxCeAy^brMoOul**C% z5v_`@2~cGw{~i#}Q;W!hd{Qe@vm5hXa$Iju2|mRRZ1VYva}z-pv7N#^UDoZ|J<}~IpSeDX!e;B4EmQYNx!<}jP3_pRoK=dC%-ch& zGHc+?JLa?FrP*+(-!J0D47IoHn0*=z)Gto-#lxezb^n&-@L+Pt_mj`krX3ew=Qi!H zJ!PBr)8A06Thv00A34fYIri*1jy!kOlxG78NCYiZ?tcVyi1oC8+s38VLKtD8Pu-tbT>z26KL z9e1k{`P=fkUySWsAE+xz7^PpX3KS=DK1qYoQi^92a%RY*Q}UPszestK*csIv1Le7Z zjqDOZBn)1;HlrQeX5=js5n7sJk{I5Ip`<_xJXXR=`1Xsm| zEW+0Oz&F>u>fw>W``3?c9WBfkqQ#!P+tZuO7kYbo(A^wyb~xyeg&E4CT8$*!q0vj7 zPpM2FnF4mtsSsH7ac9XD#x$G_$S*C&wf5}~|KmRdpV=&U??=;_Z>?EdPNd?Qe7dhc z3-K9f00&UT=Au>t00}WzlnziZ1XceazR`D#tzxs5J1z=)MrMJF@x%zwm7*OVHbmyR zSQ)txAv)$ZZ5Orvn(Pjve;woyzz?^aieWbl6Er$d&+sX5cm7P95I3+6J$Ev4AI$Ev;t(f1ISbTh=0dLM%-606%1|Rd<$;- z3Alm@1M7s$xh_^(#|iELJl{C_G^G;oMPVqOEkbw6#}twm#IJOA;fNlLFWPJNFO7wy zrBtwts*+sW?kSQbvl)KI%+WmMaM-iYr8%pB#7Q z5cqzu4`D0Lde;@LVCOk4-Y?LbI@t|@tYXYX6rtOS5+VAI1+Zc^(FKt4BH)~N!f}_j zCF2_kT{ew4asLq&_r1%WX#Zj5J-o})JM7&CzzZ}c-`m~rL{yYV7u?^OQ-3pV50MRg zL7U-8_ZjLh_Pt#Eb#c2-!1WibPwP1i6#~B4-A(`i|MW>jK~(S09{JZJ-bKUF1X?p)x9ix8tv&ZfzY3p-Xp#xX0&t2^|lJSbOi?~r3a-NAy1>e{hlx5V)65;i?1k* ztPW?gNOMA5MM1T?RrKs-$65OKdSTKDej)jEJ@TH=Bq^xEQ`eG?0?G$DEAWtjNfb;+ z_xeBxByF3DLxA7NX&qP;fe=&!Os%A{vps`3+0q+gRDLEo<{J{BR4)Zeop01jTdWn-r0;p7>hpV)S|Ha+0U~$53fxq6W*UUy;scgO^`9LOI z64z2TlDiu>Y3VD`9}m}#1K_GBW{*Bmd%E0a%ct$+jfv}qdk66z5D7)NqK#fYwzmPV zomn^u`8uQbqW;j0>;9OtA=SyXi_^x|?Uo<+GuOFszC)m|Z=eWEz1zX>*v0IW^EmLG z60ZwNL}%;T)0u{*D}M0O7)BR*cZgZ39<6yla!`4H#ChFGCF$p}|CT5Hd{Lje=H+ z#lC^-BNt!MJF+U4$r3r-H8rmia+ZI7u7A53kI3e4M{oIX=spFwuJyrXM`tew(2hPX zsH>tLPJ%l}vZEwZBbf@&9r<+$7!S2kL1GmOU)1vnHB&Nz@M_pqqZDID$5RS+0&6Mo z4Plle9InKLu~&;^BfT0|k{WIT{vskG$ZeM0;8q)$KSQ)@q>?-&fV zkVGHog}WL}qVpVO)9I=kO=13)(4gi`q{i z^eUvUsI@b9y(8>*RSc!OXF~hZT}q`UZVo!FPGnQNGl|)B67d>pP#e%9VI>t&Q&A-m zf$+N#4YqLcKU;h6TSE))3Dp!mLj~trv}P-d7RmD_f*2jp0)>}K-E?pcq+O0LNkWM| zBGsZ98QyFGxE^^he)HF~22s+m9m?b$93HWw(M&9i-s*v5R*t5mP!v^a=nDsz5K(uK z#<501BG-^K^k?IC;j~_$E}(3XzFrErPI(xr`a|g>i9y) z2SoAZmc0mv-Ej*+stX5w4@^4XH};0H!|ox=0>&r^e}HPrS)h-56Wa2%GGywO77Dv| ztUItT(XNQYh162%g==4BUw3URK|Ri4-%)0SrVjD#$!+l$ds@eRCL>q+Q9U{doFUS{ zmTMbnV4pM{s=^n>4PgU&-xLIaF$CQ-3^YcV%go4XYrB4U5uJDq?r6v908Mn@BUK`i zuOSv88tXZ#YlAJnTw2Q5k6xU7ECj=ekFuwD#jN)3T&@T5zBuo4wLU+;@XW$<0(GovS+Ys@X9MR{ZwoF?27; zTTi}w&*zSyvdB?>a=)Bbyq}A%^oF>=GyCafefQ;V1TiEspM}hE=Qeas*pDK;Fcax) zXM6&#e=m7+?Nfu-iGcChPV}^Y@3v;UXXW$9_3q5pDGtXT4W0*<$R?1de81-{PV5r2 zAY|4-mkvchg(KEFda{L-)-AQfFC_MSIroig1BbA-hp9&>^k~p)%z(%ToH{{SqKqdw zKcN30T24sM9afPG#}7b#@kJtW6v0Im6>8R1(C$d;l|$bwW(#$0QWPN=081S|H%LyB zVtpie0bx0URVsICli$g$I#N|Wa9{AzIWnv8`gPvHcY4pk>+S2wts3bc9m=N@A%veR zC4297Yul6N_9v|A!%nRPrwgC9%GE}3-mO;@)6hIqgSxrd^dNi=jHTl+O^#N4cG=;o zku}Chy8VcVzJa%s)>xIKT`P{nIBV$AT=+onAI`B3qIT1xdl|JNm zP^8Wg08-+Mu^*2^aHB22Fs1^@&ImtMgrrIDh8ozz%)(ShLY@pm(jj3dTDWH1zl)fI zRY!r-kNserK*57@A1oBoJHq?9c#OSnaPeg1%b_oewr@bYW^d1d;n6t+wraJwNpKiw zwbBO_!yX)+rdYBC1CAMZ918Bjb-V%KEeP`hSNQ5U zn9M)pa_}9NlL#SGGKTi-iwrhlqd=%pa?yc4sDgz6G6|%Eyq1Za0}>EYJfvk3NV{W; znfmJS<#ldrE)y=|O!DE`u(jvVV$ShkJ8AKFBA?5x&WcrrVizr=~ zmCk4C*9RfMh{X}VVTr+Vzx{!m8|5Xewml;ohE}gj<$Dlm1?VYKQ$wFL+xWSe!6B{j z{^)_XD7!{N6&3oYL}tP#5LZNG8;#Ye2o0=w;2zV%Nh_XW^jxE;2UQ(2Ke)kQo8*U9{pgkZIzy&xQnqLf7 z%1|c5S23(l!~%|nLPr&abMZLplLL^XO~iw-xC-wS%B1uu)s)?;S)Z2d*5|65_E?2K ziXV{Vw5FmWAY7FLC08-2ktmVTpu|GFf8yi$rZd+II+SsTV|e6<{;h9CcA*;{51cIT z7#iI&FbwcRg?l(2&88BAJ(;0Q3>oy2=`A#nBJt7zoC68VFl&+!EuiXggfTGdkTL=0 zKso>oa4{`aw1Fp4HX_h@sE=nY8p`N1Cmoam1Y0;C2dIM=%eR=!0;Egord>CkDuCT{ zvpVSUL%^)Wh=F^7v;gPwxjO;nYk00Q3r|ulkHS3w zW{T{?Tw_}Ve`Re(a#kqGLITS!c>Y4WhU9GFms6K8dSKBeAc|3=QJ`Q39$xCM3nrZ+ zM|3$HP!Xu0;FBjen~nK}CAISCm8m;I+!dx_1s*>7`f%Yjs9c1+JmUGK<)x!jlMj}j znpOQ$_`XK|H9fD+<#MTHDijH0@|)14BprSVso6YlTmtxXd|ea z^gGa;ev&`W`G5S55JaLWC+su+U)Vt6T{J`Z4Q!YA2cnVV|LL86s6|Zc6M?vWX?#Cu zlAh??h{IAUiZy+>O#>O-n3L$t3zh=i{^Nxjk3anjy7uR{Zk*!Xr(49k&Pr%dw#^rx zioh!-=G7+-Nw?NjNYGp$SMG#U`>%$&Iwk#jAHf2MEh{k-dfz#m^97H~$vb!%`0LN- zssxvWxI&^R$t5E3oZ%)^4;f87rb1rSFW~5AfY7t@e2#RA_i_~t!2oo==(z&R8lFdK zVY*pa=I2d~rE_{T!A~YR;W)v#EdBRnu~&EQZx;Tja`kP^wM|!Fugt2R!Fn2^%#>JV zyaznDoB*YYAV3m)cW~FC4TofWfV!}N-wx_KE4pJ@qB^m*JHnhWN*{?>0!=So8$?Ac zqlq7H;1{XF`SZK=k3FI{DP%xR)Bn5r-K56MVdEh8}0YBQYWXnKHdAZe4YI3X;$}WfVi;RHX7Ar6PaJ@zTqHPW?OROuEiWQ`Zkiwws1|h1 z=(0$<4#92i9FA}=*I4nBMc9RVwz#1E*Oy~o{c2#|?;;9*+}#&le5`*6sskX$nd34U9Va37-^usL_9x#xNi0<5*ix>%_ zh>+#}{iG;2M#D}4jik0q#R9Mr2&##jAuGtCAftlNP7D$^@NUV$MTbBtv4pLFW5IM} z<{d@FfyY$67YMn*2s+ld>CD{7*mzHm)oi7!6+x^^PfevZKV6w$C?=C2Uceitun$Z& zK4&(1hz}tOpC}GR9=r$*w8xL1EDE{+AbBXLKd~QfSjh?_8$?&j(-NO#kfwcz=rOew zA_gCUj?k7DWp^|kSw(<)i!YA}QN4~LnboO-5S%|&?ZNIbHN#XX z5E|6_S`Bm2TgIMhdgEAiI#x%nj5-K#-kJ(M$etoNha4YQWps>Raruxe6qt%QN?ZTu zY>UPDtR~`l5xH<0SB__#c%b6~kcIh~6ufgQ;Mh1n!QML8I}bXb17@FWwv<*wZ`49|MIS9y%L{?U zWAgNbd1Oy*W`AjEqEwlxH0IGoq-iw_!U!s#Zm(3edg%6VN5Am-z|@pD@LW88=h&)e z1_m@p|K_qNcF*_p2ccyKzF8zfbO9Yb>`@U;t=IrifsZAD?bUClrkHBZ+mEoD+&FcmvQKZ-Cqlzs{U_!gXlfAQnY40rwa2 za3Cx04_@c~H!$N!{1wV~8qxybjse}{skwon@%}-}GE>zG;tgmdlbW5$J-fNJFkgx% zbC978;Aj9tFn z=_i}mCLrsJ{!Vqf2W%dS|18?1W!W3>gj@inHWDkRR{6{r>y? zXP$R@!k4&_6i?wzR36fM_~qkXIq9?QU7go8zgQn?--6Cc!Z%dJIoPYAJN)e#@3&{w z9}he43cK%%xG$`yF0Kp(Tr;-(i8<}zvU1RnUmZIEW=^~jFV=W;?e`THhX?hE?0Rne z05@$Hh;;Q33q%Mx_LrWX%A^+}_E5c!m1d8MV6 zoxBDL>=5u)lqZi#KXs2z9atpq9rE@|y~8LITQ$-<(34B2V<`8g>?&LH)EElsXzs%X zc!Nn%ZJ2Y5rK3}GjagM~rR>CbDv6Y6l&IS1f!3l{AY8BPv-9XTP{2%kLOdPeQ8Wg6O;pnAs^pU~gLuhRt3T4m_Je@+=77bUmNCMCZXAu&!$xr}N2$*M0 z)2g{3p*6`tEjvQo0G}X`$#&)%_Ck}Wa|un#2Bfqm;SEI_L^Bm%$iV~t(TEr9 zJOu11Gr)EmYzT}dZdMDm@0M*f8)l={sFZ7Sv%NdEUo?3*+@{T=+-`pTMa?(AH8?b^ zqbV(GBGH{-Z6tzQR;VL$gm92r2s6;r)5Hb}fdf1GJoESt;RC{7Y+EkEIpn#^4myS& zJ3|nHd55r0h){_vgkND#HVs6EAu&wHqE`1@pNDNFg z<*YG}OG6R^VOH(Vau}l%$l`m^{pNGK{PSHyFX(fft3JtJ7rW&l<3uba*YJC}<-T{n^7havy0Kl* ziJbId%;5<~p0wqEsB8Z+V!aIoPcP~AGT_6X^YxR9074MsI_iCqd7NxGWy?cRdyJcE z@CwSH-i_OqKWFZFUEl!m(j_!3k9l&|gD9*Prn+c45-7uMGCbqD z(C*~Ll(k(%7(y8JOsB$Y+$@cVTEfc4|LB|f=`G6Yxc!EHb9*uPOOJ*?Ajf{*rtG{i zc(jnujtur>vq{j}Q5J>hE<3vf$RhVfE)=iz(9wf=QEM6ti^Wp0)TkNo?ox?ZGMzw^ zQj7;&BJ}b?jt*x7vnN8vjc1ptv2Wa$JVxEgu&XC>scj>D(PSLe*wJVZZZYvD;m+H# ziS!=wd)NW7^2j3=WlK~a=NPWtvdt0A!*dD+gHE(K#&vG0O_K(O6o#>rTg6zQ`U}5;N6AGI zxE8V(k({m?paD8X!v)Nz0#XXmctt8Zcn8FV)Vf0%Zb$)R@jxC5M?pt8MC@@O3>|_C z)OnrqG-TpgW~+fNGL>p=xs=-eeSL+E&N033!QlDQlc zppX(|09bg~=i;F#5n&0kep+S?)c<u z(U@7BxpVHji*iw1-avievg{QD{e2)8!b(6y4YM2fOTZXeWE7$o>heBja8mkQF#BBI zbLz<`_TM>*?|k#@YCqaM-h{#82XQR=D{1fJkv!?(-TM?j`^YWqec|i#M)oCz^8DR) z5d93+z!{#Y@9m$?3D-ORI)<*;a6fcVc|*{76(0E)d7F2nKd)+6M7_Tpu}{?v^hG}W z@wxQU(eox6E{c8Eg(>VQCMtD?e$jB9R6Dx#7yW0`GNDvIcVNfj)OcrX zLy>s4Z@4fxnnF1Sj< zk;8_qqOS$XoUpM%?c+Gd;9H|BE0O<@i#3*!oGcDrSAAT^%J9t5*8A^^+|*mbOSjA> zku%1rUL{YwE3m7#kcB!dzC(?S+!vt_>igV6JcQ1j+1*61!D2|&ZVjxWbpx%)3urfoQO18ICY zQMXeqXb8ls!K7$obLtHg_oNm_tJQ2UnhUA1;B3P}bq4&qEUNZ&R2@y@11+9Aw7O5krmhA;@KrV<<4scWo)$0-_mP3bYi% zg+-%S{8TaBxh9dw(D*f}kuQtdcL!R5%tGX@ugHu@MbIO`c?`%2oetDQft={QjniYz z9~=nH2J20u(P}jt&BpR#V#oH?ySB$!u};9n{LskUYu*^R_@WH@y9v1B14 zz(f0Ci2{wxt~N#pA6I;_wmFB0nJdSA-e?f`aTEkS9t}aZXVAjmF`lBS484;pO>p_x zAI6u$H53&ficb)e6OmH3_X<7Q?bMI7ASD_04$d)hyEYn;r74MmR z@SuBGTwS)6y*hRcWQ!1$LEN5+0d$%I?*zaJkQ1+pGO%;l&Ii|p-|hPaZDhr<7=sDd zX)w7#x|kgu?C<=5#RfycmONYY7-|qNO%jv9cl1L-dmWp8;4jM+FVff%qt?rf#tLgt z14~VFQ2hwIsRREaZP)F`pTi)0kKb~3T&MJkNRhC|(=fgNv0u7a^WJp6ZC%cKg_y8= zZTTTXdCF8imUlkd+a<(t)(^jEZ+J!FI;ZOZ;h4}Bi%7!LEn0at#^^@Udcdt4eIJ$Z zu0@^0fAI;=@kiU&5(?skhcMme? zcEBwLyy<@|#%FE$@6)#+7^^4|S1H(1+;Bp-Jv@c(?Q2KVxl9xd(IIRuv`bfV3jX3G z;+(z=2v%K8XFRU_MxVQfuIKOgwzsbWyry)&IK69>BX5Tji_1j7c`}mQk{O(mcJp?xxCs+iAPlt&H zzyl9aE^mIhG&?gBeD0aGdv|Bsh5I<+#oqqqx4boW$)!*)LS;UfX>=LTIUpHYR1%cb1jnJaHW{e-8B#1!u)+7Qjw2{$wqZ zdBLeH@Bv#jd>KZ=YSk@h3pep|-9q>XugD6baEoPI3a& z?g)0<_ZhCkUw_}Y@_~r60a@D@benM`0QnwE*>9tzruV}M_ZNDdT!5lh2(ZT%`r-~bXy(+k#{%J^hs=fMiCO0mGI!PJIz zy{QynhB>_)$)qLMcl}my9jh+6M~uY6n}U1rSI^jgjV3bfE#$VYvv$5ZI6csx8yo6H zX*eX`ky01#SBC)aJ6xO(=7cM)AzUjj8qZTe75=OaT{+GrQw|=Doa1gsi;*W zq(JePS!^~JO7%IcLI3K${-8Yg_k~G4RFKq^g+4bscLz3aj_lYfiqXY36^=ZWD;&+{ z(2^$;Fcu9xx=VM=d9 z?oLPbmq{AEl-tIbz^g`zn#hJ!7)IkSaGmL3ERHXliqgM4hAc3I-*CwUa!8HaUL=6H zIz__gn{LA)18Jx4Hf_Qp?z#gb9 z2n&coL)^b^TGe`exma3UT=KSVUAKE@Pqo|`f!UFFR}CE}szp-@)|`FbOgpe0|}$(!2O=epFd}9EPTA zmz%~?vDnl6(wgYAcpIktod@2c<*pkX97rKNrm4-A0a?18Q+pn3Jc;UdyeC$RUK6}( zbaW)0$wZ7RL=X){8n9k6Dn$_FYbA7N zt+>d^5{3K)*ia%h+@D;(Dwjz>`VD+%EKNcVgbq#dd8WCNR3|Nk;-t`J)ZIF3z3-k7 zQ{?<@*gX0+Z`-Ou^rE#x!~H1LMl}~zK#OPxMQ+JWVke0|!D4pe3r{}>lW9Ff11>5! zj)Avo8xFWi(2#Y6$59d$hLp>pUC!uDd?JH=?JrwQs8_94q;=i1C1MwR5Q#!Qk-g~Qr$Ow;J(U30@{;}_$KAjfx#g(??pp7#GxreLAL?{37;HK z?S;;@QsaCcYhM0&{fF&qJH`2WX|7tFt5@a;$lEFYvn&^&Y$74!QR72qYmh#c_<<<1 z5C@=S8VMJ3Y>wI#h!O=dSTK3Q;Yco@gZ5Jn+I)#PJ>bL&^)qMR2e|H=j_7S@Nk6$y z&MMxAUpQ&G`&-JF8tSj+oe%et4zx%~iR$Z)*?LZ9;R}EXXWGRp3D1B*!!o24P&MP@Z^fR=)F$_O}bgb#BN-lr*2Sh6ty)pVaUJVKiu!qH4HaGiqh% zd^$$cKuWV-LYy8JIraCt01F&$dVe9ZX1560u*n}HKe7e+b~R87^+g7X=%W{FyF zS?{@B*5^#hNpmR1(8- zYE%qN;coVG@YkTuT7jIhq{J5TvgozC<$(UhJB5&3BN(`M-S9#xf!61Jg-jur$|j>J zG)|Gx>4Y!|Yfn4~O%e<$WYSS*1t`Lb1-}8B>z)qTK4|D!wT4-37*)`xnr7`A_O<(F zvwuBxS7^_)wpi+(-Ni^`Pd>k|r^k*ZB9SOsv!;_!V@rl2QN)p|bHeDvR?Uba+AO%W8Vy+Kgg9nb*WDq8qLOqk2ifnhb9f+7_DLFFW>BUssn z@tYzj_!C@nM3BKTL_h@f^g3(5;KqRZj)_mIybv6wG^!28Nz;`ZB#r>>TMv3oQQRhK zP)m9+cqbM5v+0K^Qg0chDtz~HvA7%^-@oR$XVW#`LPA92$fhfsZ+c6rkVoks(al^a z_h^XzBB%g%9x@JqcHyrRuA`V<@HR!Rnj<|R8FVOHY`m@9E`po(uN^Ouy=Hoq%tVe& z3smxZ(7|T19b6!Y1*lOlYvpwDUq>R(;QfZJ-FE1mq0FX%fdLpILed!BU3X3Hxx4(J zMO;8BR*zmCx~8|cKb=XVYcH!@68WC&Ql7*jZ~Y?q>$sfqd~I>6SXpRP7O*O`PPZ5k zPHV()pteEyPACqO5I=)A>2ZGpE;gq-DE<@X4{a#>_XGSQW5!_t@fOOI;IUR@w8?`! z16t(MC

XhLv48kUik9vkjS!~ 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∨VnX;kV)dz_NlTDmQvyA3r~Lc^7gml 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%0Au*m@8#T4Bdb_ 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

75_#7y#0CIuy+V5EXcBR)Y_uEV)gOI0D?aE5Y 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ℜtt?!*3maduc=AXJTx%k15 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 z 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�nTR%D&_4*j~VjarQBUO0{nw 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�rjwYn$_ypeT*G0XQ*%0TYwZ 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

^+>`3m-NSSK3+!kFY-fiU! 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 $(tle8ktkJab%g zrI`IG{tTq2`ux7atVz97$Gg^T_4f=^E&DjWwWGVS ziaa4yC*(!eEnJhRl5smJA0wZM=Q4v%#|Z5vJ!Be{a7dfT4KN@ZDO$vNxGYH+^2;KW z%~M{O29AYY89`KnTZ^w)p1;%o9WA@geIoW!hA) z0bQ6XXk)xOo)sRw+@nX`M$lz=oyMU@nv-W(3*Iyq&2zlH#4&4*6)h(#ISY-#zD@8g z_h-yiS)&#m2tC$`5$&--ZA;#{FH|LOb{cc$vL};~H$RLOj>^$P=uagppOYe07Csv} z4BS}&kiE$+6(u2Uk-{*5Nr*Y$iBrf3Y%xX~C2qwzh}IbCn|ykFik(~3091-1@tQ-B zpnT2&X_0RZO@#P+$zzu-}l04C+4dv%FD}9x)}%r zJ;*C{c^wXVIvqYV>qNtA1cLdAR0k+RL@Jonic~&OSHWpeX(5FK$ws6*!bLH1lbQ)4 zU7)@s9AQI}IP|OvHPWtR&BY;0@+(q?0-c&hpQlP@ijbTV734pYk`4A7;p~)U#zYn5 z!yrc$!WWeFOLd=Y7-Lwu*XXXF#iaI6yx=NI$$do<13lgR^yn_1h9~?|j$pwN%%Rp= z4;PHG0tAqwik=2)e`<1$hMZ$e$}v9Wn38f#O*y8e95Yjn*=gqR-r>v&raR!)(gE_pxBd? z8*2DP%}87T?_BlMS3dXEzRIddJa)u0PabyrO_Alxu%g}mP_VkeUs>lat8|3QG=Hez z_T^okf(y|apXT=I9xtnYt~+*?MI*uJH00yKn(kTi^19mduRUpwr|Z=hyNQc*=Z~WK z!poFG+UX5T5>2yk5>Mrf24C-zpM3t0k1rkZ%-Vnd2A8vLY;#m)fXUV(W529nYORV} z+CZPK%01<{Yc8MU*)Z?=E9Y%Yj(R28cqpzMY}e%4#fg?#6;x-Ub!^@A;O*C6bmozN zx%alJ+Pdq0bx+Op4;+8?QDYiHoS;E=3xbAit!<_E)7rYVzOIV%In>+itR*)9*RmDh z1SyO98XL+R4%uVqw#&Aid?-|3^YS&5e)7A%dGGb~j-*h7$2~<641mk6kR3sHZKoqe zlLrIR2$_y@%~cM{JHlQtvkf>cm?2E|hp2si*r5r!g6)D+MeJ4LA^Sg%y>`3&RjiJ6 zc~{<8ns(kl4WD&hY_=4JVs|Ns6 z7WYMEd-g-3Wb{G!JDJ>z<6VS7+0mm`C;PZzrrTZ`S;}^?AnS3zde-UYxUopJ2X8FKRNQ^cN+6bs?K8uMlQZ)BG%UjCKpslYZC40b zX?I%_(IwM0aKakp;7CB2V%vNvY6!>;PSz#SfiTM^bG+iu5=CaPKqpXPH{QD})M)Y< znv3#LdzvQD=1FDGj{LpU7g1uf^YHG{GAXt3N4HRk*)KKcbb(Z#&LKiPA#{lF5S_Tt z&lJwBg6ScD7@T4B6Oe+Rc%cXQb-*I`8~M-Ja|Wj!eHQLLC>Nyh5RD=Ep7FwE(aGT> zbXvqB%>b4L12;@@Pomug2?$mkFt{O(R9Gv=YeAjgf>Xhr5)5`usuTKzHl+1`h2hxM#b%Lk66J zFyK(zk)bDr;@MS8FhhK^l$%8yQ53Zlm_=bYVl8Iw;*#6m?sX}%TG6+q)=|l7lFyVb zq2g=VwLARvzcg^_OHMWk6}#w$H?bs9QYr$BCy*$ZE#uek zbKs!YQ_;3HI?&hh-qNbK7bJ4&WMdNxgy=6F;9ay#Y zt;bjBr=R!rW6Iomq34BXo=zU{rSm73Z&>=`0&C8hQ>!?kF5k2Eg{QYgk2$o&`vq>D zwq=j6*|hfKS08=z=|8;wYDddSC)as^G{#TcvvTO;S3X?y{G#^;DrU^73rSWU91-mw zJ@;aN{RxN6ZKT`?jEFh3`Q^vfI}SSJSn_^Z@fAy7+C1TNS06RUTKC!u?=9LCnR}r7 zgU8oKPC95$u;Jzg-g#u{+SMOC|Cd)D{r!tCv`;wWLL7A+d?-*(X48OjbNu}Eiw&5ME; z%xw`RiSo!yY3Z3U!M$l)0B*2%SM{PytEvLx2KjU-9wEQG8F%O@rvr(5*m9wQQB`o( zSRnc`s1>)+;jm=3br`J)C8|qbsU#C6?QI!U0>3_O`TSq_`>wYz2|dC*#_TONK5@e1YugU@j!iT_fE_d2P4-D)Pe1d8gyWlTS#D8(UxB0GbKGvy^AY zOgdr}(R9n_C_!1dkA=nGPS+s(!`>#SOglS-%p*ZsQshYYD*ja|gd)ADdSZ*e4?!m4 z1>qSZ&zS;doF1g$m!u5|buSN@NPMy4d5&1bOVXHJelZ9oZ9zw^ukAF8{9>cqPrMk_ zszncwybzzzC|VvpKf4!*=?sX0$Yv>>i#>372bX~c1Ayc%Scha9;-|x-I}x{r!15xF z$w5p%KLZ6lh$r}?3mSfgOg&=iQByDDpAik{P4i;!z-^8Gq?lWz^H~&~jDxvU*OEHI zl=K8TK_>trIEB@|y(*MR6~Q2h`=yR9R+{w3qW1hW6tHtKXb%@}*Ah31IhxHaAxa| zPe&i0rasgZ?c%T^`XLo6PDRyuOiLED&YafZH3C?D;@%Sn*ywg(8_oVzY&LaF(N8#f zJ96WrxNH<(+FM6<%;=U?c_G>aaQLpPJ{%m*g}OKa8q+#uP;7!!rHy(!c!FO z?u-l$G_6=(Gw)?oln+!^a~`Gg?~&ali<{wBYoWTTrlNAr=T183aKv$dI(lEa@uhdx zY<%;HrAs#^vm*nAz4zb0k)YEj;1}2I<=U4$zN&rNiP!$(l;e+|SdsILn^Q@|7lx~R z`mCdlt1E0=xA?X9=C{@zc6hCi0&IE_ejPyYiyr3imX{t|=Q#M#W2fT~z^^4QZW?>) z>0_GqnlWK``p$kNuC=imOzGfzEfYDG3ManBmqak}0# ze)5#rb3)+=qwTC=B_A2~of6nO*4e>qU4UP~){c>FT|);ReDKnxOSf#^g09JLy!Kky zZ|*sJk^~h*GBfHWYZ^M1>77KkQmh0a7jJcW=IH(7{X?OR?d5B>WHz;RHP?aN+e_hW zbbTJ7e!(beGaJ4%-pAN!YPGS z9~x^{8qYl9N@ujGvrNAiOzisJ;7&GyLbP)9iZ_f2e#br`$FWiU>UM2z$N|5k);k!QS|bT zR9dj1jC*7~&PYyRpZI4WzX98DA^257VmRitl<%=r=)tCRRXBtQ7^^V>oodk?6fvG1 zFgtR_zG(GMkvgT#Y;>V+4*zV~vSrbN1r#oTjgFt{$wl*cQZhCHFVpL=wq?y{hpcP1 zX$P!!T-N45A@pr^=@*)Y_cr1fJMbCvGlQRS)Da06Jc@|cgQe7>!b|gazmGiqEL_Sj zAA9sbOG{aKMMY&LyoyL(!|jp^ROCFu&xWA^3Z^IbQ&g$qf^B&ENs)2UibRhk(u&e0 zOcH%7mnE@UW$eYfjD@o_da|R7HUbdfr`Ulc`%mm9K>(uRY|kKj#n_`*+}pfVn0%8B zDI0`w@Jt+YyLj&C4YSR)Pi*QU_EJgrQjCoiVn2(qDsjs3reV;m{K6bzBXHgRppIeF{Q0jQ~=ItB<7Dfj1A=Nus;V9?u$=^S+9O zoelRbtp3A+?)8@p?)8(wF%GlSQ|NIOhIF*C$|cQgBA-nZa!C{p0-iEyB!Vn}s;UM; zmIFl?5oat0+KLdQ1fnr0DWVE`UHUBI5q@DGRC73 z2RAVKSVt;r%EnIWJMYUc{^;gKC!Ri7RvsE0*!#)99C_6@Y99V=rhQ93F=SS3KbJfXZAGIMnQv{bX zU`m&VC;|H&d-;PyWuMExarv>~-q#kbfw~;UuW*V-YR1$wO`d)3H>QU&eXG{RxF3j( za(UnC`4Q77ccd9elYD{LsjIDc=9%YaO`HCu&wt@77hX7Lk3AoH@S&PoFba|66{m#| zO41JFxV+Mx>@r8--tTjkmHBGx%3PP8-};TS@@`k-iuL1v{`$`hL5($t58nl5 ze__gfR(tq21D=CJdI}yNhk-~Ubq*~OACP7gHc<6!8CUqrbEzNRoIyF{L-)E*J3O#x zzBA}H8h!dzwR#JxvUz&N_^fgn->)~m*6z7!IFk2;xMzb%Xz@QYg%onFxT{Y*kpR^y zJ@KFYV4#)(c!HiKb*``%<1kk3ob^Q|aniuC>l^ ze6W8@IJ2lIoV^&_7ns`e5)xII zRE31eSE<~R;{Ovl#-G5G-m={?;{UW=U_0N1#eKf37oPweqRxt5A6Xbh7e}eDgT;h> z1EbkPOtUW*rF>;^@L3cK*srGj%u{> z$T@1Vj+%^7lh&&^D=XyXFR(N>ItbZkyn8}0s&Nj5c{1hcr@(9U2~S@Y~Gbr545xZIfHn6l3}JKxUC za-a^w%dSC;5*0mQ5jMEu-wiK)xAwjv(|K0Up*^{jx6tLzbvZH}db(XpcWRj)zISjM z(xtSY$b>G*2195`4CM-_`%v z@RnQ#J4NVvP%4F_d%8|(HBtJMWXSE_Wbzu8@)Vy{FX&#lO+hh_RlQcBOfG5LAvvr# zAj&?I?6F-unVyDCI#w#mRNw1w#Rc%9(nm!>wbHCcEieie9!{PBuN}11+0a?(@7GJ2WpeD&tXmJP8(6(TGdOM$NpOEcE}`p=(48{Od#m)w5w zd|g@6qg&+qdi1OI@LCPq3}ZsMWSB=@)m!k=I`Ijs3kOYDB8gz-T7O z(8zYjH@3a-^M@9tKs_+(YNdgNeV&h*jxtA@TYE!~Qxgs}hJ)BX=#YaSd-BOA{`S;K zC!Y+jMn`)$v^YZYNTb=XsU6RCn>yBSYTvl2W8>z|jhj0*ZBfrHTiaV(+qboKwzqf0 zVzH5ZrY`&L`76u9y*>RkxBRj5m3KC`_6`i8ZVXfB0oMV^AIhdc5fX(OcrS3zCCM&k@O#-=w!Gw^ zi;s%B{xHGSXE|@^4`@hbCRL8Y3qNS5klz&`LN6!Q4~Vh`1_lR*=s66E-jQJtXECs# z7^V2hBom9fUvsZejvjIp3z8fF0X=k>!Id-c`9V4O%%-m%6nW!BZ&H=qiI3<~#H(f) zDAWaa9a7Hl8DPC<7f3#=zPvUs;dm_pC!}$3 z$ofWAVLybSly{h7qU7WO3w$a?lsR%@^)68x3ufW``-11SH)`*?7jMl!;?PZd%&x7i z!K19KjNE-D%@aAh)b1m}mXZ553L2{GV6wy0P%ax@uVPhY`o7u?X6 zdnroj73udR;FR}TL9^ZJK+N!OyPGqUpvbX8a8A z9lo7p!2|8BmROr#Uj6VWcrQ6`<>$5 z^p(J>CP$`#%sJ=-6svl|CS}wSts0e=5=jSD+EOkZ=ThP)zpx#2JPfQVS@pAVAqJeh zBY%+NF?pPpAPe6oS{kKPdbKlAVNWEJ0*G{%>7|zunb?c+YN0z>D z_wDmOWZYK1{|T4>^r-1k67yz!+bcKy?l-RuR~&oJwLjc{9ExBP?XTbU@ZFEMJ7yjF z-Jcx4Z{edq{P?lwTARFn>nq$kE`?>e4t*s13qLq1Pljf<`+)>aVgRYk7mShIW0LPjmATMh}whw+P z0wQ}+6k(Z2$L%EUr|pja8-L%O>{P27H}ZPid3lHXp0SR-LexK-)Evu5>>z9cY;X(> zSpsaOU<`?ToLM4igL3E%iSGE+>(4sx{Hdp}SBEp~8<*$K`h1@1PgH)by%!-vE$#F* zxsxO2m&2(5e#__3L6D>YZ!S1=BoB-XR5sQ~1F)M0mkP}*C6ZW%%KuWL+QNxi~DN8cLC2H^dzW?#0s{7z1Brvpl1FrB}=)4MV2xS%}$=&%b+EuW3% ze$(f;ph`Qr8oWiS#*yqEmNt~gqFMKKxJ&Od473NgqP%`VZfB~@WPuuHNjTpn$o!x#38e{PzzjJ~o!7&6i7?(47jgpwW zBLoD<)rcG=^DLi57jYDHXW}FNkKUd1>I+R9*5Qw7pZ}wyPi#Bp6knvAUG>!UOL|1G zB2#CuU1Fo_w`3*L5`+ASqN!ot>dIS;IJc76}EfplnfBY znXQgb+Fd2zC%3{7(@Z6jMlj?dUKO@k#B+&D22&Vk0^`B(ixf@{30SFY*O6N%w6;7J zaSY+uY(5xEhX)hHI1fR5#^-)AJRDp4`Y%z(#&#=xe!-#-zyIU=z-2Y$+7;K0Ylj3hJ1n%Z@`^W&3e<`0-uRoxJ&nrwKgG&jOn$YiBdB1$u* zcn6^c%6VlmK00@H3`k}`gtW*S#{7cN)I`fy7xCFnFZiE&GvD>nul}li_PfW`>{bi> zQ{S;0{WEIRp;zPFje%b`Thk+6l#gKFpwjf^LG$=ZXUOFMy&nup9F41_v{tt3K=*~8 zAS?mv8kRJM9vEuPx>#glc~#o@`L*sBo}eY!&}4o0>fF(%lAw}}qXfLJ_hzkoyYus7 z+V^Vmr}>gbAx9kJ@MYvFswVIYS3-Ui=Apo+Ij@_DzEB$puNE+XC_b4oh5@9(C1@y| z5v1c}1&r!P#v1%TPRv?Da@5tl+d1sAHBd2Ne6bCIQWNbr?jLgBJtlv4xz(E~9JAj2 z^Cs({N?6yFchAyHg=NV}%@X7C4Ovj4-qm6naEFs@QM-V@%Y5~fSI~0X@ya#dK0A{8 zY&83&vg|j@GiQWzS5#z93L^_I?`Bys>aFF^$$}Nx#Dk-lGbG7FXb8!@_Wt|TH~#|p zSs%~ccjZ9`prcTIZ7t~eA&lfYq>eytQrvyS>>&@1_7SZq2$bdgqx*z0hVq-R+Lq7q zrBE*&;)AdeE(<#v8g*W}FrFrwNWzH9Yo>-?HljEmNi1>hI_*H&g=+XDhB=v2zH>nnW&LATJNGJ-QsO zx07+yh>J5BG98Xn!cVA1qMuxAi8vn5sjy|-y%cbLaRLjRa)<8(_cUgl@bI@rGIZU*!OG^Gep<8>+iQ-UjlrxHD zec3vJ)TY3h;v|l$TQ0G&|6&hG>DJxJ0vla1@<(;@(Qim53>BLWZ34cohwa3iq;LDK2z7!Asrs=#=rG<8qnaS$3eh zcv-`0lw>vAkK*=JD?w(yn6=CJR+%tl5>WCaZ*hB_*kVe^t8gT+J5+(kAMgf4`MRdf zd+fbo?D#-WS9xDg!`fA~%NF+qgCn63UlO;7ASGW^KrC4pVD2Cy)Ce%ZLgF%XA4(be zK`rXm13(l!l+^tMn#P6Vd@s9h*(+ZxagZb{F=}_5{Nnb&#$y5)>^1u7B!_~k5s@@x zPWquSqV|z|MuvVgMFrhVc4y*mCWBuKtwcFIDuqEYm@_?TRL40CuiyRn)AN(b^d;Xq zizz2?pY(0p+I#2Ee;<4VrK|7UL#BWGlzmUyZ_;72TlN@V+dY_gZTV*CO?b%UFucG= zAl;j)Lr0HftJd|jRYV6vm4R@LhI$wmagMVvqY#bSr>yV!?uGEe#?B>QtY%j2prTaS zZez$9{^uTrp80oQddt%Ae*3fpwQWz{`bW=kr%v+!&wj^0c(tMiOELjF1&nbZapc z1sWG~7f8ky+_{K2*o!ou!l5q^LNQM<2%*R%H3^iZAPRtvpu_3!s!$m1QLm27d&>itTyA7C8}`|I#Yrci$gv(dnH3fI0&y+kYyhV?rC?QdadD2Dl7@68 zgt~UU`UTw3h||d1Tp&`~z@b3m@sh+X8`G)XC{9TZ8q#pFl}nxt_G{3pVgN`8Y`dMg zYVDJcV#I%N!~B~L+g>Y=syTZXjxuaLZR=IUrh4*HBX#A{Gpys72zHlnap24yTw&_#Acx zAs!~>=b>i2Cd~kptxE4QoZ3zW^HmDng#2B>uOeqKzs-<=bRwOO>N9BZAXts=Ce$94 zwz(Q}+v~x<@;50`F@#y+1B0I&Xi}OA@K;mg=X@+@t;$3;7Q&nI;f?u7kLepW-2SIKXXQf~5Z7yFUx5DY33bM(4sWNW4 zejFirB`l`6?xoZn%mR>oW1M&))5gP8vTW2JlxC(sD^EJNf>0v6I4bsibLowZi;?We zxfmqiu}0wuON|Uf=fAS&-=ByK58|+`lcs)r?&pnhQ$64YL$7XLi@f4c*rdE}49_U* z5O>Bxhfxt5hcFgVzl5ek?~WAaMvNMi@b*+MLb?VYH<=-&q$&G z1-@ll&y`pIZg?dA*9WheF=ae%fv4J9^3IBDuDv&w8s$0*`#o2kb6|PMhd(2V@ZS2) zCl{`+js{wLhoKD4J#>0)d9Z&Zxolm>>TLr@&Tagj#~plWL&oEJ?lZ?X?mM@trYTZh z>Gh#06zOd&7-(r+GEPN?j6FcR7=eGo+rtaLfAr<=m}Aep@3-HW@ZR^&dj8ZWZ#^jT zZ@3Vac!=s2^gTC(?rzK=6?|3Nk=FFNLG81fNbWr`(U=r~=|qWiyoq3MAY4G3NCYmD zePvrA+P3-Qjo*GVG3St`@qLMgy&I2=5cGe0zU%IroB&}s?0~}ymtU6yTUha4X$$Mx zrnLFxP5IXvN8C9y8UczJ?KuM>3?~oUee zL#~dzaZ|HnwqHj#HY`!Ql8f(4;0lW~$tB&EDV(w*^WX$yA2134md2z(C<|Pa#bhkwWCOB+2@Jqxf4k$Vk)esl)p(5_GbL5pNr~oA? zaohJM`pDJ~^reE9c5nLZaCsuci>i%gfIZ;+pi|26wnh5y*l_=o-#LnCRAw_p=$Y^k zPA?>Q8D8olK;=jQ0B;GZm{9s-WJTVkR zq?T`V#Adnr4)tt1&A0Be{uN&iy!Y+k;w!^%Tp4=v9N+r^J@ayA{EvnYYAtvtxCX|! z5@_W|u^yC3qW2?)h#f^hrc{x~oMGZ~64XRG-@csfYTo#ox5F8`nEKt>_Pc^#_E__+ zbBJH@0@75{G@InD>B;FJN{9Cg?LAOEO{TN*_Aqv#2hb|==kQEA&`klkL{`jc#avd* zZH>4zdW|BbG)&rKG4L!Yh%?rymJoomx zP2EG4kwEug-0yX_)RiZ*h1LLDK%~FESYIr?rnL_#))QJH`+t5;cI`-@YpA++aMO$# zy4%Y-gt|22^4Vj-oC2bB)f(Q_#P4!s{&j!whK%>;70%dyLdQt+OD;|zzZX3uRx2$Xi&|Fp%%|)eTTV%qh?Gvc86o+3roNj#~(zZiN!!srvJ_D_TT=l?U#kZ z9BM_#y0B4*6qymZyprprA>r%*9D#K9Sx7^K-;0~6z;;6KVUR4sABrY{$h<-fT~r3m z5qoi1fU<_+cjZaL&b6&24_i7EuZPaUL7}N}bE8DG@cNLgOiZs_s=3nWdN#s0?&#ifiDE!1^x+R(4t89}Vq0 zKOJq*`^P)F;3+h$441KxAmV|59yGCm*~_OcgDRG|ADGnJt6P>omna_DvGRtEN%*(j zFF$pL5+|aZz+Mh2+C}h-E6%v+47Uv_$H7OfHedwZYT zl9r%=g-EXAC9CTfSib#($AgZxK@pt?-5+R#`4&r7I*)@Cc(PL90jA@bMg;6GFf4l;n-&A`<~sbC}uWNK{jB)1s|1C9;&#-Np9eDsf`@F#iV9VBH>9$S9I zK~o2&Oz|#S8|oWGzwYjFV>uVw?e|iSH})^0E7;4FZwD8;k`ez&a@G?v=l^-#S--fj z_s+{-tv|-Oc+Hd(52D7K|AvRGyeVGu>}dYXXyM?XxnIDnb6JlLIKEJhCOZxk?kO2) z;|vkTLMedYuwkZOe0|lA)>t$5Y`J)f&#M@J z-}vAi$D?18c~mPx}WOukzmN-LC&tGo`F=r1y4U$)>A)5~+C3yDw^ad*f5wfKr$_tDB-8oDGF*dOQ`nc(4-t1le7F zr{f15#x0HJwVjSXjWzcTb9p>s6V#Z5+c1hjZ|2dKhn2b=G{YKZm4%X(mj=wCg0+`V z(%l&%n%3scTNW=|0E?t^r!$YMEM9Rj{Y$(T${`PB!2T{yN~Tj6I=iA5U*_uR?HSwh z=2>U>BM}4~tE;Qa%gfL-0JA~2C=q>yh6M3QVuAWPJ`)90M#a)DRwhFz5g!V)DG5L3H4Hxz^@XHXRRnOTW>7DrjQp@+_UoVoGlyM{G!z?C=)qeS z&^Qo@hLy;yGT}_3S_x|6Dp`hhMg53-jXS(piK*X>-~uwN!$OR2TOXS6Y?O;c}|J{1I3TJ}}z;e3+DxVnDbLgweo&{rzm=K;r4h*+)1M1>qdg zVUfWZYxs$Kp_D2XItsG#r)=-8?G+n!jTB$0+bRXNJboqC3yr3Iyr^wE_(&}=&=dx) zPMDzmX#^j&J*r$4e)7|RK9FD+_Z5Kt#{Igiv`dS-tRcf3?#ks>WV|n?>OES%!4c~y z1Ybyx!`%h+Y}824arImg*$gVEoL-T0l%t*$1j2-pP$FmMY2ZluVVv2I!|0u*txSnZ z%TV%4F#IQ$zQXph%=pjZe}zc3OHY7pxWgDrTCsPbTu^O}Z-G`|%Nn007oCLj@K-eH z&4CCp5wCpd?|VM;m@Au&2SZEF{%m5Og9Bw%XbP#)85#A-`nJIo(NW?8s0l81PQK8e z&c8R5pA*umh}_Cy658ROR$|M^b&D@wG23w}BRGZZj7gjNSni%coGfgHYmD9L+nH%X z#s?o%EL|)XIV*^)qC$>pehaZ|w&$3R$*UTEU!@Nkpki@_^Liwi3l7EgCGW0%{OPy0 zwsqlD4fWNZJ@=@?58e}33aTUAQUBlw{whPfoqvu;LGDI;EF>PO8%4&-$C<#{nlip- zzrCjoq#~&gy6bPa54XJV{B!gB?NeW0+fZNUa(akDJxPqLXj20V3TpKev;A*>qtN-p z*T1y&(x<*#_VN$EcEdYE<)8V(^WPZ%@9=-Ap^*9&dqI#yK4p{VGiCWRD&0A7?uanu z|3&c=@S+5e+{zEze!Z-Fxv&1NGn&Q@^gO&e);1Vh(4ifF+|(aT_K>4iELhvli;d`i zyvO<1-#N1x4W*Hv`AYu0ujYbbI%IuXyR|dlk=2e2nO9e4{76^8dNvG@(Je|kmL(l1 zJPaD>-fd2I<>t7OUPQCAV1UbtF(!M+Ub!mR1Ootu5LeVlHc~NLNu{SV@S=)A%7a2r zcP6b^QV3l?QuaVYW{e-~n6A6Kt>=cclxh8}(LzKu524OvX=wa|*aT4&k%z#1y)X0X zkabqMws)Bun3cCA@=@3Vvdm4%{CR8g^ClM}Mh*ov;LTW()bD?7!MZztsDoi;r%SRF z{YY_ujDGPa3I>ZbrYO=$b#+B9x!kj@eW0=7m9x%pN2ASS#zfKUED}bL5g&w~4?mep zf|@l_VFIHZF#zSv?3|K$M)D1r&7ZnmN(Wz{6~U<;;1}DPGDpSp<1K>GOr(qVi#cQz ziDGJ9%+hYYT@kbvZEic+nGv+y3S(Wq7;^aWgMu|S0K_+b>fQa{Jb<(poVyfZq#I!E z2(?rIWdoWd_A>(Ocj_Z(;Enc@+~gFo2|si$dC1T#9NsdA$AOAhHecwWbcARMaev8A zmK%2Yr2T%$pX}8oFj;L;2En*Q$@9Z>0eex)3n+Ai`8@c~$(vKR+L5R6gMvi6ib`=G|JuXPt3e2e$e-#?|(KtoC3v~ z6;2n>H=Q~($enVk9K4Az!dTyOYKHg(C6`^umMI5E8A=@NwRf)CXlhhtY!&F(@$O`_ zl(on&`CxgQ0#nTR1Svzr6Hxc?Isk*@O!V9Z{Mxh9RqnH#fQy_9C{!ITE$7v8PCdOa z>3n>o?6p)i;O2B!?}d<2%KefOD; z#f40mlI^Tk83vMaKtWub>o;>9Xts@TWx)z%tw_==&zK?e&(Bx>^@+6K_xd-!8XVg^ zZftXTSp|j(9E-`Rh}ofX6AHVd$Z9n)gz^|gA#d3;r=dm@VSTQ{`?ETIqzV#c1s;XYU;Cy#Qd1X~qV?!Mn z)o?YqF`-I>(Z)Pz#E;B9#`$(cEy{)3@CYx+!uyBemyEt(xBpG}#SmX1aN8-!*o$={ zSJFvGqyMkLFU*CsfMn3XxSjfwlNwIyM8S&qTHK+<_?ZC95?6FVF#xjo6i=8FF*{_E z!7}7_^!)aj(e$f(8+^Tf2WQ>t9q(sd>3%^EftP)8n(28!bXui{T!%ZPV zMLbVp5HU%eXiB0vC=fdu)ejZYg#tK=6QD&0M%ikHzA$)Fg(G`w)%#)Hk<9zSSOL!# z#=+Df7s~R~vXctF2y!S8APbIh7~A}SU&ZnS@%r!)d_jyyxw z3Bn;C9U_6da8Ty0N=nNfq2yED;SZ2f$ms=yyh#Q@Rmd( zPC++9;R(*NrP-n-rwGCrV+qU>wL@`R9s@YZoWJY1Bow!%Ch)ocYt4X zvqkvDe^toZ296TNBz;R)K}7}P*w1POV6Oz=*WRrYFOICaKDrpH4UtB}f$n6%tmRF@ z!r~$?WbA|j0q%+cXi9PbaaU}LL^6Hemu`$iLU2=s!+~3_|5i;Eu!miHoYzE;#z;7dp@9)4In-iT z|HnO2tM0n`nHfL+-r;5cPV;-G@XHnu+E?3s2L-IpRKln2&LXVLq^acA70&_*5T&!@ z!&x)n0mlv*vBSMTer$8cwDDI>c7C+9+cMma@B@}Clc52oz3|cw{=xn(vykN{M#NRT!`UA~wHkko``<`=e>={|IXn~#XA{doP6QS7FWRE?oot0Y zH;})xz3}|FOi<5%Zmaj?GX1nFY-f@J0IyOAg>OJb%7trlA0@0k{2H8OCxp#~uf1~H zkFRoEcG=~-S)gjD86DaFF!e9(e)iv>O@Qa>Yy2x#CL)m+&pN|dRYl~g)l~>M68$MV zqL7=9GcY9@k(j$qo^@5R%P&Xsaf zu~Om?Asd4%npIeHcNd^$+`edW!r2&-&%;wBk5ca_f3QTS{l|%ifBu5l>mb7_s!m)E zHUlxfF5=}!2IL{%M{eQq|7_OQyB;TyNY$HUwI2j z7Xf-lOk$2xvWJaeH3)|dGwCwpza0v^n+`o+`-VYS*JWC8S|e=$$(>*orgBwkE$`Gk zUc^dq9uCN2OtF>YttX%V)8<;weRo}V&gn-E3=H3P*I!RKdS5RHHWYB=OiEk`1~-=k zuReggp;1?+oEgkmm02ySIYSP2(B<_f_uR|<;!Ba9-VvX7pr#tb$b_6;1R2N(`Om~& z7*ki(e#ad&mYNj&n;&c$+p?3dMf4TkY;l`E?DCu#%teSEn`xNDNy1u9$#+iqa3M+| za>2^I`uyrw$4){RAF)e=3LDmL$66Fa+v_p@{pL|ZfbDO^UBgc|?j;9}X z`h4b;S!kwbgq=pE(?GNlAezaK$@H`@O`99g9_rKHOgi@r=wS~W;q>gZ++CU{#MOJm z!3*|$PU+%Hr2wS#=E14BZ4MCkH)`7uAK)cBb1>c^$TA znzHUS9l0WeUM%w)8}hd_<;S}z@e78?{J3#!m|WR7GeRgNt9eu*$j+{Ee5uxPezjwg z4>#uAvU%f@H(qgEdg*1mSp_z%99=86fJSVNWCr=PZu)s(!J@3s_uBdAW+>UKs=mH1 z5{YnblZv&G^+OyUkZA$*iOyp|I8Jl}X@BHCF%f-s zp!+*oDSNni05y-N8#SytXKYW;wzC3jJ{w&7daC)p;jv!`ZpAEP81ok5kIa6>sDg%; z!9ROGW!Cvgk0 zpBArOZW!HGP2HBg_t*M+E84c!Z(J8%{ZYr57DuEE2Sc24#}m#+>8qVouTr7gI= ze4O};++>kysz;T&Yr$cZ{?GR-FsmraMt`;CpqlwntG75T?Bo!+rMzV1`pO~l=&<5e zVd(3F4Gam*T}<*^4EwTI|i1NbE?j&>$;aY5EP)Z2E>@#Cu+ z_rR^r*<*57&+zK4iO&9<$L%Z&Bb$x}oHtF*%#3JxG>whxR7&g4Yh`)8x?n_gSHN)k zoKPmw=%CjZT(Y#Lt$qEJ$(GNLxDwzOYllyKiSmei48O#yOlOipF#Jj#z%=chk^G_&^XeLK z#**j&th%$;1^!g7UUqnxw@4K;^Vq?%!e69fXzQj8OJ09@m)tt1}JJpJ4XbkA_>jzxZQj^4Yr)$wlw)l zwov>+Qnj$?OM{iNz!X|jT9W|@=0K1cPnTp= ziyMrpYbdbJr4qJMw_l1T9)0WpyljO{N8!BUjT>!gPp^4cC@e-C&BV;$xsC zXA3ORz)EWI{i=(W`y^+ifG{Ohw_A+7WJ{bwwnn#yQKT^i{8Z(m%nd*gsH=17Tyiko zU+d|(d}PwcIp6is1$URfd3s=DnFD!ZD1AlNc~mnhG)D!xnCG=>vv=^Oi5uFTbxs$z{9#2kMk_sK~=|t=0JhFmJL@~sHgn5)` zBb+?~w!{a-%@t_ZiN+xpm#uqjkS1_VjT4It^`q!1k}5&vBa*reMnUvJwa*1^2>O+h zK`|CM)r!DDAlSdhoW7d+@>L&}_x3a`UC`%ory3eOP9$bfa+Dm3>yy|5bN~vzda`DP z$MQK~yMx+Fz@05yN>?L$SE<2+u)5e9lW)0LqHDuY+Jv$wcvta^^L(Pf7O_80cH_;; zZ5{x>QZ6(0!~WWC)BSwiQ-+3!3Tjob{DOuv=s;BjQLdm_6Z{St>Np2WTZWtwBd z2F=qCFx~ztBQO@Dhooo26RD5Hr`7f^TCJ6ZebER}qp=@6ZDj||+%V!c^!-Kb?oueTO1YHn)Uy`uRSX^Env z%T~b(>d;!?r9azSI5C*Lt=GLFWgQVjatMuh(TEiPu!t2UYIMi=I>++&yXN<0hYj!K zaN+e=R^K@oIw~Ch&BDR5ab?Xw*E>Gwor)^!n3Hpd9h2X>(XnooYm&p+<0tkR}T zWsWXh>AXn!%Xpu|0-5bM&Mw!dc(jQg?c}g_QKf!Pxp8b1Yf(>{#=}F-MH$a=p#qK+ z+Y6R%-szriMt_rt{-n?UamL|yJC`P%xA!_h#IPjkczVdVa~zsJqVS8QAMazLJrnC$ zgeDg>an=G|&(GWPCq)XgJy`|AaexlL5T zSmBO!`9wXi_k~-=kGgu50tIPlqKDHB$&LkpLTz9))`o(Jy z5hjlvooal3h01sqBx~c}vgQ6oJ9+2hUv$Q(T|;9dBg6}t%C``A6ZU-WiYPpq7)L=- zq#EogAe}0NkDR5Wf+Y6**j}Geb6spLh3Shcc61H1+}Lgkc(styrmSrOU`$O{gkPef zWUY(>mLhT~iU#|I?Vq;?p=2eI7~`!?at_;_V@%X03`q}wka&+$7T{4Q*ha05sSd<4 zJyvdtqw6!CkDks@<{kF@;0>h+0kxL|RS@KB=PV#wk2!(hOiQH3*Q znh+g22s6d@Bu!yj1H+lcANEeI9qt@+1YS ztH*<^WTtLrv&pEa)=oMrx7XZ4XS=a}mE(;Uobz6GmRFi!%%?3wIgpCgi#7$D=iUlDs$`;)aMPGt5Vt>WArE(qPavHTaL|s*!R@Ph;Wyr({MC~lQQ*9Df3sI<{b?g zB!`JH1kp8=%`Z$i4-Wy~P=J#bD)-H_A6%Hn4zae4>lY*Vc*&)gDsUzct@z}^J(?Be z%aLi~xv{g&F(O%)yX(NY>AG5!I967agWro%8A?PsNB>9WLg7d4CElE<)Ji#nAiwH~e7l(JmkIS(#pTHc+81 z^HdSU;7unLSSlNuw=`BTHAXZ|k7r7+zW3Na+TQ4CGEyQZ*0>X$KlTKn}7} zm_nKI6jxsO$z>_KS-@Br*cAp z334H~0u(Xcz}|+-RmzCS%PLM75Ep{8hL~rlhbaeI@jtbRBw)%eANa?Z;S>C&`JkS9 zG&B9IKwHL9sXIadD6ESy1e78w?q(iWd$-yolA6B3^3bjQ#Y?<2;H-?>WKG?P>_-V z5|0^Oc;xj_|EYhJ+l|T=sh2HcXJuXc?my&kRIOWE(b-=6_M(nxBoT??Ogs*-Oz68% zk3g;IOe>BctFD*3Nd@ve(Yq90L0zGh2T=;q!VzGi`{zYU{$RR2(p1WUz;i1t>BN6w zi$k7GWrY%kCKH5dCQ^>VfYa;)CENOJ`s@9BToYY(rhhHQ5*4_*5iy)$@=Y4lEgP{` zEO2!Dzz)C=3XwL_)NtxdrtsmKzUD}8OJ%Ymko}-FR2~fmeQ2s}t=yWQTsw>@+t?eO zIyOT48EqsA38OHmp`j{*%W#fr@d_|gf-91VVePhN$s zbZp=(@Y#NT>Q$HS?xNBv)m|bQ)vo8$sgv{j5)W`2+ChQ*C7r%Q0{KeV$V@g!gkO|% zDgwlY_9E-~Io#gW8|>oTPogN_i{z`K|$0P#qRji+Vx|q zXM2mtkG{UH$vWxm+>AX7o7OqN)cVRZ&Uvpmo5xvojY^-`Vv{eNWjzTydwY@u*0gys z?cQE(sG!$+j9(A9{+96mE#^KtVjLaSn|zM5DqUdnl6%G7%^NWeH_*{ba2};6 zvz;S*+eQX9EM=(ybaK&#{MV`qd!rNz!kQAXC>S_SPhZ;?I5m(8L0-F{#YimDjuvG@ zmLn-poS<#^T)NYVEcM^YoXHu)mn847u0bHx9SMg4yu#rSqVK{+fulLPCvG`< zlzt2Q#CT5>A(lWewFr1hxCXpvq${{pf|F$3d~#vg5>x)P9fT^LpDuoT#8kQ)#c@`= z=Hgcrai@Isjwi4$-X1RX?HpxN16UloPkJAAm<8E9pSs8Xbq7c>JTG&$h3s1vl)-}R zAB0~xwitb*Od&grUV82HRg`{?rqmh={gB4%1%V}RHnfpTYXrZ*(TcTBu!gZ0hnUD> zXY57P100$s6)3cmqgY|511W1m7Li2@l#*k%1D8Wk$n5S^1qM;ec zqNtJs)E-pQ0i_NyTYjd|{EG6bXay@#Cb!Q+Giqbmrjru&lDj9{9^*irP8hKBb#;1|1X#L(_N_w<-nK zxg?ofTnyQ{%mq7380qKK6QMq%iHhqHswAHM;1dE7{NqbdRj@^~`)-palsrgpheyo)b3t*!l@vGq}C zjK0C_g0-P7{h`{5KvNC0ah_;hsakfJJi@xWpjTzAikue8p?D>cB*}fXCV1Ay3u!jElN?^f0Tt>6b|-|fJ;eha9Ka-be|r{ zdCB9dI_*&Er@$|M${rOjiYFXBVM3r1)~lKN;~(C?!#C!VaQF4=1DBsR?g&rn#Se$# z;mC=5RLu;rjTj!V&aGblrd~3u)fU*)jN=RE+OXBADT21t`KRg1} zBk^`hIAwv0+hm(cDM2yT*p{-iC;H6wDf5;(>I;tdi3XXxyr#2|>&odX)A~W)ETZgk zx#Vd8BI5B8rv}c^x@jZ9ukU{MVg-S=|3}7zK2Aei^!aQzR2XRbZtmNNo)hUb^Dk5_HAbtLVLy*Wy&*52@vljO!mCq89ZChcYEqzAalpj|Sj<>b(2IAI zf@1uYf;D85smoQ%laG>a+9mIZF(`9KdG}P{Msi93EbV5emhf5w*9-G%En37;p=!zXdIx{IisC( z)OG6^-==!U$gQ!xZi&raoGt4!^{}37aSp>l=(fN?6oV6m0%vAiE5r~x!&5WiDnq?G z$T_i2sGTU!Hp65_cX+5Ery@&JOQR@$AQi~lSL`y%BgG%5R!DeC>7rb=8d+IJ+dsfK z1kaE!;P=!uwC;aEG9Itoys>)gmWsC*w?`tWUS3L`~?Mg>5B823aHW)UL{ zO2AOv0unEq1%@ad5{4P))=zO~VZ^JA__U$dlg=Lvj{9q3%z>WPd!jGQad$yC!I!BS zVZ&LjyCOi*@Y!PSQ89u^#H(x$UqZ&U&&SmBRQYap_s07MM)q#*mu(0T_QBTR)UoIS zY&28_n`(kp(ZG}zut!mSrNA%UO3=Cny@*j~B2AE7r*LRtUl1<|ZUa?ZtUG8WXAy#Y z?!`!V&q#S$thR=GsZb~v@JratF}2d^PqvBFiWDWlr%L00(E$(s>EUED(bL-pF|f~^ zy>|GP-Cy4B;TKM&ti_#bcYgCzZlAZlT+(EZ)tS?OJKzLk0-_SMWfU$^)(FcJ`N8gc z*gp&$K<&`qIh?GkI;l4Q$UEr+_AIM*nyVJAxv?v7`qTiih3)#$GQm9O3px0`)~zy- z6ZZTQu8%)(jGt^GSFH3y@{9V({{SO?v0S^blGJytORt6)VHx^i!rGS8E~%yRd+r2p zy%V?Q$27pN3n~o+xgnQW_K3hGMN+&#$)i-}ms$AcCi9NQd=0twNm5B-6+R4DKSoRc zWFUN=FXr4J4N!H{XYLiacBJe!=KZ z7#cJOw1|Y3B-ICz2=MymSxs}7ZhA$_XIGOfe<;<7>Nhqwq+V7&FH4iwjPP)Be23BG zcCt-YtDIB3Rdj6ven>-eFDBvqGt6*ThQuAnmx|#~3V2_>r%F#Oh5RxEW?!l?kK}!+c zurAuy+x*UwOmEjfb2Fe4(oyit6_T;^a7Z7hcJ?F+gFR-vD>oE1H^uWk-|Cw7W-_=u z?Rs#y!pe7bWkzlpY`ST1?DCZJ-htY+sr*qMbQVB20=8Tb-G}qcOgqiE#~g4M(C(=h z{w-?yWcK3eHTyF8q4nwPGl{@e0~0sqT$hF4yS;4wp`Ol=fiO2hjZ~(JpN1=JxPZgJ zvr3s>GJ}9e84y?!W4VEbeHc}sYha*lU2!8nIH5WwGwN{`mToGaKCYa{%;6=HFy!{Z z@rJUS6dHZ%dRo`ASlgx%Ex77Y@W@0YPd|Mt7pZ3sb5 z1}PXGe!ow6HQ7)jm!h(l;81jPmCwKX@rQ^1y6>F5PCMzu#)f(#?ssj+e*aIxuTl@a z0He|;FT&kA|3oUOhkj6?@NwF4Z?EInu!+`?_!C4exr@l*BzXdiU6h0nv7=`#W9-&QzZ^$){gYi#&DK^Qeet@%Ud>Xdd#6_%@t0tvDQj6vF?&&}5-QnTx_Hc)KfjYF*-6d_BG;W)$&+h+o&bc$$q-|1Kc#rq}|At|^*`1xabLYzE zp7S}M!?p;@PDcrL0KcGshmlu;B83`EzA9s-B}`%EKw)qpGiC?ai&`V^(mV`1zxn71 z5}={+4X``VG<2y}!p11NL$%AtV$I?^Fm8~hU-s7%D5Q=@363}&tTbq2=4Vi6A}|uA zkTE2ILQhUtz`pS8Z~^$0eGo)Q_5kt)C{vbHGItZH_JoZ=A$_5^U+fWYbC3xX_^X7C zZHyEuXwbh18?mO9z%Nt<(X;`-p0Ce1$-8!R(ndt6#jIY)qDFKlfDS_BFeyvUTd8(n zE&?bFOwGt-6D5)hk1cdeUSf_Jj772|BGqOK>%>8kd-7PKJ?wRdIX57w`6ZtDovpQ* z7GG1`z9^FQNpsIf8;3pDIPml49#y(M-O})bzsKxQ=J82okvI}90M;v{PQ)p~_sV5y zBiT=clw*gd67EuP5QR4;Y20e(!{wZH*6R%(yfCmwt{0AVjKT3&ei0qtZb3 z^4MKTHVF5_!hwV>V7G8|6>dBnCUX;R4)B_K5G}Ly&85CHdreVBz!+e))fJhAdFdXf zQ?+w|;aD&Z4Sg8oG#o}=Mcv}jZ4epGiy=^ho)r0aXp$ktra0_dvTVmW0k&d&d+Q4q zdA62%YU?-l>Vfijz2M;U3W}S$KrXQf;k`j^HHNqU_`j%@zI}Rk>0C5z=B$5QcXb== zCB<&1P#vO2nSgh;^Q71w{8HpuV_L+Sj!4m~qSpJi*+(Zuvg}%z1sY@&m4&5T%NS>9 z>>_AvwRO%<8`&ehZ<1ELX!X_0lb<=W^I%te>+*FMPYsRSzwn?~#m$qdD$|m?M8iJl z&`{ck1l+?_FnDjWgr#M~S1htYC+y1)oY0{gytfYJX@OQP&@%BokGC=rnE*%~&xc`T z>FuVBD@>42$fLrwBZI$MsItkQ2BTQ)xoxpy(qcp17%LRWk?8@AkvP23Xlg9{T65ap zk^)3uvD$!BX{jbyjjIU$`7ImP&z?HjvUy9%4xe%2;y?y!X${hpWfKdQN}I?7iSd=p zq0;n~e}#u#E+g|_#MPnzr%Y9h$IaQuES0*hQ2?`Dw%a(>)W5T1c+TXdHE*x#hBFOg6;pj{qEP^kN5aH8KUfF7S$X?JnU5{3$d3|IrqZ;#d5vVb;E|@n{a<_fLDC!!`pa}xjyPJmQfh;<5uLhw&P>j>N!i4Vqv0uB^(m_ePP#S6SnPUdS8 zpPj}AD-n7EEQ3@tE!64ehSB2-md0&4VM|&BVfm;5@}r4?jqBeShU8|JK9D5#*;Zb}M>-Qygz_tnO{zI9MUPr@qU0EL;q-O@EbzP$ zAc1U>xHMj<9%SVJqzH2?Sye$lVmVUGJp^SL=Bii+F29ofRnSptcE=mJ&4evTz5}X9 zI0&N+HI=aibNjyiMpb^^%Jcq~o#{TV$1IZYWaGCjWU||x|3*ugy7m=#0_C!1ZhdUYEE>ux-(1+d% z-X3&?kjkMENwXtFc!yh+V~692aGbMbTb8YO@2+)bO?)=L#{t87!{^9Jzrbe;=#hpP z(mQHRHfxYV&PabGRmTIebwNWy-Yp8NVEBcL()p8;@pLF>Tnumuy+x~Ey(Z(bt8Ky1 z%u`NmKJb8UUAtvvWx@q1vlsl4coax4hAPK<%#n4LVhKl0;-#>S&hIb+7evABgc z=M}g9&bIbvAMWqMT-xzQ;G-k>#Q>0zi?Lyh`@G)%OqF9yPbkA9a+$RYq#hHdPMY{R zb_P{U_yyG-iwC0NDL*WEIjzSV2WEDSR$umB>42zlXO7%NpkA>{JG*d7Xo&Z)`2 zCf$E@wo`K@L0$!m2?~zkSS3^^c)q{&)bx`hN%|FZ=^C?B4!eROhT)b zg)cp8F=dIPU94XQeBqlj8-fh_3huP3T8R`A_?2kiYV}?m&n6X3jo%&oBbPCXZBC2) zT+|e;@ByRV77%YdJT*lm!Y>27wQV2f-{#z(IF*?;g`NJ)_(Fz^4iEd&4rl?I3W6Bj zODcg;%g!!tfZ7%?D-A%VSBl0Jk%!j5mq(yXIqd%Ub1c{`M&5| zvU>q}z{eWu;jH`8-@DLW*WKR0bWza1D0`sv9UAZWzD;7Rv?U=xa3Q%k#(Tb+9M4Zy z{AK2@ZXDl&sV!PrbPZ9urzECAyTyzckCui5ll|ViGp5)qO-Ml#iMwF>ia}wO(lP=J zIY@1U#rnw=%Pv__80B-&jdLNXVpsx%j3}(b!AkE$aK(?%L#~( z9Jdh7pLATU(6%6X3;1WPl$D6AT%gl|7L176UXI{{wZkt?tAgDG^E#c2>_g3tI5O(^ zpl;;^KP=L~jIky_e=^JSwb~E&Jiw;WbbA_wQ+|?+(3= z;&s>EJo~%mVMh<^X}9FYo9phn@uv?P2OTvu|GfHBPjYV<7wUbrcR@+iJvEg5T`2dR z=7I+r`V>dBA@)swPoDL3+W3o-79Qo=ILcXekZaosuHqwHrCqJf3teMG4NvKZrBY8gZL$Lzjng3S@ST!s` zDP!8qU*LJ{TvXU*q-rT%v~lBtUlvCTxU#-o&)Ls~kFSqUu%wrQ!m{$~p$XcybaOeCk}_vRb*v;XVxtEEP_hmVPMva_0R z)qVuys7?Bas#^Z1rQ-lcK)AmooDDybNJfg1V+4j(IM%NOHAqm20`Mtp&^#R(!-zaZ zUNDAngn<%bzS@?Qrf;+LDJrP~i8vI!iLA83E0aM$H38KgxKYrHDQ-Y5Mk$e#rCMN= z06gyV+)FvbD@=oGK4!cou1a3SDC{M~b5Y$V?--Yh)?rw3S)$OL@x^RYgL%h$H|dbh zihJRoWhq+5c`eYYrPfWfmc z%5FF{X`xN?M`NThLADc$Apq)PYP}(IEGsBe)j}avfsh<9$jo8fF9!>@lFDO$0>_0g zP{YUrvjG7tyjmbk0Hsz)A=r=?5<2YIp`?YK;TPxUhT*Ev9{!@aPb%_A+Ut?d8A(Wy z$FM%qG|uN(=tt50p{RdbB(^f-SQU1xiZ~neh}YtS!iCq;?6x#}EPkg2mdJnw9K<+0 zgW?SbJmrWgV#OJ#J`u>adC&JI@RhJ8YdzqmN!T8aUAyjfhcmrlgf2W4>i6S=4>=ai z*tB9(RaMi42j@J{c+e%O#aqTtec_k-Z8bSZowQe$BMET^KYluE%izP~y@$;WWxt*E zOPa;MBAQbiOV6|g_i}7I-MjLsw8>YbAcNC}PPRs7B*RWjQO00WArBbdkfWbW$ZiPS zS{*5x)4lPViQnt{U2#HpcxhO2kGLzL;#n_zv?*ise*0vjlVVi>g8>B|01}0RK~gQo zCoJ8JK=&Y+5NlaxxmgR%2x>4PT_WhfC!K-NQ7uJ1iY-7IxsZa zwhRSEhm{ozRx-r7;p)RiSF+h6y?g1u>C=56$C>eUko{tyUBk@(E`k#Ss%1u~cH z`o!_)9a&Xfy>7#X1NYyr%_UGgz53S|?z;Ehmp-4qSD!E6FYcS<^4B~zE&R6=yB(2fS-rTtym#lbJCPBJ z=ZEOBd26nk85%jN+r@p-2IhM^Yg@l_RUCIlTEl7^IALQxCqmee;kug%VLO~oWGFNz z3%rrFsEl+x7x301ktZV?zo?_|Z|u#A*dfXKASW1^G~5!F5`Q-11l*vsuCDRmx4{%J z9|s_{ow8;DbwtnWmjDhEPn!rVp{hF=jzo6IU?r)Rt$IKUDv+i~6Dl`LvHl7MGP;Ab6@oP|gAo*i z_lHu;!PRJ^sh#v%S(p^@VaQg*G4t$>VW$<-@OQi=!Y^3^(RIyDhI<*JTi_QLkH0b8 zjLfj+uE)JkDEr+06+~coLend&d+|ca=+uU{QicX;Qfv=HJ_t%a#LOxtC!y~W@e6-p zB@aE${?4j@){H#Py8+5e5ewy?77r?iE0RS_>@Eq>k7jRHNK3W!mOkDVZ^;2_{Yke? ze0ly;MGK1PmzY60G%@ykwd>-PRsHN6?UrCPmPV2j8sh&k$HERmURDlRY(1RAYi?@wx5lJrb5&Gncw?6%?qYi>-M^swJ~Oy6H0%lsoOKY z9+LwpTO!d+Yh_P+DYC^o;3?Ap!jRsC$b8&PsD{LjsGhR?vE9ZGi&}|z45&3q(?PYw zgN|5jimiNdEc0gnej}pmHhuDuG~y`c_ECo(n2)Rg z4YR(TQ#tIIFR~7Nzi@eHS9Bj|{YfchCns$k?XB3$Q{Ua`hq4CvTJ@D#tD2?huMuQSI-W*C2O+NX&V~S^EzvK-NfL zF92ECu*tVh@GDII6J%1i=fv&EuAPF3GBL7*pE|W}^eL)8rSL}!GM+4K4ZV7LCr-}T zR$iT*)tr+H2uS~-B^cO?mqSVnsDn}LKk_wV2%diS*~>1zsLj>rcJz|ZUz)l9E1x`j z!J&I4U@smn_NZ_j|D3y-GK3p5pG>5{fL$E12g)5&8!ahT{gmYJnQ4)SD_sS)=s(Ns z|EjcoR->Jl5raP%L!B&aK}ByQCm}6PTv)a_T%(3`I<|XKa&6;U&5@Vp@-N%?ZDzNB z_IAZ8OYd0h`sd*}g=F-nA2*h4ykv6dg0uVmEt}0v$X1kW+psQp;4x{}T}rHc5W?0h zvyJ^6iz`bXWR2t@zqR?OWyvq|3UyR|(_#sbQQcUGwha0v;AQ9IQ)RImvLhKp5>>uk z0X`VA4EiH!0wdyMup@L&L*|KYzo%uDDKLrp`qoYBiF$v_Ew}FQG15A$_2M8Ac*%S$ zgAA=wW#z`CE)+uK!g-qE*tCRA0ZE>BWR_B6mEk)vF}r#G9S&X{Ha(-kv>4vZ1}B9# zhR9ZDYWWqHTE0_bsc|Fn;s0&;l~^eWnjoqQ4A7U=Anp(QJ|dhYRvLR<2Ok~ z27R2t49~OTSr-7V9CggXA$%&$AdqOhGW_#6YKK zK?h(gfnWS?J)eI&xU_;F-@|_>V81 z`C!i2Eg8f6M_;?{-8+BH+RMJ^tZQa3$=`Qy#oUXpANS<@ize3e8hv0d-^8~MzwYO$ zvt~Z}@}zgB`nw%GqF0)IBRf06eF=xq+ToY+cwMBq${A4LvRz%=JgjrA z3>j5EcX?Chpk8^@R!JNL`~kqPAf+uPT`~k}Bx%lk&4JinuOd%V1Hg<)TpeRNBVb2x zTyl@{Y)FkEEe%FC@504da6t|pXodNUvvHFP(y%G~rQla;O7bHQ-dA2(edG~GBo3+6 zwOpz8g&%+F>zcV?!u#K@@3i0G9K-$CK7LZxkc8!A%fiz5&K&f1IF9p>ZHy5KQ=q__ zUar^`S&@q}B8Pe--5t?@># zJltFJy5yeHBc;1n3&vfedZ!lJqtkxeFuzyN>$;(<%D@txJ8i@Gv~CaWorJO8*et1e zsRd#G`lk5M5thGQ5DkYdi|5!D{9>CiAzqo=kXqz``K{$>xflN1d=+FVFY0EQ=BbV( zy;vS=4ETk&b&=S6Rq@*q^N6Ls0fD5B1bbn@K?Hp0PlUtS)>vcQI?nGt$`itu)V-PG zPxFq&QX=r{=9_PB^I!~s#zjk*nRf7y*z$%+1&lM9T2K%~aFF;a*wF}g<`X1ZL4_)U zO=6w+^lIHJ*D?<_yNX=boC)N8n-3G_3H3JdFgdtQdli{GnLOGwMEcXTO#c5Beo39M zS*T^5B@ZaUy1B!iE49toi)U=rycGzO7H)1Lpv7H)K9`_HHtGVtD?=$6Srtr&AcgoM zZ3w@DrZT)IL^jg)9X^#V~vEkN$4!BgrG2^(Ynmeb}uq#voyf?zciSlVbP-R-V|1nGQKkwwCKyohVvvGH*<2-0Qsz;XZ=j!;QEHrV3J(RAGlFnNn_)L5EkAi`W@{O{ ze;Ks{#u5jg?Ox2K6VsU%>uRq*)w|~Mq=nZe&p#(=#b9T(N;S7)&X@bWXOqy5WW{f{l^0iEntn|4W5PU zNMnjeK=JC_GNpG>cOn2m680nvYonhu+*X+jQu5bXALUycVJIB6U!T6+JDqmSz9$}e zK-}idw>M0F<^3wh(N~_>HMefzn4c?qoH(+dyKc%Czb@!<$@{~`+<)uODc9Zl?CH)) zZ%kg&@AL;xu}*w@(#JDuvrfD0g$w#;q-FFt^tg)$)qeKg^0Z@*9u{8o!H>RuFT3Kl zV>8x_ojN~n^eH*ZZog%0;LLx1{P^LibEYpyI^gn?vlo5!%PQx<^G`0!8L;osh1g7%Hrlh2hlC7EP#Aw+&9l!pAUo2j{ zX#C`9RL8&c%I);t|MKsFlPzF>>Axy!f1!H-llYUuNJlAE%DAtUaXMip4*Y%NjGcTy2 zFYg6SOwq&Sx>g9~=7OXE+Gdh1Tpy@$dwbwGx~{%#LD{PVI_rH`m!mS7#)675@Z zY2*CnwAgCOH(DEAiwXXsbJ1Sgl7gAXm^UbQAuD#7Yuhwpb)zyb%PL&qGj$HLHSeh8 zt!~6CML=AZbUt3D{(| zPK00T-p!66D_XS^HWHGDnt!=bu@)4^(a`A0sE&(4xn)>!8{}(G+zzHNoF*=CKuGf3 z0!x@*i~6)^b36)<25=9J;A9{XHWBTVE{D;NTJxxGNY8>lB-|soN&q4`NqOd0J5kS6 z;IC<0k{(V_NzewM29_pR3=x_nL3&yzan~R^InGW(SbQQe?NG=l#XbT`su2&jO~iJ^ z;pbLK#UXL9QLd7kYDYS?`tG*ktoT-!UZI7n;-NY%QfrOWXwhn`UTuliAb*QhZ-kA( zs)MUUU=(M7NB}d=5)67&Xv5CPIRuopsvrcV5KrY|j7WM^6t>0{g;IfUn{BCou)5&d zq^8N)3={J@Z7jD3(IPnE!~bdaA-0xC<#$w5e{A#WiOx=2lWViQBoO$ z^j9!qow6!#zrlrIeF2Z!wI(~dYRn&r1j11pfLF{_Wb<^jI+2teA{V4iLcoj00aj?^ z7wVuq>ChU9vQrp?47Uw@;_uoOF39Y%ZR@&r2_<>q;DZrN>6>tRKAF%uocr22p!KxX zW)}M$Cmu6qOieWT$crET`n_lTzQ+Cc-+yEA=CKndg~H*2{7%lK@XSe#=RNVy<9en8 zpX_kj+Tq1o&DT5mqvKL4qchV|jrr0T)@1=93upR&e{XDE*!pypqc##-)Ew()4|?GP z!x#-ysLj$4iC2fHH|Dr3X)t`#`iOE`a|SS^QfG!{ov2;OE8_+W@!V$ZEV}H((rpYVuHsw-Aw`>2xN`p$G{}@WhuKKI-xwr^< zR|-so*chgBt5QQGu4#4((Ko?L3+o9GSu#Kq(d~Jds8vkpxmM79o1n7mL(u z(MAjQSR+KeL9!;INi0m$vuN*$0Y>#q5tlIY<}tNjzB5BL4RA=K2j2@9Rq=LIc^Sts zP(VmMX$w<-j1uEs;abv)WUyskoq56RNMnzg0201Y8lJ4+dy%OO%ShlHSO{XI0+0-w z|Kz;y*G9Z&R~_81?6k8gM^10@BQO&Z{s5SACPbd!1PMuBCR>v7jfzi@i^T(^fma!2nsq=EW04ay`&el-lezGQ z3CiG)$fCwDe2W=UneZFzl=CB+W zoHs6nLxS)GF;9@Y^W9j{8JgYn3>dHsrXR9;M z>d4k?8G1Yk9@J5;ZEt5xd?#c4T@Cx)*)Z&*=EAp|IzQ*@{%~W@R~zynUOKhe{&TbA z&HBuTYdU?>==DWv)3x$6tfN3K zWqA!4(V1d(CR-d{i^C0q`=ZY$Z?bgn`_LQ1pMLYR_ip*e0PDKXCeE#+m@GTA%5uAQ zb=tB=p8VK@XC60Xz!CdqRZjZywc^~~?zPXqx}>sh&0C+X&ARHo?_WN-mnB@^7>=@K z773upR*d;6qC0XrWogwvk6W^8<*FssdIX^e2o1%W0Qv!>HDJebh7$hPt$ypXb(vS( zKH;^KdRansjR752Qd-qe#3NNcuT$`#(7FPR761Nt%qyR7dhWy3Uw-mok{gDxkftL= z66~^AAmP*i;4a;g7PIGQ&K#tZXWljgd)k?_Cma9Eiz!;k@Jgvw^FUK{4jtk<_GpxK z--(lbjg3`R)lE%E;0;rm*jM)mc(O2GZ6A+l!L*6!9){sL|mw*1%m#;i}^O+Yt`CIcY4fne+H|=H(nB$)+ zM}l1jW7NHQp&z?94~O2Z7QbK%R0(5Vo9@t}P7P9FdYX-*BLgIGsPu8f>|i)l__^>P z$REq3Ve7qr-%Da;FRpBEz^b~o`lITUTaW2_M(5asInDcx$m(Q`ZCqNqrAN`>DQJR~ zYX{fe_=T@qugH>l&e!f8)T5-&n1iI|*xE(>AkF z?_`e;a)C=gqD#zrS4>}`5O5B7xBVAzGX3o1H?zLMBi#vxkBrX>=yCI$K%TT12x5SSRRH93u&15@a(G z(2iUylu?-b87Gi5@RebzCnFU5!-(yappn7-Qf)lk3p0sV;H_603KocUkntADdOYF@ zycM&w0zTq}qm2hh!iIvR0D|QpRDC?=`>k0ov^5TLRl_7n-eKar!}`UF_H43{Hp`bt zz~bu6Ef3u=K<;h}=i87$Ty2IKQ>-b7JtZ+USW2n=fT0gBHrV!K{e5xE=h@$<+JY3qY4gO{$<8|h50R3~ z5iR@mp2vTy9B|s}*Y$rWFzAAAjv>xvpZ>V4IHOD5oaOcThh1`P!9H14W8VDg)lX-y zarPdaxBR|G=NH~^_j5%s=aWDAZh2`S;tzO6AC*4!llj%%4mfMSOce_UK4L&BbqCBo;K5K=Vpl#|OMYGk2-ovg)I{RRS6qBT zP9}UyNM0GRY4EN>cnpXR>5FM81vISLQqiNOC-Tm%MKu|DZ#14nGeE+af$zfu1~|q~ zNU5r7OiroH%7g(7I{1dV>F&0xR+nh+B<27c3zW|PY04^3j~=$g_h0&&? z)^FVSg%juy3fo)xI@JmmLxM9xVK!FBpxgZuj?`#$bSCzrLP zc;n2UCtFHO%XZ^wnqH}${g%B}JhgD?r7n$WgsXnf=l|U(w>cCWUbS}4LCl`r-8!rv zdZO)~zkO9bX|#I+zdBUy>+sgMzj~;8V@WtCr*Zzg(9lDNX70f_vAuoGbpM$kNW{v; zsSTXOdgVlZYPP`2r8j8dI%~vd1tZEHLI@7|`3RXoo*x0=A<+Wds_BJ}<_H`Zq9Joniz3O8VrYv>QabYBQ|?i* zHqnYmx(&fUu|5&#VFkeiI~lQ)V@RzBPhyZ5MMUj_@)-k4%~}#oEzyy~MbEGWx;yIe zM#P`Xb5HhJDWRh?aQRoB)N~4$i;M*l$lBl(@;~AfeuLo(} zIB^iWhk!>g*~UU;Z&diBy6@TCpL94MZK+5KjzA@laTzGf$tfW^UnF53cW$iX}WP zT<~zi{wI3YJ)SWM7DV{nY~+1ILxt=DL?*E_KvWiDxv|(wHQCdfQ@`o90e?WS_p{ox z$^MLYI&DHeZ^*DU1vIZ4fhkmaz7--PvSk$vv|zxN>H*0=7+&(1uY+b zeJG(e2kl8Iz@ogupvDX$7eww!ybdX=)oLT1t2O`t|MW>jK~w^AyKzXvx-3m0Tm-to z6kGy@wCcT2IBpN!$F8sfD+_|A`(20S{0&Aqj6^_mK)TvbfkAAKW_@l zMv|9M^{a&WVpqmJnY{He<5C`bGU)Yuf9b^q{rYw5-Yq>XRl4pjHza8oHz?;_n z@cE)HXPn-5%d4kc_L={%C&t{L|IsD?%6tB`Gjpx5lRWnHbHB`)i*h#C)p)YH9((0e zDA-%K9QyN*lR9-O*y&aON4}6ja8uZ_IzYL_kWuj~pQF$gKO;F-A9D;&x4Tqg5bo?u zEuhhXJ$>vDq%KNhD|b(fktDfmObZlq5o-E;M%iksyHKxww>u&nI=H$Qi zIl`k=u3mG)mfU}4XT5TFQpqM;W_IkKkNNiXPb#U+Z(9sd39K@jB_+)Z z^>~;ii2OxTpD+~|CNVTa@<34vIwA&9Vi}4=0~MM=-zlFr`KJU*aergamw7p52j_mP zd}+KiXVnSmu>?q%$79eF@qw@u4HyIa7N$i+$G|QC-Z^J!rGhiUplP43$1%$!?#aY7 z@v;a{MR_XeVAlL(W&}wzlV67BW|&6EK$2$HIy=I7wn!@GQPK>P2Nh4Yh0aM{0}IWK z)%zh0^?vRukX#`LkE#GrfFM7{H({Aex?FYhvLs|T5|3MqNT{^Jloxebx&n$4*Fm2;!V z(q-7h+==!L;vIVp(OUVTiJckWk_Q(HeTwS}OG0{T+YXn97%(LACC+q)dZ56&NGpZi zz7(;`=^ZeIM#I5K7)GzK!xqHqNV5cRj;NL#i6cz{L{^c606`Bdw$ipysL@~-M`p56 z^z9R#^P9J9n>!pX>(z@^JYYwYV~8`m@7dPT0NyzB+50}wjyQc_)6_-jMJ3Y%2OpC& z@5h?`j^8Jp{8m-fHCJAG(ciDR^89npnLPHJ6$@r&753gRZ~U#d?pTXp&kFmW{x!N7 znqHWTZR#V2$Urq;N21$@SQsOeYmPCI#_OHdR{K$w)w5lNNZyD8=Vw za59Dmg*R-@fjzQDcTXEykT%GxBU@2;-NyIhg|`gyxb)x;GpqCWEj+nL{D>37b=B78 z3mrd?aW?yqEE0L{+rlpcz!(NNo&m@yzymT{y5ir}L~En*>vNEQjMi+_#M%2tEs2Ee zg<(P|81PHch{o+vSR!vmTZ<2{hemrskJct_+_1j!x1V+}ASFB1lhSoSpUzqF6<_}BKIPo~GeX-|ELmIc%+B)KVuA8iOV(6d(lb+# zuXvX>ncmDjaduW8a-%Y^m*J!kZVF>BOoSe=zlk4)*O-$yPUH?mjv82unyqoz$^1+` zAzcPGeh^)SEs?S)Whlpc%wE_* zyZ|P^oDFA@+A%bYa95t2ynejD=%L#Fsg|0-&Jw2v{}&8th{zK}Db?G8MP&l!O_A`~ zf%MHxy)JDTilhX$T8KN!YiVFD?q7V5ty_eQ%ItyN{Y_P! zc`YNxz&ImYyjtRbxSA#S!9ZNfTWp4XFfUM`nD}jp49+e~0=}s57`;Nd6d4-eH*{NV z#O}A*lJE)ZjTy`SnX&l7v<*GoVI(SqJrW=dRzr&o zhDni=1^l8+M+wc3Ll$h51-z3Z@<2twr5UyH?2P&^ryn$7jC=aRr18JFznom%9Ih?Q zM>(m{A#oAhrxe5j4i^?17LeoVW^~Aukm7@+EouSTR1tzv#WcVMVB)w?q&wO*NXIn6 z&@q%YoK_2>{s>za*!S?%I$X@B5p4)D?&9)*f8l5Z@XPPCfr#16ygbB1rbjG!QEMux zzgp3M&A=07?@XL+cCk_L6dCt*@8+E_DRWzSN!KoclvIE(o3;|<{82`3ys_S;X#fAq{g z!$+Kc+NryEgMaD6m@Nz3Axj{%gfv_HmjIR}@jgyH%L)4^`+s;0$0$O&`6SUI;D**k zSciZpwmc9^(qgGrSeGf-h>?#9I2Qno)?Jw8?V607S2o?(w6f8XYpHvuH1(Qc$*D+i z;nEH~Jko!tzG$|6;cUmkIrjZW>mH~<%gn*Uk8mOkITIdi#T|i}fRCsNM{nO8f4NIE z7scS)VT&x;#fUGWP58A7 z58fETRlkw@ZP|9=41dNU^|Ky(vHFsK-EioDwD~W8mVD|dy%WSlT3@jJ-qm5@I_%u- z+parYoc*EjE4cQ{cgC%+Z46}$*{{p`7hbBq=&9=u8<@7><RDNPNND7t$F+6i(i>nQ#0?4r{14kRn-?8c#Sb{@$(6 zt*{4Yyz*g9|J2W}x@W07zG1ax;67au1>E7*27Af$-1fsAJs^SsSZPz1KszM{j%!{$ zj`g$$SxHEofshMK&_Sg21p;HqM_?}{C`yn*11S=@|Hu+X^DC(}iV3QP`>i4m%@7$< ze8o;-G?b8zSzZLcf-pU(DVxvGDi|daiG?UeMmS+~b1H^e5evw7Dagchjq==PIM0L} z27V0PEWnmRU1abh$R+WHL=|GA3mwKOcVH*8CR;-%CapWjv-wkBkB94q=rP}5M_H0J zgnMUrryP&$hvRrdfnqWynMh3F7e_wQI*?#5EE_&+wB~JJ(Jg6<$sojKFvLzJj9jgE zTOO#4XM7Ew@Ds6h8(7w1vuS%kVhc$yrSP-Bofs@^emV&#kYR_Y9f-@9;kBBt`9nE@ zC|M9E3(E!9;Hb_F~{=!Y?bONb*<}my1kg_|sl+&+0RA2g5v}$2uP}a@J4IAhKR+ey?YFuP$}TDTwrh zr<)@Gpua{l1+x*MR*VeUSS>(h9(jH!(KzY4wZLIzZBSJu*JTzXrV}!$xm+aM1~VD~ zG|p#$1Bm{j^J0dQDN#m9sW^N^a~%B*b&e>4k!=+bWwPeHe#Vt7@ zl2IB8Z|2kOaA-Atg7o%LEh9bb^LbXS&M4cqdf)&c(PY|^46X9t-KfkTbO67A#PfSt ze}4H(_o(ih*Y~;XxNUEK9_Spa>vHtrMU=8IaRUN7>BJM?eDlpdef!|e?w9E=^-HuW z&YwvBLoQf1yZ%_Mw@kP6aYb{<{H3r@c{ui1S!`i*9Grd9^`~*iik5NlhS<2e_&Ze; z5)J4>tV3!Dq=P7Q0PYIZKJem7N*dlReeWFGqPdkx`xK2%ZfP)uU1Eoy6aoBNyTbnS z7{{P}^qhQUkW#ROrwwUk2K*v)i0k3=f0af@dSfT2k=s#hviv{22>lChG4#VK%-UN7 z$S4z#9ckSOli@h=W6-!lXRtt*D{0$?UuMnRg{g2yPn1XL_I9(+2+B;rUFz+Br=7%f zpU;v`0Ko1^(VBg%Nb~1x?bnbz!N1Jr9eU#{uRQ+uBVFI!^~f((K1&)`kvBza@-dp7wb;Yp2`tpdw3&$F#8HxK>em!ApxMsuV zX8-but0D-wTeHPJ_^=^~Vt5_ieInixvy*9jqOZhg#5>8s3qTN05N12%`->rn-If`% zW$Bjeh$Sa%&5c@+Vi|vCfSClk33QnCSV-5KV|rs8bTPf&605fo8@kyBxu!VOE5Pg_ za*w%7D2x#eBNykeV>3R|KoAlp$VH?{2#Fp+1VFy+W_7mR{^7&2 zg2-%3vsl4;Nw!(txCl_#a98P<`Cm-V|DaNL9$a?JeKp-n!p%vs3TL!Z3s-BAdRshb zLn3W;??}vtC~?J%BYOz27vgu+6JQetJ8*#r*oFkB0gDAN-%Eij1LLUKRED}lRIP$! z%~076TSx~7a0`)Eq2e}Ge%pkorNrp$R(3dPS+cjX&9CsJO$O6=o<0C1yeWvP&X4*%=j;U4HqszP{e)^TBy4Ht9ci zb96cN`h&K7JS`Bes!QJg@*`@#om*b%V+PW88}cJP@vmngo%81w=|6aO^l!pmOnY*1 z2HSnSv7fp$4Dslfl)C3MiIIyIxi^=P7VDO<_V*Gn{$i8_)@FHZt3Jr1&FH6p+at6s z96xWf{hl(cNGNtv)}_jVrJx-duh-9CdD+CWvR>UU$&-Y2Eu%|jcKoH!nhrfKTw86u z<)Y*%AL1W+Da4K!#y4&D>9NKw8?`QlN&i2)|D9E)BX`KK z9!32Q7(LitQJ-26FW#c6s4FtT#y9a_n>T7*3#7sji(@!N=%wxZvX;CkG_AK{z4z40$%y zM8%4-oGg`gOk@fV7#W0_sSRli@at(sg^4SogZRvnutvSLXkn;f!zhXAEhQOJfKgzw zG@A{4lT;X2#1f-vDY1BZES}cK5q>rM$3=x73~-cRRI$(V_38Flaf(*#(aI5*2PI6t zU+8p*(xBuI*bbGDH%`a2jn^PNaKto+%S`3zYxg`_%+bc^mUgF*OeCj7|8IB98!DI z=(3T+=8YT@a@Y&El1GyiKe2px?xG*FSqp-Rq*uvVIx6v8ue$-v7+YkL)wzVCa+XWIKHH!7Em;C5zqvl}(r? zEjZVzr8=zFXGc#-jjn*TU6yec>k_|qWNQ4lR6Uvg5(}(0%NM^P4-QAYheLlXFEF!v z^YmuxIx_6;tW8*Z4Il8%ab3@W?8=TR(CLcb{fz&bJA>hn_QC_6x1UJ}K;6;ta+xXh zv18NVIVG393f7T%h3#H=qZH>2k_kSM1s`=_tf(D!%mCP6f(AX34P(SVA?@rv5T5AR z0L-%>6|{}%OZBb}y=#9;6LjVE(55~9%nv`0`6cPRdoCT3*^)xO?e*FW(7(4h?N<=l z^bO>AA{>Zz5DLBzWw~e9~uw8?Z(qbxu!q)?3gKIW+k70-_W7 zXTO^=W=8V)4_vZeCS|ja)h_sYLeqh#?W6zl%`a)koZPE+@)yf`p0d~GPsc`&I@&UE zV)W!2&Pku~)C&_9&Yw1`rju>VlW+VAOIYV)&pEpP?~R<^e!e#sHL59zg;gmeNDv!1 z#v+4Fb1GPnKuYj}A)PRIU`a@6g7kJ^nGngB6ea|~ar_z^w^;j2LMaJ+fEUI5Fi9H2 z1S!+Dqx^A-6vaz!R(zrL4V6Tudk1`>jLV1<;D9J4>Gc7X3GO19B!&cJIg*e(&ZZ(p z4(RkLH5#U$QUS;asARF&TrT}xoP)CFBe4xdpMoEj*jLJLC{9(->ya3S7;g#(*9rotHK)Wl5Hz3!lbBsm-8KYcMtzOp<{tvt zH>57J*f`q{IUj|0FWy_V&?HY(q9m{C04=~;4&Lo8vHK{Wnp6;15&jpWjsla0yoSuy z47wB_L>bLkcr0O8v|+g^;qP<41);1{6A=kUalI+SDE-3#nmB{>fP^{%!ZC>~;E6yL zC=NLcvF#YXkhVT|)#iCzr6(``j82Z|@#+3IYO+pF_jevz5K8h?5AIn!q_-^?N#9nT zvT1Ab^xvvAYkhWFoPZJBDBycFH|eq0>iceuCJ%D?ncd8fn;IQXOudGpCE2UYBt_~_ zxL34ZtQk;6r_EQhipbR!D1NfO664<;8U%oK)BHY$S5X%LxskP;DY}vrZMg%r#iwvI8AUd9Sj7Fo3t0FYly<24Y3ip;0SAE0!?%hy$ zI3O`8?sfx{d99tFs}=|bSWjEEt^dLM^)JZoIr`{>hvw`QenA@Jr)kr>ckNPG&}mN! z_E-2Vo;ajR9X2a`Z)7rJo26tn#X9EBa@RF^TDHrM1dVX;O|H{V%&@Ep#GO{{;54%6 z7l*X(YxG-lL8WCuQ;sm&616qNtb;ukIwx^WTW*vMwZaOZC$pV7tK~@z7^e5^7yI>R z$CA1BiZbhgM?@9HLXA$`s{{gall!1bKPpY@=Lp00Yw$1#IbrOkP!h8Hife*W4Pl9a z;T*Outh!~8A&kXlFtfE_1^^h_Qd~S^+O$7QctW6`Sv_*?#8*jvC)+NLvxyxq5dgRD z1Radp)Tbj&H9l)vI%2ZSt?Mu5@svWjo63e}_twZ?LVZF6q5$r8% z89~6}2sDMA$sS2?qeYtPnr-Qs$dw>})i&AEGCVDd3gi|+14L*ClFMKyhKoCn76vgX zq&ntTriw&-O%ZP@okaK7HEJmt-kqb}9an_8){$Zvy-UqW%I+mq!S_qBmR_-5kCKs} zr%aCi1bj#0k(0|WO}u712GkvcLatB zH3t(X%RdC7RROt>bPe{fun&aShl~Qrc*rb%R$)M6C5I8mKJt)2 zp^Th+5%ZM%M#KAJiOYrx7%igH zgGJB!Ml6ry+?c-p%oOCCPLEnrqFNHDE|H?%v-B4l06bHuZW~lI!{znCt*6%P zySeZki!( zDyxBrBTQ*jH-}knBD`v4h-ziTFe*WQt5jWZMS?l#81{S9u>eINfxTFjIk9j} zbF<&q>=OrfY)xs=r{mK%lfY12w}SF>5B2oRP4z@QuJCofBR1+8OCuTEdQ42Wq6?sT zpgnt|F_#6(03dH6ZUZe4D}TBQ5}6>b9${t2K@mvGAt@Q zE=Q6V!51f2^zYxVf8V^^ zT+EbGhg_fBD|w?w)luX}`xC^j4B*>0=2zc(Cm0Id%(lArH)HA0c9QMrcmJX9k#`;N z%j>W~a)MS`9MOX(idrp>+AiJVnlb>Rts`o2pcmf1Io#J3>t>I9S8si*hc#q#JX;!T z3`d?UAVFX=I_Z^KH?k<+kY^1cD=4TCTm^=nB6mDqJFwwYjHd}VYd$TmuvJU!cV6yo zYP1}7LgbDo18$HoCBTGJtEp%r7NfapW8}uX*dZ=TR>6w_7Hs5z33OB@*7H(}NcObB zo#A%7;P=1WCyBOjXe6@J+iZYeKmPdBgZJLMo78(*i?qLO|D2^|8(Z7&+q7os z4CX=dE8)Mk*|?TlP*mc1xVqGmS58GIfkhB%i)3n`ZpH(@vDoBW65zOd{l_e@JSKji zs-D{1u*}$h-qt?+;(M2p5j=<2%;^R-R}dkyyF9RSsm<#2xG5mMWm9#;j3xR3w@8xK zG+y~M)XwB*RtL_vd!AmIn7I?H{v>m@Ic=*_86u5J63I}GpfTK-8#%YJB+Y>Z2)hjg z9q8tRmy?QxIEIT@+>H)`ZbB9UP?9NsBC_}q8-}386e|!L#5O82Q^81v>vnh4o}0X6w0qMl z4Fe}Mr=RRu2Z~onCv7NFT;O;F90zh52h!1#VSXB%VY*$fUmFUnj=C>R{uS9Ckro{U zCNh8}M2vDLlrC$+FL|=&V9C9Yj6kZp??xYCET#5@pSK!)R7ERD#^sVhhBp}!xKL)> zlQ+`z=!vU*os6(KK?31gmX4=qjpzzYEkf60RHu?!0>Qx23I78qc#>v7@(K`}-i{rb zrJ&W*G3F4WY<6s5OB_w8`7sBdHG8%Gj=+0$naTFpi1e^G$)1ywQdF3e*RN0GLHkxZ zte$mSlB?>nW-V{5tSv9dSf=HE5FPe$#>~yJ^k&_*x1-o@X$CP1l6ZOy6fyWm>?l0v z%A&}BGTFkKp;r9yFz%HnDySJdYzSBZlQHmSZT=;`gGN}l=Gy~q_B+F_$@v7~SIQU*Ux-DC?ryx**tTwk?XY7Z zq{12Du%yNsLpZB+_V|njJy1hZjhU z?y%}-WpTh4rQuM*iUBdDcKl!7Ydv$g7-_AU-&C4jIW)zU(GQb_lNbyqZI=R`K>Q7{n&G!3MvMvK;9(dsPmIxU915h3)jsKKNJ z6(#Us0L}oqu;PcjJd*~@tQX>Y+F8BQc*XWMer?6J-mbwaR4TR^6C#*s)%;xiswM$L zkShQhrQgw@&IRHTlu<1tMN7K|W|(`Zt8zmA+u63p%c_RfL>rQ|Dz8@SiZ|L~pi9H5 z0@{)Ajxfyy^hi@YQg4Y?+w{6Gf`uoz*20d$#by6w3s(Niw5DAw$j;jup{$Eh^U`2SQzQ}$ zH-{rWv|+?@fv3p#LFtIlm`!kuu@RUuOuSFA(~&KinmrPY#{zGM2OMlKeJHSxim9 z_3E3$)>kWFK&HqZRQ;eN>lxYBOEy}&yJ_wCU2S}@SL<%aN|hHd^6)I$5lIoG@T!Sm z*owg;z#q5T%tg8RW~a4i(RvQhU;oPOa_5#pV zR#jbn`Q=}H{f(Tf<#?tUm=|c@deq^qG3-`S=yI@HuNl8gyjF*2+l>PfThjJF7w4nm zxENK0!(>f`?V|I~d+^~$x^?fqvrF$`{p{KunX`_Vh@@MYap_d4Qnm6VTh7U5=|o$F zX&#l6kU>I@W=1(|TIg#`^MZnW5T00;1Viv+m}I~pns1A+8aOm5NE4hZimiPx10nDY zG&15%yAWsv;~D1|##%>ISefXf#I(q?N)&FgnZep2MdtgWLh;}9N)u}|5@HG(KB3Ha zqC;WiLBdkZ5HA&=Mz3ZKFw&B>apD+7t26N0z16sT(ra@>> zyS?V9FPjIP>?ye?y#!%;5i7#4!IgGVQW?zcBq9}zN1KsY(-y6LyE*&oK+(LMcha1C z+?lUAM7JFvFVWB?4~&H~RGGzLY5+w3oOvR<0kwCnS?$76iq}PD5b&Dle1vV%N)bcQbD!uz6*?)S)wqD(xp$7`KvX&8S1TLWDfZx~DSW{D1>tC?0 z$2(KpzCcxK#=KMaiwqmQI%D8`Ti&O+-*~O{Fr{ghB1B(8HX$0fMPn8)UT{*Z*O@O& z*@auPe~iWW2~3(KuSyg)MeD+iNOaUpw;(YBQ>P@X5_ zQ6}3N_69a?k@X87;EW*W1b+FY(_QzWKmT~`Rqo!sx^(WGmzReFSe-ux>jeyMl&3X< zp5A&cY29YT`u1PkfQ!wmb3t25+ji3YZjM?5Yj=$?36UTusuR8Rn}bk#E(xK5uY*(LLsN*u!u^66=8}mfU8zQ*h%@)~AFL zm~V~tCH$_+QtMq;d)BSA_8Aa+@xwrFo*IcEAc0YQOl@SAFZOm((9S*znewR1i%Zdf z4yyK*0gjF_zmmyRo`7MPB$zRI(xm(DzWXm>{gNUo%a`(`N=UWXkXcU2P(0+0_eVB- z!!t$QSIUrBW&f?F`{!R*aH$M+s%@GeRYr4jp}E61e|`z6XvVIf%61nuY&orX+=6E0 zRpul`iB^OFw$>{$I`s+Iov{}8#B9jboffraMeKPYYhlpZHE8V?vKED{`4N(?0PJvM zqyXDRN8Z@DFBWTv>9w&)O)OF!3)jR$*y}Xx;YKao5RdpkFC&r}QUhtoYzWg+m^zy+1?b-B34>5VO5B?IX@yeSUy3Gn_{*?Viij52#h;rbI5;0D8^VzlTy(YpIIgiAB&zo4A6aJ1r zRbNmZ1il4PrByq5<;dhkS)(i&L-s$=w*Hs7%|lK&?CjG=9kEw#w0K(++*uIXs$28H z15e%j@|0;Sww2e^EcJNhNCE@458XK6~dh)*b!t$wgCt z>)WtlZaAYp>SjM5mJ7{b~n}L>Etf~>oVB4Fhg2!n! zxyqa-5VY0CqnR4eFp~%!hk3@VQ4X5w@Zt3bjk4+b;E9v#>l->H{zNK4dv_}h_ z*1VTJZ-u|}4AJK5(v2kzI~J(e$+@Irwy%xfdFem&aI?2_@} z+iPQ(Fb4S+lbp#)`>(+-qfD)eZonU*thLz~ME;peV(QQwq$EqIKeQ$Oo^7CnYVO%*pY>{B831U_N7oEpY!ad5f61tgn6t(rS(Q%pdYtK%2=OYz4oRaaD~-R;SCZIZ}EK88Bk_uw&0W z?cVE0basPUT>8mfuT1K3$tNG)_tvwwzWLgN<0d@$z@Zs1u{aC%z5k(u^6Tc@_rkL3 zm|i;Ji?{0bfAseK3y^6p?nutSgGlK!e4le}yy5Mui=wL*RgAji`Mb}#`MOh1>*Lmv zx}SFG8UMKc;-~IBxH}-O#Mlyjj5smS!AFc1`}4$(2m}-&>kfh-T<)xl)TZwJPQLZ^ z@rNG^JMBI{%;@~xxP!wRo~+v^8cT*AtOclxoas$yv=E`7U=&i^ATpM0WK>hQht-BD z4-xVR1!n~FhFeSObW6Gh(j-6|^RVC&g<=IFB0-}Bq=U0mb4FsGh~~j!CWc^SL~@AU ziZaV`jVn^4&}UmsXXb?5g60j-VYDxHA#ul-1w6wqvX3Ct81}8ED=yXD?!tBJ(^jsk z0sgA11AZiC61yN}zUNEs+xE#~yWdf`Oq^00655uiCX=Bp1{%g)h=~A+aQ5IvR zkgQfXrsu&l7RpV?w4#8n+(T=-t6|EK2}o_`vOt`VXPtU#QBhF`Z9DNq9d(2M!1r5A zN>Z_*pNt(5;iY8j7HFY3HmmXdL;`AoQ8cCEwy1xGlb!Yp~iY+(Ibg2A6_DWh>H6NCZN6u+X7+b9PzrO654Zclk_+wd_4%~a=MVlzy@m{&Vzhf z6o-NQUAjLOX^4axpx}CQ^PvMRWofqP^mw07^JcnS-f+|z3_HV+xzJ(vs<3E2$i3=h zX3h><3w3*u&6Vwd(kf-6K&Yc#lu&5~B|{tmcbN=?!Nv9vJM+Vj8gjCKzWU1CPWfHBbVmLkaZ@sHnyzBjXPcADpE7g( z;am0iYtH!btZ$w|LNB!-Lr;pNN_xc^A`QEOy^Whyss)_jjoc%1zm z+wHgBdg|$??|;AnyZD<9&u@klQ8SeF6S*%~3xS}%rBguxn%vGV_h-T{Wl~U&x1|J$ zHP#L+GY?CAsEJUF?wH{hQCSFn(IqhK5&|=?M$bo_e3E*VcH&48Q4GKfEHR>pHQQo- zcxv#*633r_VsP2u9AL&IF*A&#dw4nl2qRY@=^HupIK~<_J4rqn+7lt8;4_A3Tn1jg zE0`ind7g32eY>{G;h20c#*Iq|k>R=I&n2!%xO8MEVQ_{;HwG>%kQ3c6cwLdkc!W{{ zKs)q~#>2)0d!LoG30}p?{sNaJ`cUTVqrDqZoroI+iyuBm%Cl)h)*U;#5b^=?`K1`< zBao3#J{R~!fKTEK1(+s2h+S;(tq(IVx7(9sqQARsgJcI>;+caBp1kAoF^$e7j}t8; z)cKL`?>r$Zy5!kA&ig$3$%*%#kSV33A;B1H_~(JmuU>io%WLA@FSz@Y>wBm014SyH zrO)Aq+TmvoFN`&;Tpl{~&dbj0g$!EwX<*I+w_Q7T=xd)}zAtK8gync5kPBceeZMwy zMsvzLMJ3ec5R*uW>JX4?MXX}LA82l_4+ZMuF@IW87P29Kr7blE|DZ-mlWY{3h(wmc{i4m+6ab?P*<6vlD;h-eXxgvo@{hcq zj*AY|ZLX)X7u)Q~Vcii9*+^kN+N5cfK=YWybbC(Jh8@8!IW}iH0uwpXky5p?5(sxR zvdk*@g^yTRT){6{NOM)vOB)a*odO%dHHsJzNKbwv3}vu>;WvmH2{kpRTzHAAqH@vE zM{Yg%psroJ?Ctc#d!u<-Yc=6P0=JY%Dm{G$IICTHsSvwtlIhm%h@pRcz z6Ee#nkkp(acdG~O$&V5zIvHKKeYT$QQ0g@S?c5UYt+|o25aoyj9^fj(<9C+C276+c zrTPu!EY)*3ehKX_cJ$`tXYzwxyolFEL$RY97@`T7jhE5 zQp=G2d*RD%x88CZ!LO0KSfuu;_k=GKgvSJ}^Rkb_O)&>ekqT3!l34vPp&ay?)_v zSE%@xh3=D19hDhf{^FfyeWaiJ_EYx^LHq&oT5bCFvtL&?YRTP({O!~somkqXcG5!! z-cx_YhmYUbhbCLb$H67f-Ff~OvHg!3*0*QB<4@STPl|B-u>pSFe%(C4uPgRTQJE`E zI|mzW<2RHRA`#@Z*|n@I#_)?8I^-2B;5jul)diaCVtR90GMMJt`whLT$8Ns;qnAN> z8GGUBH;?+q%PBt{n^{6>uizP^90~9vBUu78M4;MFGymZ z=0**3@lMd*hDN@VP8OTBLmzY-@4gWXI~CTubz|0fPWe_~w=(#pgs@nLAfq^yS@ z3%lLpuDL3sd$*#Z!rYu3SjgDYMpvbE)6Q4O1_=BeEo#>e4VBLR;gfMQW-nN>&U5O! zAKtVtVv%>WCC(;XX{{z2G+U^v|CvK{`*)K-lfZ#&Z8AE(`k_pYcs%Qa+7)FJ#I2N6AX{W&f4m|F(Wi28E$LHlmLEVRlq|z+ecM* zI>BHF?dxMW%Uu3+f)Y0Jv;UP!mkr+Qr@>Iwb^u}oweEi{EjVR>l~D)oNl{bttK+V zn^q3HM9{{pc8pM@hR-`$s#qw1T!IvfqhN|*g5`BJ<0LSp+*U`j#gV2tvvp@)#8D7& zbO||n1|5BZj{ZSg?~tW15=)NgRuV#nG(*&<>-D-`jnqbZv7b3*Opesi4 z`3bQlgoT;bKr~R=O(bCqYb~f#Iug4|`7IH`m=i{`j1f-AUP$_yBODF)A{m_2C9qJV z@FUJw#KK-!I;(6uqR^41S#vGcJgYTpgs17Q%;ooFFFzou-fHuLsvooD#w^*$5)H(L zOwLeDBIB7zkhR$7wtswykEsRUD99rVBN?l9e>VaV1X=!$U0pQc$_DXEC}9#IWGq(r zGt{vwGcTv8bJ3{3owQ#{q;zRz`hi1pwYslfnZ7Ydkj0wPX^3^nCtohq2lnh_m&Z!| zOwCLRdntIWIlG*F;{`XJyKnCl4quRINZCACeV&I#H6O6<1&0D?3j*G~Jz%)gM)qvV z?gQ1WNH`pVbR-pnhFV7`LMGUYGgeMI;+T0y?vF-u$e78OZ<};O)8Xry^CG&JS7Vfu zUMx?L&O#C;tm*M5R;EZ!3UdJO7#rgCad(cT8Kr`bYad%RO;I|j3PW$gqS49(Y%q#b ziy;;=1v$2%w}+-i?0AY`z$$?{9_5QA;6#QihCvDZYnm%LI|0e0vGNkX7j3kJP0~n^ zr-;0b@D_;-l*obbS@AcKz>Ym8Fmx!=lMk9Uy`iC@zOEilNn_?#o}*nKasId?U4;jn z`OimQ`sTZLF1JqmW>rT?+7eI~;|F2zh(-CYzKMmRr!zLTi*IY#@?3>xq0|Vm{gW;8 znvidV24d+Q(hV67)Bn93`WoaZmBbtDc~^vbBS3^vxG1Tzva$J|N%!)(Y!suUW(8t* zAVBK+o0|8(!;eMfb62K)^(C8}85wYsruKtRSn;o|=TX3eF*6FBYe6`PGp0h6hEd@! z@tlMVZtl$TBz$S^ztdUQ!A&JXjz1qv{3UAm{}rNj4ah_2UBsdc4Xvh9S53-PFk4*cW($5ccC)~HCdMIPqY4@Fw5nlB1b&pS9(@c-u|2%$F!-{L_4r&e}Up3NiH)}e0^daP~gxFgMX@$t6N2#~qWlc?TCAn>o z_yXQ`YDjtjc|3bXEICiB2h)tQK9J=AZ6TytA}n+aULYC_oThGxid8eK0Y7E_;@Y74 z*x~)FIWEDX($cV0yc=uSQjRaOb;&eX4{o-q{{sg^8#XRoxpK~guc!HnhIArP{{Qov*Q&kLDey&ueK7&xc&6P_iwQBN?8WlH0*D0b21mcEi(6sV3L+I#>!agSx(o2 zJ$X^7qGsCKbs%+o-0{a_0mT^ugw`o?6H4@o=Z;psx!vmk+YcX!W5@5sdNK%rUMF!!_v+Q0f)7I)DU9GE3xlBQY?W(_^tG z#qBAY9q=nf2a(y59E~HRiz7;zjWF^Phm3e*@n%b`iIv8PJ!S>lfYZ;=g?K&NVgxc= ztBkn#3!bI~fEl_sGPO(VQ;`JbRK~4B3^@{EX{cAoaHV81sQ2)SPx=nCaXHAU?;D>ZSIt}zgn`%S3UK+*)x9qR1hfi$ci@g5ImL;CZBs z2xJ#U_C4fdO?pN>ZzYOp$0DM1EVk)s<_prywH+JV&gYM=ed-Gnu=T?+XxqakhkVRKhLiPg+~{ppW> zsVz9==6{^oCy6x_cCb@_=bqD=)TCxY>f`LkmQB`_()VRh;rUU0k~q$HI5h9_0R|W{ z%BV&XbM)jc&o5MzB%79N*B-BQoSYi=TJ%O;o6~GPJXMW-s?cl&!~34j_{+8Kz1@*~ zJa;?!#Bmm759OhU^MLX2&2DYB;ux9}T${#F!xu+J2kcs`I;=lYVVTxsd9QQm&>^9r zgTvz|cz*oRQ(a>}=pe}AOHY&9;;~t3*tFA&Y=T%Ic~~}&`H zeydO+JunG``Cr*$z72C0g$EtT8LdNAo3=#q@_h5>hK3wIG;@zQY&))iJ#PT*R%{!S zi5fLbyl(uq%|fIV&X%syVudjt^DaEl#M8FL?q-X^8%g&?{us)W%z;P(`K`#J9EX5_ zSg=^ylod@0Y&BbSA9klb0Hr68_dx|_%_Ec*lPTChunM?fZHlomiE~Ply@a5Wp*Kr| z5Y>fnkCdXTtUh=|;}st-@{H!4a2E!sQ)1HeGj@KdaV4QUF!fC>NjMIZu0?qsNx@RQ zZ32s_1c|y{4Dedlyn&33(@VFc7vnDE13okN&j`t@Nz4(4oYQrUoak_sg4r6T{FUNh zrOFpCGyRxpw=j=UqV%>6U>6=g9|91G&`ylFT=|sN(*`AZHsLss?vrpfRJHJQNZ3r) z+F~{}yb>fKA`OYnEhrK+7zn*8v?&QE6+Mopa|NQ5y@tqTtqU(_+hKz=JBap5P4?Q5 z>xF_+rY*C36p)58Mlq*~eotr)7lhN$S6=~FxZT$Hd9eSaK=0QdzbR=&>FQzqKRoZM zMVZ|v<$r38H@Q8zR(p0RmQvG%BwbFo*Ola@vnv!&wK#KJDP1hc@M!n2*gX}-wC{2~3aY@D z;zM$N zatK0;@agu=s{ILWSDWF^j}vpL)J)3?OnRyDw=_!SpH(%fW<$9(IeqKuRhQg}?RD1+ z-rnHMo!T6o1jtY^9;tB7@!Q@n3Pd#P5gR?f_Jf983^_-MIl+iVE|2@VvCK2vqo0vu zk2#>)>Ofb)&?$olB9f6~)Dov(@kk`Q8j%bILi$rU85l@?(fBJB@o|mT3(}+4XNSEs zbknsKE_7agMP^l%ZSTFqZ@*oelaomI?4T;zZvaz%{`rA>@7<%|zFmJ5fBccH%`hgw zYGZIp_}nld#G2Os_~FaXzV-9QX4aidn0II-;O_qy*dnFVKYioXH(q`9?Qd52Fq<^3 zpYq`g&%ZfgJ=DnQub)18@tLdV$E$6YFC;%RsK16dxR$zZum zBt?e{JKmBJNJCU3B*Z*0dPS}25o<=o3eB(_>`_Zj1UueqnUPpVB$gW0J!B7yQAj^! zfsDhx0(VanW(KQXYoWa!t3kHzKwmzBQD01L#*K-QlG|>p{Euy{zeZP3nQ?fGmVsK{ z$^dBYvVuc-$63+Bm&2e1c^0GR$CXred*Bq79**K=s+J zT?k$%9@2dV*~|v>WFrb-(`#)IJkzV}$Xyu24)L=(Ypel~T3O&I2S5-z|29mL4{Ufs znjI+13C)k_;4Ll72&dqv4l!zq{c=YQdWQ|tT&~3D`@O?GAPmt07N??)#H1=aNLo%( zu6H3Vo!jGZ!hMWM3rQM4Hn$(`+%Pj-RD1DA42gY~tUh?t+zqje*}gnGq8*`oA8FFV zO~{iA0oA5Pe?vWpT(rdC9ZeD1E0OQ?fv3B+LaV|>sbsKp4OuJ!RO{9x zsO5!YP@}LR1~Wq0hgC)*LWZ)l$-u}Zu>IgIOYV4Cb<~^T%t9-(+qx&gP^wZ~1$_Pq z%W6L>4mUIYh=zi5R#m^Zym5M!)+g7-sR4wxM|L)3S46k9q^34ra4za}$WK2v*VmU< zRMgiuhR8*$Ji@G824O$39@1kIS1W4^dwO z2~`q>8Ab+@u z3@`LWUMY{Au+9R=HLF+f&irr+$gW~4vuJzo6P`4w3fK!c?C7I&@!HW{|Gw}4XWAqj&IY(Ip-|0+B`Zps8NbE++m_FpzZTY4-`cTH zKKk+Obv3Xa7$0Im(O6czZQF*8HNI^t=gnWe4K$Yjx2Z9KQv=gRTty>ViblK`<=~T) zc^poP{tt3YlCGueT5eeD9MXD*Ed4^({t;_m-P&EZcG7JbI_zH5DIxbzriC_XLF^@3 zuv`m+$ppX=&~$K*m^>z+Qvo9es|5TotJ13?JtRCO8EDB;ME*SDRT)+XGde*69d@|O z1aBU>JveC79yq5Y#mXV56Fb?BsEA5gRunw2#~=d$$sH}!tc4mZp&CoD!Wt^IhPPOv zo3z+EO450=s?9;-2EgIozf#YT40AQFcXcx>%Dv|fyGo|GQ6W!&s^DYt$^bKlE*KH~B@LrCJIo$240LNm`s%44Fg z|4Q+8c2S5>{JU%Ly9PVvm?9^09JgD{Z3$aehpdB>DWqI%Xw1*&fCF1%H`QGf(nvLV0{h)5tiM`f8_m5|m+e0&6 z{;;aEbLoU%OPvJ+`vg9|<5~HzW@wM!ZocH{IW_({FTS?grEOek892PF=l4S2J#RF> z=L{V-Fyp!J_}>mMMc9WO6RNow7AP@9u{SQ!dcjbMMnj+wz!8{^z(EE|fVd@g$i#z6 zg_RuaNtA6U zX23RD7WhVs)0h}m9^Fa+j~XF42suvb=Es< zq;h0;r1?X!P>9ffa*{h5)IE6HB&m)II zf(IAu)XDSXPuXSLR`=~~OG!-vEzS$;V9V;BGCwN@6?J%8OL4;7-}7+V9^2sn)zQh- zK%bRLt>9%z-VK4~8`D@WVsEVbiC(CQo)(S6fGoA}Uz> zTl>#<)22<}e(g~M+LPMv@VD*HjxFD+`6a=SYMeU3xGMHlJejD^XGw#2G!mnvSp3aM zDZA6H!xH|f2Y83x_~PqNTz|Cdhua^SS%*@mBRoX2dy=(gUqhq(W%HzH{w6FrrCsXV zzI*iR&Ntn1Xs$a6P6i750k3<>C$l>J&k1Fe>I^bQoFvm*}v?^x_w7?>vX_bXZI=j#{6)?@}SF8c-*c3JS-L{34K)xO}h;gzYl?=n+@Pca$gSp#+kV$(o zSov`q@Ij_-%R+)9_D*JpEwqQU?68&_iDgG(X?onn>Nntx)myb{D>4>q71nqa^8aY? zc~Qh4Na#oy%={iQYyk=o)eN(QG5xdcMOk2g6$HUTaN7KcwIFIOidsA4HKG+pw1Q|nM~|n);@()?!LR7-mtdkvWMmUtaL zw8VW@NHA#d$|2#V!RsPa#t8t#I@l_m{H}Khg?i@)y!&{X;cgPMj=4*|7TMS*ON9lX z!YF~{1VEYLsPzPGr}V)ZZgH;wQiRU<@%9TAtk$!%})ID$@V zI3DqX_!XdN!9aP`IYAqGnPWME88?KJyV!jWtr4+?y56AcK{B_{dc$M2d8~FXb_nQ$ z`_I@#H85r3GL{L-Osl{x^DA2-u;84JEc4rs-z)2m!*hmK)x5clEEdhx4HKH;Yc>Uf zMfpFTmw$jQ^mTE(PZnvp1{;Ib9#5CV$&!~La3=zO$uirv|9(yTjj%@|`^=ct+}zyg z^96$e2*%*JL>CL8Se8fnD=a(>%S4MELM;GkDj*=E0;s8bmFVGO}qb6Q{kgBc7U3iwj*YS#5<7|aEm%3!%2W0ZP?~a>3RBX4?p$l zH`CugJ`0UD47yCK53?y=%AT_CJ>P$Q$MDTBUi-uX_HX=8ZynCkux)uXD3 z%0fVxBHn2u9+=v}yMb$xcB0^bkwEf~v^%U0r^SJ^cZdi}jS@vHC#-b}YDED{_n@V3 z$l5nz?FPCSj4|-`#H|gQWt(Oxu~@cPw34`97LQiNqxJC!%teUH1JH@WpaFpa+DSD4 zyCPSS!AS`vu>FbnGR7`wj06lwxR7^o4kdgd$H=$zMt&Q`@W*=uJ6}Tfuoi(>Yk*yf zvinFnKU^OVBPV8cJW?5tmRs~POKh7KtBA*{VlhY+G)43vtTAEev&WOdT7KBpJ8T~m zwhxRr21M-r!?u25Ti=kqPYAMV*zLVS_8uWyciQdUf@<#)vSBX_+wuWw;mnQN(tq!c z=sew?5wT^2?O9<*e%MhMa&!whdW9YR!;V2=+t7$@FYF=P(6DVl#MTQe6v&Ps&l1*h zag^Qa(=0V{ttzfn<5knjEn2xXR%wk_Lmtb9T#E6KjWSYmU;)iSm|`4ST+*T=hLkmU zmCi8DrLFhvTV)IJYo6b`uNOU2e8l`)NiWP;mg9}a9;dVP*puoHJI2d5@ zeg?^PjmPWsSWPsF)h#Sw@aUk0du@(nrz^$n!Jg#y0D%c0YQ=9e z$7vp{MKe`=X3F=6PXmpC&2dL>SkTha?ii?jKD}-g=ca~NcjSQdV~d>rE%j5I;&v@o z7b180)~$i&WP2J7^b+f*Dv%9Y7H~F!?NAkgYp;$u?A=$cO4_i2^FY?aG>8)LM57W5 z$jVCTA$2rAw3&gn|8vg=PcgKMm8I?5I09Fg=0!q&iXOrFI;q^k>r}dR{N6M}nx*>F zC%{C*dh5F2^(?-Y^`1me^Rr{GRB6;&qg&IhIy{LNt9)j6{vk+U zlO|REfmE=+u=BCq<|(TdeoSiZB%@86wZL}gaOL*Urak%Gm?`6CC!KTG#rtN0D8sHA z)qEAe=9B&D4X~X%3~u=3?)zW==F9iL_Z@Nj)yM49-!kRt=f0adc4pFf_g{YeaQl=e zUi|Lo@w1Z7x&N|#5yB33R?Tl;O?F-O=wXWdOWkG(c| z#<)qLV{SXmJ?p2YgHGQkI_s-n(vCT$ckRT_m-ag6{DW;%pL}8b!gF*#4=1ZRp;iZNGir0k3}A+t6!q z2^q%NGDOFV+KDU+q=_bMG68U&YuaUAWLZG+7qTDCLjK1XInki$0PiFe)Q!1w(==}T%?J&S#C)XHgMx@ctub9Lr zsU;JS=nZ|s9yFeMZAYVZ-mDa;olcVsflR-p_jC{>IwF(8+lUB*C8q`N_q zv-G?`7X#HB&lHYfI71N0!qrQ+EXucr;ZTNoHH#AJN*r~b`PUtJIcb?$g*$AB{^o|q z9=mg|VZ+>R#YcI%I{&29x;`#wJ;-P%k%Qv*G*ALaAh7Sz2-sq*YJZ^F`L`X;P{t@ErV2GEDSDJtx6GM5*|kib z9U;rzE$?=}Guk@Oz->3C(5neuzLOEzr(52sb-r5T2ER~|Lf2+TugHp^Ro+(S zI4wO2@s{dH?3Hc$gQb=tN9>it@IdrYCI6!wceIzBtPdhD8 zS7)6)+x6|Y9>3qZ@4h>BMDB|7@h>Yp(ZM5@$PN-sHnh8pZYuMg>dxx18LKLOgdov2 z)%dJw>2B&tEiFK`Kl!Yq$@dRyf$f|~#{lO{_84xyNKT(?Q0;u$KV-(;*RGQ^cE!Lom98!*Qn*pswXZ z^*cHweoC#tBOYqa0`(LQ7(-PtB1Y&!=~*c7N(pyk31WU4fWELb#&l$(m9$9RguRtOS*URt>3L{CLGGo&E&+fvt<+5l8%B zUSvOxVuP{c2}TrHH$**E7Lbxfhr`M+)e>W$B`5I8J}+5XDg}1ce_AMGO0%Fvg`aQ0 zkb6)(af8b*QIjydk!%DUpnT&T^2qB;k{e*o7IEMJQvf%0O2LFF87@3b^I$}Ikex<@ zY8nzB(GBoCAv|J5Y~%D$E#3iR&1!sN2$t>6Oack?^=sD+AHJ6{;8Tr(yCoI^&QnI~ za;|ec0svFwJ;XBtt_?%b0ET5Nz!sL^V73uLZKBNOlxYBbJEYNcTS#;i2%8l~Ae^Rl zsEts>1jlI+AgJ25>9A8C>Q)eY@AZeXbGmX<6lg*lR95f0=kMdE2Ohq4#3`p=EqJA9 z^{|D#m*&|e*CC&cjU8N6@!-LHNn&q6{iI5Ygh7EOz&PX}Vq_e&SVFG^_WIi2Z_Ml0 zXUnwH_pP&uw*)eR8Xcjj1QTN+~7X^^Vp z?!~wcCzXUMc!zSxXW@p%v{Wy3s%g(xJAY`jpOzkb zzs7cQYV@+qa6Xo_tudTjg{sB4q#EZF+J^Ar1fK3}gA4M(2U9~KORrwhXP&8tNvzG0 z?N2}=JnU(y?>=68tjaD!%_67yNqyZTQGS!+Ar&Y5Nw^(pn9(0GL_)8xk zjrLF4q{IJ}w+`V~`=h5s3AJ;B7>gOxi1kaxKGkD+F_*9aQ1FY!G(Luc+9Z{jN-WLV zQ9vF%F36H!2&Y6}kmO4&HwuwVGBsIs$h7)wnvbVUvL}%h3iCZ&T68cCXe2;o!&D*W zbn{g*c@y{1_z)%#f?py^$nc1N&c!!}J0mj(x!0KfPs1bYNF~Z{Nw6My4X9F}ibUv8 zZdn$UB&G!#5cKhNSh;i{53(UaLq7&H63j&)xl?Q)bD?ZvPm;M*E#uW&hGIK!e^TAM z**sD3t1i2I-P*Oo_Z>ce-u!=m`f;~z-DSo$hG}W~H2O2kgtVm?G{a;l^@F>G?J#U5 z;Z~n5R%MMhSfTf(0ZijtyH#_N#vA3lg4qm};04g6oB>EJKty#iR$;s6uIs=5x!LK6 zr+DL&zkki?5)+r|)DJ&&!xs}8?Y4MEYJAH0_feE}A=e4Teb)3{Vl-M@Lgrs86&Iff zEzPTysqX({Xm(`Va?R5U%Uua6r zxWu#kqMY^Fo{-ZLf|^$os9(ND_#Y#B?FidvQ_{aqO&#=#uiM;!WnAG;zxtDY4dyjO z09in$zuki!p%YUgacg=gLe@m+hIzbBjM*ZBz=Jba7*BY>>@AN~!7tKDQxJjkaPOkg z$b=on_}_LSAnzw;acs;0qs|F;hJojRATH4nao!_%xzr6h1%!~}s@BzONNkD5F z_L)L63}qH5wzKU&0KWuLNde3O+5AMA6I)prq$5#p3_}ksL{?HU{YVIrz+9zsW+-d6 zbB}xSm6Gi-+H@NO816!zON%wd7>{_!HL*FbDomViv3%EH`^|4VJXt>!`~`ycjB(X% z^T?n^^%lubsX_tgX8$sV=JsxJ{d)T?x1@_2#dX&;-E@-=Liy$ob_IU@MV*fw&h2Eq zVA_pI%QOdRv0odFvc2k4Yb&uhN^3QKxtoLcp0vmR_;1@;dv#d<{}c7o{^HVH6dJ=< zs|O&Eefwu(eyEHI$|YeMTNI zDcXdBmKafy7=09uGt5wI<$^(lzopN4s#JUtIgKDZ+37+gMoLC3a>J2zhjJDrYm}e~ zxrtIWI}$OahjgR?NRL^ewULUH0PrW0SJ6hnaj#E5>||@>ZZVJg{L@b-Pn-y7RZ~?CvC^?WjQMfWWSqWd&z{f$rRSv-v#CT9 z%F1z((9nYC6uSq=GDcohvTx~78luV-Z0#uC>|e67wz$MsTvA`WwYGR`RdGpW@z#na ze^YKYqbnJNn1k~ATc4ql13`F6;sx2h-hE(=Q=8x4c;_SEBza=V-dG@Hx$J_I@SAbI zbUdw7(&~((DE$D}k-#u^?9Px;6|KV<5cW}Q@vv?-V;}2@iH{&N>k+R<5&M%Lrj`1ZwQZsOE zG&jd#NwL{J@O4`eO&{t-VgxjAkRPer5v!eORfei5!$WFQ3gya5##qBJ8vS^A>tP3_ zfJN!ul#>$2wr@U9gkQ?1nowHq`)!uTEgvXA(C+d%@#i}nsmzq&Vw#r+&9-@Z3@mI+ z>W&E$U#m&5!zo}7=PPsIP_4f8>15F40;&JZSzQW-FNm-uip*-+N4=-ND|UENv^#p9 zq01-@Krkh@FggL}6Xl#5lEzzxX)cNZ#@e-gacMI%W9OXX2jrSJ&k0}T`0<`0Ln56z z?UE=HRPU!xox1z*i!saY@8*Nw*;8zPf>*Rm!$N9~F4ARrerWqxTMBFTNae`jj@Py` z>|yKrtN*-xY%VRe{jL3{|5vzwd8V>{lD;aNte-^oT3prm1b@OCf;9D#=oiOB9f{}x z25myRy^ISYS;U{HGYJ0T15`)mHb{O%Ia)b?BsLKi9{(7p^X*1h&4sdG5|ZkJAjO6+!NKk zdOVePglDGVDzZnltf-a~j3JC5H>9CdMPW-p*ism>6yVQLJU1NALPAX4ni03A5wnV% zaiR^zVpOsaZn0sB)B{(#B<(QjlbLrCAg99Q%=gMi*Je$f*eI2e(HOaT2yduwcvLQS`IzVYI{U--Kj_-6s9V=UR^&1$T&%WFScJ!SX=waEN4!$nay(*G zT5?=N6{U}#vhJbhCk8DAtG7f}ZH}&@*YF!3PL1h-!w$@5iGQ5SX|=k6t;df2CO0Eo zRS)8krB8SFUVD#186^{9>6R6rels@|v2@PUYZ`1@3EH=Wwpgqs4dH7iRxGay zzIaq_h6|KO_MSoctszti3n~C410(L@Dpi`SoD$t<=1^du4Z@wuh(a}B!=-UK^!!G+ z8)wYStE^hwv!~VTf#(sQiy@qc4rM+uIR=Ttph2&qK?Z=0%xP>-F;PS!$4OZZjH!x8 zrdFe7`!f>v3AHC4nOFunojH<|L<&0{G1j46V!dlw3JN}_kVzig{`@)7yxkq*Of_FK zGUg|)EG=donG0Z<>E$HGtAh3>faBXVVZCJCmPMP&z%A9EIAFAkep{Z@h!J6cur+HO zFoS*enKvA^?2HYT_;iamZkj%Acj1>glkLfyJ)EHhtxAn%qPU9#gGIS1CO)Ru6QgW^Qr;1 zr2iXZfVw?p8<*}cOH2U?vYs+FWmVVj#R$Zt$8DK0O9pY(X~!p^-5|p^ynCraTGuU*vtk0f6`XM|DLas)1yX<$^$O&7 z65o&8qjBP3;ZG9or#ED5qr+&2X$QxX>o7{M!i7fxaEVl0l&^*4;xKMyz_O*IB)06B zEeF&e=xfAnz+35nTqrXYk9N4*U>-AcSq%<0x$u-zO2*T~p;ewG*Lcgcv)xcBU$q0j zcGSGwZugg;ebUg-7>NRZGifbhn>KZN!?x9{)^46RcmCM#zyJ69AH4JCyTAVY!=~jk zSFGLIt$R--la&Xo+8vqe04PEK2fp-bmgM^SKqPK|=fi)Wbn0oepK?0(=BB2c5H`R;fEh>mSy4mpC?W$PI5#4-9EIh^|Vt?!S8M_ zFS;$aJja1nO&%qcubi<;Fv|L3vhW~WKy8d_2$jqxDeOG&vS0{NIiik8<5AkeC*3E{ zI$+fPjjK~iYO~6!2F{w@E#EdabMTyC_M^3f=SI4O99i!Mh8>?$Gc?7C#Pb!pd!gTU zO*S%1dZLJjuqHX}-ow(Jog9`2D;&q9#gidIPA+x94FIToUB=YZ>4+lEOjI;MDw6fX zrS<=qTyc88P^mODw8&9O=jrkdF zK?Wc0@QSCT1_T}-WYUrXnCD3ZQtiVp)w-odjHW|3r5bI^;KQ&(Z3=_%b0_jNFKEP6 z!Rt_C4M}nj3AMSS&a#J}31Bi|)AncE^#ZgxmC*s!ziq5o3S+f7i0{>0_q9{19p1I@ z@jG|cXU}%dnnh-?Zr!5Yy0vEpE8esR@M{mN{y*?@)1SDf*9vT1IH%ZIn5Xm|_ULr6 zP(!s(^LVh-+@&qJZNaabc6{xafAj2F8{I{nkgIfeHtMK>&2wgK@N_O#2)wyg~DL+r9DMTRZLFw&2Tzq0O*b@v4*Qg2Ygk1LzNxR77NE)TkzSOT?lj zLQ3!$CN3UZd1y7pKZ$}gAQ~CB&4G_RCd`55fu0N`0@o5YnUR!vjfTUP(ZFDC@$!tr z+2B`Vixhhs8HWMKB{g`Zfl& zcSQCP#=@)YiSJpMl#n05oWvyJPk!YHL3)L&ksZAZ_! zAD({LUK#${l2~)uK0Td(JEHToXY@bq&~670%X#R9F>k-~@3a1PHqF!6#DPJj6Wbvv zN&tkxO!LFoi5FgcapHsj_}}jh>+9~>C7r+!X&s3^t6pBdVdKUPKED+vu3$KF+9@ZQ zznc2fwhU51Z4A)p<{JDmCkgla;fFIBuP~CBHbSsXJxPL(5l@ zA{0%)cmmES;{Oq1qXbR#D}b)2?LJ-Y zm*>{QGBhoe*U6<_lZWguSO6rCO84BD6Ls2POl5N^KXF6^_4e4oZ@+h&{pj>~D(;Y4 zI)g+7wv;7`ysq+0ZLd*|jMO#-)R{+SqtmAE2G{9I87jNb;kbWWZ)IlH`KL;wB}kK5&PCMP9}Ifaso zxm;p*F|M`KafmIUEqI&;4%2*#r(#m?cQ6~sy|g#Nnd6(;3uLsBQKbcZv0+hd2}7cc zjY7khdJ_+|IvZ8rp9{a*ySG2;yIq`S|Deka92hz4EM*4!_FM1Pt+oRW2q&_^60alh zYmY)_|Da;;=4smZeD3_Dk<#%`KRtFUi^X)j`B%OB$UAGo?LJ7oarH01Zjoqj-t?*| zkKb_BW53k3=57a8zkmDV(`(uzbgSRX3H_@-y#JM@NZ_`Et$FE7|9oi)BC2SMl#YAq z<{SQT!wvtq`RSR}yX1SuubLOXc>8n4DO9l^yY9-zX4TTl7&{w)cD#4EGHX@j;F=F_ ze{6d7PHtRpTr=y}l2BmHySM#o+RhH@_(`=n!UT&7F)1KrCn1Mt*H4jY>WN1lR^A|?(6Is}cO--hIyJkipi7U^(lWNNwrpEAm*nSljp|7NJr=zw z9;u0kDq^9U{q`NTuEYV6`SKd;(zO;}BP7HW%jN3{>tOdnlbyB1wbziom|v0kFdVmF z=M2JDBy+-5ngi}{%5xvwQg~N+_M45Mc9B3GBOTgtHd2IQ%_D~WSQ)q+PN+hp+8pT) zN3PSEZ`V@q_sl%kz4X4`=hr-Na`6#+1EUT6c4E$(UsRUV?;ovyJiqb2&XCY&N{K-BL844B&-s39^@G*iiprqv7-&^wZBUh1S(I5Z9iB zYQ?`vVc*7>pmLfkdVyKFtR=>@1vV;~!=)j4+R_Hhf~mEeLQ5SEuu}Nez){tu$fTK@ ziNjIZ(n-V`Cm_`*W1=zdcMrDz?*~!?EXrE*?6dW$sj)A=^o|~#+kTRw|6%yGyN}$r za>De=b9(3w_)A7 zbsNh3@tmV>z5ST%`r-|xW$Tu%E~m?^UcRv&QR;!J;>~qX!wghxD6Xnn$tNr+TeI3W zxJ$z_Tu)M9qp)QgR;^gMsm@=!daZNsy>i%Y6>D5JZm#>BhhKW>*?--1P_|7DTfTgK zO(;;cNu77&rdld=%l-Q6R;_go-z(cReKjq7_lx!kD z>fzI%Egq^X+qi1^D%6)efLO44(}u0Zt5=s%`p9r?F(rrGP>akmzRio~EZR&-!7aH* z-FC-u1$I>4ilubFwCTRmrN7NzU0$)`i$@;+VP&a5^XPxxdTfzhZ`{1-*TwuhEm*Z_ zLs{ACg-bU!?qL#e@(h}*PbGQW8dJ-##E5EFnpT^`7{9f!kZ7cn1^CW4W$tc)4N}9V zYf_9}?fiZx-z(IDDIc77#M8+RK09_mBDnlulmc}p%jwOryR&WXEUPoiV$ZTTvMjD_ zn+qT2+1>g4YVNsqH}-7av#@J+_&1p>Pd-GP*=y`#go8m2mMu>8XdMwmRmlbIx6`s&c{VDtMvW{5UPydB7##wh=tX0~hrmNJIg*&6x3v@vAn( zNwI<1UEbu>wAAwQ^2C#uY%R;n?;ee(kQ4=ehlESfMo6Zmf`sIa^(eyHz>=Dz|1x8& zSk>z5w$(IPdK5++_PE!r58wA7e3)X3^>BuMZBEAfP$2u<<-Jc>+wJ~pcXoQ!MIJ|` zxAH!a0M$ly%B`28V~KVs;DbJetIch9CEFb-4p*APl^%(?{Xy+&`!5lzeQ9P7`!%CC zTz)bH82T<)();b;);?Y0a>VZ5y(IQQF_v@(d1F3!P>c zes7LaZ3ZGCmowfp)&h$1)b^wXfkGmG{+u4Q3petA?~pUk^iP{sdGygiDC6ICSK7%Z zXYVXm_wG~g|GTwj+BVvGv*Qx_SAYHQ6+bJKT|YYTh!9x}9B3TfhO`s9J{x?g`nFkySYcEzH!;zGa4J`zWMkEi^?n4eE-51;nAZiAH4d@f|HL-{q>ehKTGab`q2+H zg*`hv7EPE@5sz>B`iYP9BaTh^@xB`#8(&<#Q-o$S+aL^7md^*z>Ub znfG1w*tkvAOWt{LPQNpc=}MwZbyIFRFYJVv|je_ufE|s zpLOXAPt6~ASmcol-pD$->%_Ys{S~MB;FU#P53ql7+2#M&H1qWq)}zv07-g=v1S)j7j_- zYcnuMniNfy-$I!9{GoCi7!#G^Mu^9PiPkK;O26dgD-rD3EvXi>_#Ctr4$`BDFG}zy zD^JA|gXcoUqRH~uAa2WhdNpDa%}G-nbBTL`XH7nrjo)*>kP`CM30BG*O8JL3@S^bi zhow9NPxUQLiZEKxj{HdEmfGP?N*N4S`OIy1{;H*@!lqZnQqI%1Rx9(qY-`#ZXkR@wtt~_mk`8iXoV}M^M z0%9b`&DvaDA3FcS^LQ?2Fr%J?08sV8)Ssu0`C-hX4?ptK^Dn&m@+)``liS7TosM=y zQuwf$iHrrFp2IWex0y@Vp)te*AzM{t$*CuwfU~^&_Oo-B`kDe(f6$hZ62Ia4>!iAn zF!+x0qKh(XJkC%~z|*hu=D%kKyI9h%TAOx4zp^tu*7AS@(XoJd+YQOOV)fnYW3}+2rpm|br^pSSUo!mf55(vU=z72`3 zZ5uWI=D@}lL9gxa&itX^Gc{4RcG1%33GPujj7y<@va_rIZ+!mWgOp%{ope$F&c~H2 z9ZQ!IB_F;>XoKN%sk;Ap=i~0RfJo)i)sDUTXF`Fr{KqHWi(m2T3wNE?C8_&?-5OR@ z^t$BkyRJI1SN@30Zn^ow19F_s=$850`d)GWowwX}S@+6itABj)i_P|6>E?R>*5wZ|_wp^T?0NY;w_S5$&-@XW{PULcN9H(P`sVrD3P$xw3T#U`xx_x%055m^p<{ZCK5AHV#SS8hKQg&ozkZo#Is{rl2d7r?1%#cHivhQD%KWkc=E zXJ4;7{a-KLaZ2aZKBK!<%`4~gmMknU7@0jg@qWA4E!dE@kM;d?4;p#MQ8)dxe(KBb zquBEnP_Y|J7ngRr;F0GZJaoe=pA_4JTZ?P`B}Z_5^yb~^8o7w#Rk{H5`|?|c6K>n|G>oWErCg3_E(c?(|pY>Pcu zwz({FUWf z7FBk;^qxCzym0?)wwM2&O>of8enAtB;TI6VLj+`O6#pc-91{?c;%o_Xi+~qnFB++2 ziJ7?ZnQ4cI5s_PL9bv;hxhYAi9)f|`feYC0q0ZUzhR;rB2^yml*R2Vc5pzJx-g5nx zPYsyZ;$1M^4E!ds%%X_O)Fa6)L@WF4(F%W}7S(12wmz%*m&`(m4Li@j z?DsOfYV12>fegcVXqIBTC)pN^w!x-cdmS{H9o*tM=bbZh)X4iDe4x$s>V4s&yd-uf zgPb1ohoVT3^y{)pc@lw8)I~bQxDO@FK|dFW*$PT(#l^*|SFJkx?6V(u=%FjGzIw~% z%?P&DDS`n3q$$Yn$-jrG7b=eW;C|Vl-owh3niN~IR;#Jrf-8J6b~9ZFi4h#}taQ>) zmHIm^t$w)2e|uRG!s-v{QhE}YR~E;_;==X$Ww)l|X}G@MT=Zs;O-MwwCv43RT?AQ0 zbA%8Q+MmPe1pbB_(E{d{#S_t;2Wp!-S?j;{cg;+ReLCpyqi=pQ7`v|d-zVl>JUB'EQFcI}g?Nss#*@0;TfSge_yvYtG*_siWPAI|qLTpy^6 z>(eXa`yEvH!zhofqH$*2H3*itm|jw@=XZ7_84kXLej<^NEr5&13SL050go(lms}J{ zPs=JRD_Xj|y1LruYvQnIa_n(XrcK?bGS4NRn}!B;y4K@^VJt8ZUjj)>jaU4SY1wLL zz%%Y?XQSM9b_qeS#-{9JB1K~?09ygIT`9!x8Ib>fc{@&~5$6aw~ucFR{j)w9^KTKEeX_wr6W_MfVl11^M{VnU3 zY6JUahPN!P&Kp+fYTU3QKA?}ac#WlR_vBdBl4Z8N`^MMP2~+Eq&yNinkg3(LS`i!2 zt!dHLjQs|puqzhn1AE6;&kOb+l*JCzSmWyX&4W)r|Gcx$J$sa6#irDe!*b$Pi#Q(6>w< zU)6JP^BUWTk)55P$~84v`}RtSR4$kwA6QVj)Uww=TbZxNMfW^(?*mW0H{r!W)%EV8 z95SB88rQ9`?lmyAX7QrsMjB+HR6~m}y*rB+@yznN_V+4Cr;$f2pN8*x^XgCzXjyLV> z_(^*mP%Z1FSP6v^a+2ERo7Oj_{>0}3#mv2RWw!-Za@ZfU9e(%`xw*OKx$ppAz2l%d zU+ByudNv1;Ynp&pC>;G^`ljbTS%Jgw$yYyZ$WC|TJ%Ecc^>Ic4BXy$zLoJrQ_t_hV zef-f!Pd@(m8?U{FS}rOof@>H-sgM!jcv1+7AutW8iu9w8JOrM{uATHy1hli*<4^o+ z!kBj({T8n~=5fcM$a>(uow=c?T6(rq$xltGV;a(M28TtfZ!EZ}sqv9)_j@I|4{S;I zXZb8XSAZx($VN&n9egh~bde4P8Qvs!0t~l^AaKJD=&?Cmh;!$=m-AxThYXcwdG|^^))b;ksuqasurK)qq}pide@e;Dfzy493cYx zSnnbcEzW;Lsy1_gZDqi6*EWaFT6bW2o%Ut=K#wU)=J>e zEbxZsNo2+(6zg&B&*X{(2cYDqlkUSzo`(>5C49Dww0CyD%%_@y`PGvz=lVC1p zXOiue?BlBWn@cq_eg+{@4Huk`0u29UcA&l<`XkN$W}F$-2lo9AG*{JFVswigHO7_& zVasBQ!#*WUg7#f)!zNob5k&HuiSNf2 zpL$Ns-0uZlCcn4pz-ulXQJ9&LR6pkaHyqbLaqYnax}}tS|3gV;^SY+d zmz>-^IVq)K;xo^WnK$p(CE53 zhTZayu0MTMdg#R`_egTv)_?Zor_-nXu(0Qicl4X}#g@_6Trey=@!1!~&Y%Cw((vFT zM|q|{{^*yp7jAHMcQ5_!r_Em1l4&(ZUUyF4(l4L-c*eBv7x%pR!IS)-f3)?GOHa;S z_4dDu54!l2o^-)o-V)b(W@}M!i~pfbY&4vLyiIf3ejMzuxe3fu4oosuMYM6Td&CV;)GzVh1oB zY^bSk!Z(`J&Do}Siv_ATE?>B^BIHg@O~R}!OKwGSMzZdPnz}}R#7^fDO(pU9kkf1D zo50QO0HQ)v26#*aMTuCF%Ft3DW?d&jG4a(Z>(Ta>F1407F0hlKU^hkxE>><{UZ?y5 zkgwLSTZhMS<*5T|8UnKxZ~J!o){=&lC2OmuEf1&lIC9#w8JC>cXX(0{$-ixdl4$WZ z-`VG$%fXKvI3SHnBt-@KS}cbjdBjmiAH8nvI@rCsbm{WwV~<>Q#g&9Kc{&8Q)N1kD zY!M33uqI{ab{jW-QdOM|kpO_Zo6Gdy7M4gQr6p@n{Ce}1XPK?2=1XL|>*5T*T9bQz zMr}OidVO7|(o}!Hq`-Lv&4;o#y4xUkq=cpe|~JjBPm;l`bXqbI0c0x;0om1J|fNfMrCYkefX6hw=Ay;eQ*ke zHv(o!qzfv{?Q#-8#1A-5nQUM5RlL5u;i)Cf4dLk8&GlbbyKg)=ZA3Mfz1$JR^U>}6e&rQ5*Hz2=ax$dvXS@Fz@;;pRyP1(^Ft$4*7(uy zwDg-@DbdYH09!#WRmj8=5gf8SCkpdZIXen$w96`nqbwNE6j#=O}Q-8)H{`cKHR>c9 zXlT%rGm=8{?>qg8UT=MVVG*bxiKo*24SqY$+xl)n@{0MrRI! z_$3B56HD-7lawY*riCa(CmfR)uC1Y<}dBGdSt?$^j&m&*mTyoQSiJ#lj`W$lVrPrN% zP$$g!@#gtYp7r;M^|m2*fA!2!S*Wl`nRAH8~3A>!JEaD%7oa&x}LomrLITc(RYh9mO@eDGb7W2)6(vfSqX)#rwl zh%PJs$DKZPf!D^#+YGeEWm>M@w(+z#!bmA&8mur!9DZp3?ir6>JL1cqH#GYrTk5^f zzxKX7$Dl@JvTDaiG z>u>n`KW;qhtTXX_ED}Jkjq8mztPl{2E_T zQrD>Ek~2D8f8!I3@u=m>qbiF!4%*mvW4~pvYC+Y3{ESxjy85)&H)p>Xto?OxjUy5t z;Els1i{g>rQ%4|-?nHzlqc{+`AURBge48a2i!?U)8tVLd#P6~-B|EBhOYq40ORh>@ zd|FBklHK{k8P?B!==AT8F+k0_@WRLeqY5nxy4~=av&VV0m!+iM|CN6GyS1Hu$Qa+P z{+45*D`x?x4Z;@45MV)ub<4Z+%U=7n^um2}o;oNUHx>%V8nM_2hA@f%Ib>(1!-9<5 zIAKZ-8J4tiC^e)XAV^#mu%_gs7P@#D0b~{muk+h_W|EpanRUbAEe-L!G@CP~SHzuN zli8weki4YXkSPu4G*%i!Dj?f8N8WHBV2+n1IP2H!+wY1x9OJLOI=Nfd&Rsfp%FhEX zgndpW?NR0?`iD8Agu2uNH%N8j=Oh40>NbQhab_^d1dQ>mQM(WWyO1B+w%6_cPFx@E z5H0b&v(N0fca=Y*ZaQ5Vqx1bXcCh;sJXCzjoOS`Fn31eEjF0 zOOc4kjvw>yJ-Zrf+gUj8(pMc{w*AxW?Drh4+w!FX|74_4aKk_y{BIlVMT1{*IR(E zY4+sN5Z&0~O3O&HRR8qEGh2_j^~3_cF*%jGn9WPrtL@z)W-g7f7nNPzmho@LZDI$5 zl(DAcuVi)EvfyJJChO`p^RY=sGJI!kXkIO?ugx_Dfl*Dg#6cz^w3fr^6p_k>(~9Y% z&C?cDM&zXUoh`FF7j4?5_ek^2oF(mOxfqgm3ss?QHR*$QCcb~^vKK5u=$cEwg(b07*dV>~}9-_ggPa?A5`N-KQV z-*m^y%~Y!o-gCDgPs4L66`5EMY!EZdA@mguJ~lY~G&^8XO3a=WwIW@ChthaQ8;1=V zGOVv1>@agV8PzRVIc28BFT3&%qtK>oNxZ-j@x`nSQBdnh-!$q^JAGE4gEqMGJ8i1m zt751vGSD4cT9LXuN;SrH%~)zUH1G9{sS(kyKe7zSw(!%b(MD< z7j}S9h$$aQtZ*Zit@XjHzF0AHZOuKW_M4PdxH;;Axi3akGvZ1zPNHg-mPXNz$UngX ztsG5t&>CWjk0j5wykVkk_UH`|;kIx4gDdg=Uz z{hZ8nJOY}W02PIVV?=L;*gvU*jz4uoCeWAKm}J2{T#Y{79*3TB^8Q7hJz0lzRQw%( zpJ*L12Ve6Z@f$2dc?xG5e8RoU@YjlXZ#WUm^>aH#5_?#iO+nd&UM(|Ubn6e#zCO1x zJKNe^T$y{+af8!I>Kk7~w$1!%@@8%5HP1eH-ch3uIqZldk3a3yLp$4p+h)U6s|~&G zg-0$v{-`5QJYk=P3FB97E7kTtZFHei3v3ws*{{{9Lr*$wcy{CLf8Fun+OTK8Ti$&B z@5ddm&xk{gJ}9?NKk%lj4@UUEOcnapAD(>uw+6cY=8DWij_8xDszZEx*co+U<8bL?#jiK3W9|h#Srbhm_x&xjzW}^KO#Xckl75*`{NRwWHHpLZR?C zUw`$%`|t1FFT1$fanau&PEF7H>buD~IoU@acY=h4;s2`2%1M(Z5AL1WWANy|oqPV2 ziQfl8`o1If6Y3b(K$~4FE8F(sbI-l;+Nn5F$AMroTiCvD!GSzNrN*MRuo{?4={cT#Gw-(f+= zgsfLKM@IFdsLlw?K5#(VtNi-8A1yy=VD>#nbnBnt#`SL50_0`y3o#0$BF8(5ZXqL( zbQie%fC2%(=x*3AaoFNDW+dl=YB-pnkXAzE}{E}GDz-;Dl7;TbF^jL9G zQhEm^8sf2zS~cEqLLO2?lP-)8BYk?iz8{lOQL(XW=XwX6^sbcD6#N$Evqa4>Ja0wG zrwnG4E}HQT-Go9n3AhUdfSRj`!(>nuzNq}F!`agqv3I;k;X&9;Yot!6K4btUS8NT) zxVyHy=Gl|J`2T*JSOc{+D;Lhc?$5G*{lB{YKTreW-eHS412kh3fF)A!G_o+_GOa}a z2X6d7bqm3b6TaV|WgU0>ZAWKl>%X5=+#=m;)HY1D)_AzNX4|%!APW_lWfL8K45Ii1 zbB_$FYDo;+MZ@ATvqARke(rV0by1`_XXg`czvZMJA~Zr5OaG8>qgr)oC*j5doqm}oLDzGgO>FAjM)I-?ObxuD1xUWBX=ZwR9Bz4;RwufKL z=gl94(x+0%`)&5@(W4H0{Nelavpj3dto;WJ2nK^lRaDd|d&*BgwNvzGpL%M_&p(}b zGD+AUdidchSFF7MzWW)ZAp(%4+U%5-Jg#|Z21Y*XXuuMSTyWOq^Tt2kxgZ_Cn)vyB zci!=@q~y$3@`h`ISy@@z$_D&2xvsXl zuC^xND|LTyPp7M1@lO3DWy)qWD;Sc%$_H4=^f*+6c zSAVJEG%opiOsQ6M!byAYbMgs=+Sc#CS>|h*3^5x<=00@Vk;fc<lSzUAG_rLkg zuYL7DK7Q^e|2U{=i%)&!vY^BZcb|hby1pOE;PxX9?`8|Hr&p4XthbtY=nr)L(_eGM z^ImgmuhxJ4)lcTd#wf2erZipWeD6g=Bm^^|+hw-u7;!rNvs2&fmZ!B-S5ybT@7(jA zf6VibKJA0&eBdK!kjEZ<>?0riAZoL0zXRm1zw+fTE$NM)|M~-7^3s=m{rf*dvdGU~ z@F_HDS69ajK5-2k*t_2Io{rAWn{K$VCD{V@3$6OT^UihoLy65n>3S#+x{c(U$jXPt zMkKKEM5fq3kU<^RZkm|fE|V-J_~qzu{@3YL30PdNix~JLE9O7ZX0>m6?1+sYh-#Zk zzM^M@VzV1ZuMk#JR$TP2ge666IF3^RehE>pqDUWJv%{a&Zro(Wew*(J>0<#c?{5un z`sfD%d=9z$?(icIj}C3F{NTOaKOHLk;MTq`_e8(@Ghdc+Vsr30iulkHLNGawyw0Y( z3Fh9F3@cH2=;2y%SQ9dFviMolrlvhYSua}yU7=EFfN_Q1rhySFQClta5 zH2#&2aQUGbjCdy4I5bGt2IjokCQJ0`UKU;E0Xq42WP&RU_3-}d`^DdAInO>L%nd*}Cbwk6}K z?w)wv%Q5}P?KjQv zSP~2^JLODV|Bfr~=Y&%%874Y`vN3sT+=hBR+n?fDuYbcQKlhEJjy_rpG)tE)edC+n z@XoW}_4+rxMQ;7l%db4~Rd4A!^6c|I`dJD$s%fA9;+K}~chDz4`{nb_M;z2CTm2av ze8?exxa{&DUG&qhedAl-{qO(2>d)7lbn;1jv_ea4L4*ks$|mGE4}#x>3jC2L*T3~c zKlsplPyhM%KJmG){rZY){#rjnE~UI3=+paBBMSnRclIr=xtHx}8F^nv`V4>an?kP1?L#OI^tJ%prAIT@D$&luReqT^EUa0`ZB{HRoqOYLJCn} zj@OoQQM5v!y)E3BhAybv>@U=Ve7bK71E=(R1k{NVx2jH~|p4JRIV>`8C=;Tkx9 z-S@j&`Y5-F5+4VS{`k)>z4(t;UiRnf{`lQjcKcmHm3hedKm5f{e)6SPc0F97W|`oMi#8HWC=Q$Kve2`@SRC1?MbuK(Z_w+~oK zRxezFm}V5C@Lbh}L?Y4mfAAw`zvrA(N}2qk(dgUW@s1;oe4h7w4?6geAN=UYJ-xmB z%@onE_l-Jy>9S>q9(LIN`|r=t4JbmiZrCX`CUztsg8E*fu>RLC|9buxF8ln4Pk+}N zUv|{t`~C0#eCl_X-}>PTemFWhKBIpcSfyV=&hF^v^)C{b5s8d_f6>IoE$to4pS-i% zxqGDT>wT@OxFbxe=oB!<^^$cI#jA4w#1IT3V)_%h8D8Pfd?|d(IU_H!Y9o-Tg#)$B zd)}U1x+FF+e&p3xjb!zHZK6`no40(i_jT{=`SjWIKm02boSX9gA+ilU5laN(nLwXQ zI8)vD+9Lmd4(Q(;@MSd07s*kHIhunT(1jg;RLVlB@01}XU*Z@d?bw-->+c5m5{smT z9BRT{xziZ=j*9gV;qD~F7zy^}L|S;h?yOR8PduGo`j3Ag3(>^*1iois98_gY4st!E zG8n(5;eTHE|ITZPnU`OE^=n@H+Rt5Z!2|c-uR`AP49Sg887CSRx*iCd;lAp(SsQl! zb?*Ep{AJwDpIX|>{yGO8{}TA+9DPtnZq4oR%lY{u6miPitlrK`VhG9Nm_Cz<2uT%F^A;~$`hvH-|D_3S{FWbIy1FPYA@@~;e_M_`^8`ek z-1^7wUHT;F&qSHohktthd%krSP1%K~uDoomX3jtM6kPfg?5Do`7+inNRoAWM>o>Q5 zUkj*rw!&cqdGKxy)ts26MG9rmk=9i|ef^7HxLj(qXhGK>fAxjuAG!bd1WeU4bDPkx zUowCFmTKUW1M}5===PBvx%@<|+B)>pmFqSgwdDja*{c=0WFWB)(4DXt;~B)=M_>i$ z))k;9Tu5NZ2W?hV_i>g_U-Y$s#}6>JeRq6u$nNtwqh`Pv`1EJ3KycY(kIsAWf&ML< z$A_K>{_=MFgI8?1>58%PrO8J!0CSik(2ps^8MJNUYiYC0pU{Z2D4<`qp9#D9scU_k zZ9ihGdJ&BA0XRo~1tt@pWv>AU`nU~=Kj5x$Z~)=UaE8*D6Id0Y814)Q@MJ~Pm+pO2Q5zl2WHYcoA}j_WFogJ%HD^7Eg|Gj~ zt5>ZXdgm+KTa(FCU-61>{^xhT|6l)g@4fdTf22&3UjO3Z-LTr7tK(JsZoB4j+iY() ztw*o9y-(%drD?$zLLlzIL2vo|*T3@hZ+!cwzy01>?Lb*K{CSm^^%8=HzT2;ULe75d zPj~g#&({5X_VQPs`|(eF{Bz&F=zqU@JYpmC-}g_V&kTQ5M zzN4X}xo)8Ocee$a@5p9fn7IWSsCdznD)9u4#%$#-8XKLB>ioHQV>P$!wg3!|zxm6s z7CH8VU%>V`-oJ3+`NxK}p+Eojo-r7lYDG+p)grxoRs2Tb8m$t(uazhers;2c!F$d= zJfQXc@ms(ASB7%NR0=emR*QJE87k z9bS6U+TQ<}Fe|LJ0`36$gTx1T#L_EkrW zT25cOVBnl{aIxcWy3yXWVLV;UE^N^TAB_F-E2&k%+TbN!U%!StGDX3~L53NAk>e%q z4m21x)a?uNjCXYC@7m}q=#-+AyaHtxl*8n@N=(G~%QH2y`H=p{mpFlZBoVZNIWBKf z5(K6=UD1iT?nUyD1f}5vH-(7kF|HivxMQ=291(A;~`XUKAcIaV;zUw{j3R@eVc;xT@_{Tk7&`McaDGH8VoaX9ab$^{xTeUTR zx?w||-JbF`r^m)9v%v?xwC=`h)@i9%eEbu1_BD-XH(uE;kE~xk0MwQ^;D8PikGl1$ zA5>a*-JjQLsaIX_@zbatH#O8_u3KpSU9~_Hel@$oZ1772q*(t60%JpzXNsz0EU`(t zQ3Tl~ulcIpZqKr_k6iq-dy1OA?6?CGb(KoXfyXTcE%mpbUi@f!Wc3!zs?N}wfwHnq zumZ;#Te}r&QDoz=78C;7MN~-q&NHIbEorODl;a+Pgq*ihW{faMg%cc1|mmZAUA;6^eQO1 zmaCMat0zqBPYc&xm1+Iyj z(rd5DPE@wM{+#i_tKxSRi!bYnfBXMJ|M+F=)oVa`5wq*M=}PKJ&N(W2G{R$VXfv0E z^dAkIvH%gTT?yRA;~k z9ksTcAL{S#7u49G`>HQrx$A6aspI z`q(+_m$T%w)Ax(G{U!VGW!Lp<^Imzz5l5c+ie9bnn#&%Wa`wGneAB6?oc7X}z3xN5 zUfX%nr~cX zdEM7fpC61L^ZD!kcGutkcF~!=u>R5uqwBb{zxDfT|8nUsFZ%J1eslSsul@CB&pI&f zk01W=EARUI-*3O@RULeNS$_w5&-&Rt_uP8tAK!mS94{-0h}~$Kk^527w7Hk*&5^Yu zEua+l4VFiCexzL25V?mP1CEdwO2A&&0Y#Ka&YPC!_^BHjjb@9fD^hV9momOiGsb{s4CnBr!XfNVb(y-+2NXl9OR)h ztb0tm@`u8rsGbQrS-)uyee!}zvbAT+=A}2^I9zIb>iwS?IAm+=J~MOC)%_oy7rOZJ zU=B2%0}Cm|JVoYj-9(BJP+>4AB7lm>-zt`NZijx!s0Lp5fGEe^4YFBlyu zX%`>Bv8~xphzCx6^Q?_@mSW&s1g5kUM6!9JG2zn4{gVxp7!kn(S7u&y8j#{)*Iq{o zunA-aD^rf+}$>;v6UGuH4u zf4DuP?SIB8O9G*#r{L`ITQ8k*c4YqY{r6va=s^pSiD2-S|NO+4uUa>Q8UgjV^mg(a zI)(gpPCJuI`rUn#>#-xf|2ck46Mj9%JHU2tUl@4yoR(Y}uID!AP2*XQoU8e3H^z;t zT7__xbg9j4*IHo8lDg4I;Rb0GWwIN>bUT;xC+00X_^^YP^~85L5-+`S6#J#7h(_Dv z4wy)G?arTVXM0T8>^J6V-NASTEG=x)4$Td|hgJ#pFEF3@*%)nLdVy1yJ>CA=jZ4fTQ@HHaxwFT_H2~Gy&>+XFBBr_6u(JgJ~jV=O{vZ41Y(kryvrjsuob5#2DSA)$u>6)u6VMFHR6BDe*`~7O*^;K_|A~;!IHlUhKxHbjtA00kXw$k zN*lgWX~Z~{A#P0;4$@0;5?d`PqCFJ!lqXx)BasM-!oiYFl12Z@!pQbY0(SUaCO7#k z&x=^MWJ~US@5Qgj+wu+8m&k~ftONL~TI=%jlYuO8Cnxcp?0C;4U-WUx!XHLv8aH zFJ6A!yFPMqi#C4a_b+)OCzE0R$ty2k2XC7fp8Rq++MEg#<0<5Av-+|>i?`3z0Uc=R zOhWc$@R=eJoxQge)a06-_DLr4sz5UOggkP)o333 z?`{Ftn{F!Vk|~BJ4x+e(eOHjgn-L`ZgiK6=&ZcjB7k+uI$(7?NUS3l?i{K~Eyp&x; z4)E@!@iEMD3;2^jOl*x%q#=F}ujcFZpiexfs)=>SZFh{N6yWjZWxj=aOfT;#PO1Nl z-^($LI+wH5l?$3zI_;7&sD)O4Ue6hS8Gdu*09Mg6K=X?z}cJ_LpqSFVpR3#K!}M z)e{*%rz7vw?B)K*{|x%hn3r1si=c4cI6i>TrvXa42s8j7q&gs}@B_hMB!bjC@IpkC zShDruGS4^Gf4g%0a=mYnzieqi%LrP}KPGhNUD1JUp<;3Eyx!2F<4bQi-gnpcd%ku{ z?d@L~dFevv)ycAlnS_&0;S*Rarno5Qj|`X2pt&Tde{>58vkndsTgElv@T!u`hmRvB zO!8Y(T5gb4$f~8}^K375$0^4-qn7oVoNk;@Y~z@6p$`pKn)j4Ei=c_C8>9KdTDH{w z$NiCQ+l*pq^P)vqt|a0yw1{Y4w{F=mFV@!?SCaTb*&N6w=FMAxGm&O{-n{vpon2F& zJx@w*8>@+8TKBR>?)tB9T)#DN+-H9DrMJBtp(Rdu@rz%4bm!`;Zhdm~*s@oiwA9#m z{Usp6+KzwotCoe0@Vx!wkNoNHs~&o&c-Tot_xeZg{Qfupveke5r+)b5x4is><4?f$ zlIM48-1(hvUx$)D^WR^2`$;F9@FMIletzewt8RaCb$awr(&=UrYRy;yj=Ty5 z6og*}f-zwSo&ey0{0le?$*{Rki4>|{fGjiWzYF@KPS4#lXzIUNuxVwmbn1o`@Z7+k ze1ZI#Ey&Jot?-!}D}gJvwQRB_$vUAQaZO}fCr2xl7^56v6n=-me#8=)(5O*>3<$Ws z5xC}p?8{2Ed{CPR8+l(eFm&OCw&~md!3TPtdJ2hp3g!OL1G(H+FX=z$NSotcF~YGt zYpR6!5*j9K*b&3_Yxc_$+HaTYw`7e|Hv}K71QCEAroDgt>z^2>?yw+=PdPUV6DT3; zlurqzk3{^5fFD82(5f1^dkD5bQ{gHSGeQ|FNjpJ03RyUb!j*GCNE6B?t2k}+-1i}l z|Naj>9NV%ro6SLk4>FEIWBC2Kd^Q!WyCbGzWhn7?xu220&d=Fj=Gc|-dTEK3FI)nD zox6W_@gwQs)mz9fXK?j4j+N@`effvq4riXe%Rl$cYghg2;-B2h-ah*^oE=|z>|%J^ z+XN4EKwAOD8W{N&4LEedF*fmO<>XJY)3|GP;1b`EH) z$NuEEQ@H1%iyxa5Wo(!4`&nIp-q%Mi7`uIIS|@gUlkVOE8#SJd9ErD5#O1{2k%U|{ zCDEkFdRLk3XzJU&RocC!d2Ef4dAKh{A@M(+*+Lw^z$yeL#*TxAu_`-%SuK7}y8P&}Ih9F&rU1E@mnp_E~w*Z{6JRWKKt+0&Z3Q04M?dyt+sBVseWs6WaWumH2(JYUSf!C;!LEm3 zUDV}qSsEFRRw-BVxne$3s8z-_Yt*Nu|DSbw#MHmkwyF}CSMn{j&6NLFzv=nqPm7W0 z4Ilh)bm@|=dA-q=7GN@fOPvyN=Yv;$vHQNGN51){S^)Qq42(cyh`iy0krh{q`ArK* zl(YKWHer3a&;I#>+VjG-6OVrZs*RX+2OoSePeo*E6dON=7|FJD9g$HlyYvsQeATOv zhd^w!5U=4s%EQgRiojh!WuVH?E*x!@43RYO8AX9UluVLDm>HDk8xsP`$9za8%t|Hn zCbF?u$)z0v}=-+JqReDMp-2e4Nfe;>H0njkz*oSA)obufqY zjOUj%e1%b`_1UT*h?+`o%9UYk#$$3q8 z$~q!Y=oa!B)@{LDu*tIK~em4p09o!j1@8ajF7ez)b~q7-xV((|Gt zcOA9rH3&QpTOPWaqgz$W#!jiODH4P-S99K1P6)};D9*WqX!x2Da`ea-0=L~zUiQyo zz*ie_Y7?4M%Dm}~69*p>F6587;jTHF^{*-crfEp`fc?}~-`5wIAL;WCYQfKZ>8tbS&p+k`N3UPMZq4dd zPd)i0vihuDy?XuHwd>Zd!LLs}@dQ2~Phs!;`80L8G45pix~{3`Jz@U=3$HY*y&CtJrQ=D)wwS*Rwn}+8pce<=NZceE{IM z!j2Y0-XQ8o8uBKVRP--FU5(gF0sIE3lS`pA0)J`Vb5kQfnYZcuZ41xuUo;MPL(f*n z=#9u=bThc|u^~y4!+oQBlU|M{(NAAHEc-}&Bm0kg)($KU$) zx4-#qZ{50e>*6Jg|KqD)0SG(sWRjV)MxO=^;VIXTh?iTS^oZWaPsy<@)<)c$2guY3 ztWId`nV35KEiIXIDaPz!cidG);%TIwp2)x_0Bur}q!qjY$br0@KL0#h`g!v{o_-57 zrT0(2?e^(2XE#3b#H92SqM?v!i)nrlfIQQIyXP1nk4dIKrjFE1I7N~#*o%(j0~(aJ z+kMVc_Hu3+~n8I)ao`JALn|2-rpN> z*bbk>gAO8Z=+QY8R@KxqNF<0(rI|4VWhLVyM_z!*O$B~uRIedsKD-o($z?uCEdXQ) z@YPip)RqM+?@W%~Rfu0OxL}#Dv^)U05*;p7Fo$~wBB62bhU4c#b)-|IqH8sFPb3hC z{E7Gylo|ZwoMlem{Z{YemDc0KgJfYus-i@y&^52+t~)z7tY5!iVJQ)6yZLKNzIvN; z`qziP`Ud^FuOfDoamIj>_LG8$xQL?q~ z4C=w_|M&VEZ#?YqBZ8se!bOXgEnkMcy}f<^mHR*c=wpzb6IV;7QimLRh`U^&`zNEh z5P9Ov$)3eb5RycU1Qjm9?1~m>orWn-o?IjMj8+OBa6s*W2g7}Rfl_hvk|i8t-=EE- zTZ8G=s7iG`I1wHx_sn0gc>1%SeTdE8S9Z|&I7=bYH=5gCX@REney=q9K66oJYm^z0 zbSLDHO;ggoHf9@u7vUBO0wBDA?7L-?tEi&H0<@bpneipG8ZY8m2i@GB3oSsNg&|Et z?mdZHjyF0y`zdt9j^90jjD~)$xHx`$$4&dYJzIX!yZ*By3*WtM=?Lrb+4`n(0kP)Z zGo*Ug1Qs#5vr|+D1StuG!~Ss8@KHT2JMbmn^;c9@uByOdIud|t%_!+7zjXMNQxWOm zxXUlg^p9>k_*DZJ{BZDX$?z9n-}%3PkNodNvCU-}Kc3Y8h=}o>1t9Nx(9eL8pCnK^0P}kAN95a8xe9TnK_uDT$Hb&Zh z3Jiw4jmV-@#YF(Jf=JthupF+3ff6#ZwUJtYhZ~L;dA@i?;{%5|WL3VBy*k05zx?qJ z+orkf;YVW|H>A^G_r?RE*l3;-^~g4s55yCx9e-ZUBcD4h@J#10o;y$CnRch5Ko>$@ zHcsH75Lg{*Jk#p!)@L&6a#yV)b>YBB?k<0tWE`0Dp4dQBj|t?hiAiMQIzrAAQcdaT z=PX}ZUUVu{U3U}wxO*Yv6tjr;>yA{idCaUW&}ep?;XrQzFzo}oxljkA0AQLKbqpBi zkdmk3*k$RrOxV;JQkPZrL||mcQ}l)#?oRr+^iP#cisQw-D3-r>=@Se5l^1S2==&p` z0~Np|iMl}D(3P)obPMW?AiaFRFieP(E2J+F3IroQWaIYvZ9RZcu}Qo3dEd>S8hfE; zjfCt`pOZ86%J>J~pPxTJF*bJOHP@u8-Rt-7kG2k3`HbeJP0P2{`%BZ-dA?KFOQ{bgVN{@oLu9i8Lpw5%98bt46j z6|M{O7?kxwR(YO}vNA)EJxSd`aIHpgO`Igizd<6d(dkIQ?FT7_GR-)=InM2g>(8n>f2S(w|zc5B|s4VSZ=SsEySsX~dz}dcmhHzkm6|54HXMZ{zv)O&9)T{a4>w&fOjV z^BS!?1vS3Xlranw&`1Nyb@&mhDm3!|hZDm?z1`i@AF;LV=AZxiYsb9fsob4^+@z~H|d1P+SI*Op#1WC^0vhx*J(Q^|Z+yN4la2#AIY25-$Bu z_r}MUJalq+>^te+g&U8&CfhR8Jb~dufk?$u5fm81L`v1@Xnx0tI0hnt1^+|4;_mXi zD>5BgWw2Hp)U~|1a#`Qm@5V)sx%OIT%jSvJWa+-I^`7;q&_Q1scuy+$$QqN#Ccvv2 zqG@>AQ(OrEis(9)t-<}kDT!Fch z4#{EL+sXe(7%6uXd!O8$O7}L`qZ1X2N(UsC4P^P{RWCIWX+I_hG8Mvs6Tgw0zYCA1 ze?YNi%DmK&Ssd4bqnO%AqcvCUw)^)+jO*%l__f5Z88-ZWMuKe=&3x;)jUU(>`Auw1Wd&VnAp7*>! zxqR&Jf0yaooa=ev(C7ZA?|@r7-}sL1FTQ8t$1V=1A5VVftlpnLNYVCPmYpXWg=2xj zFbU){6RFl@Ln9CU@5$$kFK>C}cjkZO^{Za~p*MFtvg-IBzCS-Y3W5rZmrQ5~I*&@? za}FUQiZX&#kX0JdO^7+HR_}$$np8e;aTzvP^6)Vwz=tvNXVMkNTBsO~wL9xoq zN#e=6`Mw&@nsNQ+G48wG1Dhr6=@w|huRYzud$4?YHFy_Lj(bWwv8(Keig+_^`WE=r zz~Z>mI-@1;PjgDo=i=TbwVOAm$d#YA*U#i~>c4rgvhje~pPWZQF=pfTaBV%*L{HZ~ z>ou&hka|Q{ga6!&?Y{^6*>kdJS539OE;Hx%yV`1^-J(Dbhzn0?e}F$AK{63nl{qk4 zcd>Y1>wI`r`mm)qLf zwrtt|>OYMYTQ;rCM1FH`?E}BtaMd420+)2X`J9&G2@@|}OqZbxK=CFdv6|O}u#2}O zp|YZSS)+IV^gn<4#S?$}lEuHdDe~l}uYLC$Zv47DnL zZ+-vDYyNWaAFeq5gcozm*ChmUE7PaY#vU{KOf_TQn*O+VwF@@S-@`4?gkO8Of%jPP z-s_>hJa-L(Q-tK(13I%*%{#@#C6gf6RO6Ss3Y&bPIqrOR_=UeVf=ds~HJ-K8P3x92 z<5F^GOKSvz)6n4z@O0MJR#r&$n&F#NB76R7>bulaRqt%2o5$}XEuefmyv0VN1yhEb zn+iyE5WX*=N0mvO00TSVPVS5|j-W|&Cd039WtUvgvIzvS%riu$kqWfl(?z|Hi;7K- zVHriH0hWPM&C!AgS5~b>PSe+%?tkjNqc27B%8-_h`0~-t)@>JD0B^zl|9(&G?!S$W z)y5Zw&CQP_F8*5Eqv66kf4Ke|?=R`sbYA#>{(9z~sgJF-tz&R#8zlB$_{cG5ugd)9 z`d6;Fc>H~_&we@a*$@8UfqQ@Xwq*gWzrU}ut4juxH;)O(B0U&46JaObI08QDz+^)x zd=ZT`4sF+rSr6g`DVYE}9PeMUc>Jt0S%ZIb4rzum8CW5aSyHrXXd_T<_*H_CO=2JS zkv`e1=5B9+Cj8p%O}g6(oPB-muGc7ljdvsrZ7kE~5#IPtpZ0mqS~jvf0yVsiSE4hp zYrLkcyAjTQ31u1djF*!?$ZYOyQk2YDZpG%N_tfcLq$4iW3kfm1S!wpl)0?ItBDPmg zdLt>R$s7$l1p<06MG>XB53wGMn|;(&t|tz@)*QKWcHw>a0P&!8ql9uSQr4aGj&NKu z9>gt?Aka*1bc*Bh2CnL3G)K@BL8F0(lc+ppaM4u_J?r>4)WWZhrA4+*-3_!6A~m?) zH~5<1i2^ZH14#&}4x!+sLBp4@v_#p8e8T_Npi}*7`XI!ih!_*$fMXu>{QkGS9cR7Z z$}7uj`q#bbz2gskt@AJO(Vtwr<>mg^e}5-jJ3RN&BWuVL?$%Ek-np9iKiSqkyyc-6 zyyK}r`|A(<`BxWw<1@c|^n;Ivf4=_yFCBplnYFj738d~`Gzk{5c zn3yOO3*;iF8s#GgpeVPbtA0D5(sp`#1d^a`Z-YbR|tCLKSlhR}Ffr`x@c1Up5 z?z-%pM$FxHph@9Ji!`S)1uD9cm;9?@#N1RW0y)~Z8B}niG_xY0@4hW2Q zKrwd5GoV8fc1kJeUBm`e{B~Q;a|GDl5h!ug2`0@Ns4wprQCum;m%kO&rh+G=H6s+_ z3qmkT0Uh8{=<`K%GotBXT@U>zcHJH2d4J4w`0X*%$!c1u^wu|xKmVv;x%`sLFV9Q_ zSH1JRE&ut^eC_7>AAVo=;}BXc$-MMH%beu4P_M9~CEGeiGQQuuW6gC>J$`HMB)`+R`$fk~cr@Ai`uaLLI|(EK_o$5mPvB2LU_egLvem&52Qd>>D6xE#bsadxi~i*n zFN;m}eApUkhZ2d*`J}-=;_iE`fkF6PW+t+blo8FQ5VJb_Iij9?E|1?Gx%Vdg+L2b; z3&*$$r|l|#QKw1tSfkje(TKG@Bi~$+8@==7DlYL}#|PdF#nuj`!)FKg-4mS36QfKa z-aMzp*`JCh5vy}xUO_vi>)Cw>z&#WxS! z=UM>jB98&(5e4%ZkzP=LW4D2elr)p=ft&(TGU_n>%Dbx_War80>@}Mvz0G4{1Y|4? zRl~Y-ZK2I0jpTC7frF7!UEHmMO5KI30CRx^0&@fqrT`)$mg&*BZu~ZW#aAbeda_`f z)`)3M_yNQ|eL<wN-&y~wuZ)@ZM4ue@kfJiTl5kBK zU1N!sO4)kZ7cX4#_^J~w`swe_-@hK`)PrAJ``SA?P-8-1RrYE`ED2`9a3g}r1c8wR zpYjd?+7gmQgS%;pl$h1K{Yh2;_d+NTB_Q1psq;>FQU2)X`zw`0Z@MLu&4B^S=ko|= z!P2pvo*DMJj@zv8PPIT2e(h9q{W}ky`f8u@yEik|Vb~P8x91o$^M^U^g&_eQGsOs~ zRIrojtw|Vfs<`)QHrf=+BT8vRm2(#Ap59RZDR_0xB4#~cMu_X$M%=dBnM*XZq4IB+ zvt2+ZPX6*D-9EXoGgoXL`%G?udayShh#Y!?L70Z@hh%MJ^*iO(h7Y9VWmIFgHX`fc|rP_ur{0ijiD<6EY{l5FQ`43zD)$a~0 z`+LtWA~_TO{xn?>7lZn1@A=qFtle~&M6n0?_fa$K;8{ZR+UInw?oSda5 z$T}s}z$(sq`PmDfLMggTLu2gxxtreOBIP8QQZ_qXlZcB~@e{qGs&1t=SwdQOL^_M0CueyTucNcvR7EZ*qpXCX^{FGC! zx#}w9De?t^VyKlRlcE#d`IGP#86qVjD>WCe6aW)*V+6>AwUQHMW>a(@!zqf(rczTV zFH8Tzh1oZ~0f!xV{Y|BuBEWD3fpIQnDC?-^_MC13y|1r-Pc(qXo$QIip9^J9lNwCA zX*4euXAD^i#gk_o-LZrrQ)rI9B}W*FSgf z?Kdr3v7)=D$9oVMIY@^IZ5KZDA*}1@NT7G|As@K#U5731w2E4-3awfIEeH#)ZD%tX z)D|*(7)oi?L-EXjwBWW$O@}YgUKD|Xs5~;H5-{UGu(PDlX&@b`=>)W4!t|`McDWpT z*L#B71|B)_r5j%I;sx{Pb#-;d<8i7g&)8_~*=Lw3b4BAMHofD`IDrdN^rj1$MH^+i zk_@1^?Ufd|{nlImpojQ3b#;9mk{kzN*Qjgi; z7e~sWqhtcw9{lnKw)g>Xt!A_dsC)P7yuG$)yd!y;@lW?X!?m8J9i@D4j`K?JP7%zy zy=`{y0YOVj3eRE@FGx49aoIZI&TccpFEtzT{V4cFiTvu&nInmFOmU7>B=_PyTxwy8 zGv3_xR154~_=UToSH4woswKUa@mYNV>rvC$2C~I5=G%I^L+~r+AjE@Ckc0ag-^yiABqFu*yqt&GGGON5!q(jz+R;y0+w2TD<{tzUHRMj8(x|y zP@GqRZay=YE27U+q%RIr>Esk?`Q)+QScj=uK~2a^HU+zU?EMzI`fb+-BU^m{_jaTh=_D zpGeDu!^T&-J)8sUY%SRtT(CTE`2Lx9{+xDRov3{%SxA@&TuZq#abNjd4pRss#lllS zl1T{sLK&jRM^SKq!~sBHcoxEs;ois%)JKk!IEV+NtG>r=6I;ePxzVa#cj%rg6V^P8IXCS$3_6PxgBPt5{*tXzR#<|jV!i9L3S zX2HAC0#ngN=a=T5ydue+VrcSC3mt_)sRujT)OCJ=~vfAr;cHiqt;AvggTDq zI0ANZ9D@d$e8u;Pl){n**hNK?PF1JW4Qj5CxA6*7KMU-ezDD#+0CIPYn>2`PidE#9 zH+i{^_JU1a%;UzOoP_ZB4K@818Xu<@OvvTt8uiGkY2|qNWy)zAt)CvE6O9_LZr2x%1QJ^(Wqpa{kv zTMT&`P${x01ee;UNWR@}O}%MK_5y1gi1u&yrDg&IbfQ^y{{iU?x%#>Jdf_Xz0~T7{37m^(;IYu6d1QJRV2gYWQXO4A3l{Y*Sk#SuKK<-ku()Tz z;(6FRJGz4A;*fc4Tt74E+>tdd8VkHKsfB1&MC(Y@8Q~%j;EPgp$e5$Hr6r9de`gWF>%s-K)vLpsHb*nrzJm^gFQ{ZUqG^p6ev-Xg zar^E~dUG#7iu(NK4#}BUjP6W6$$TMYdozz`Kc?Es#NVXP_ufpmal?i?@3_4QzxLh} znCr?OuxLEc8#9Ei2un3?3WPxwfsuu@X|f1*$DtQsP$kc9fL01oc^8ruvdr5qhM=)5 z6Aiw^)gg~i6AG4w9BPaQwj$MdfXlC{5P=Rf!*RNy>A0%#HgT93H-+zU=Mh$5aMU6X zwRqEtizBJpjj^re0Od4~S&yZ)MB~vpc!97R?8ctDyhm<=e+1zxikI#;J^{(T2qU>D(6BY2gvdLj>m{E);Ww*(KeX);?4~bln8e)p{2GK-^e=5bKbZn)e8FgjucQ;p zB|OU$_hVMjPrkN{1zCp(9FZ`gi+!bkR+FnMp%+JU7&!P6PJ}py!!uB5E)<32ha_M} z7*f%y13dbI7{vG<8GGPzNG_8&tWxQ=wtcyB(n|sx=lcrPa@MM4bi>lSyNa=n_&@IN zUAJz-@&nSH;cztW4~13cOLyu($qfJK8n`Ppzwxcf6hXn!_@+=bALapKrfuZ+c~RWh zQq?a``(E9O?BzsO6ZWF;ssX0%c z<5cEiSv2APs|Owsy!N`};80(C+jt@o3L-E?Tx{!@r=dubb}+IMAK;eX6IUM zhmTgkYuYPNs#IUJ?r?$41D}m8fS!nmtA3<<)F^@jQV=4jD7tx7(-2M_J5fq}sSNp&%24^ze;jjpR_Q zq(JkTL7y*75lLCR01125_Sc*cxVs-lu7Bg$Y4067>b7cJGc$2>B&?5CPCst=MaKfK z9e3%anZcp4(UC%C!a>M}hFL~*?_?jW*1w-2I2g|hGCO!p^3g83li#IbzoiKZ(*$L# ztkzum3V?};E+GvSY9S3AgE7e(NntgxQF9AQooSN^g#OyqIq{Y^;*jUvbaOeEO{dfF z#PnEmUZ_od|27G!XX7Z|?macxuYKTg&$ze|iUsq4I6BE%iD(;_f5NXU=9s$nmdSeh z)S++(&$jq14pWWidqxbQZ7?NCPBfb7I7XzAkb6j26;ocMqx!~N^|W4z4KXG#a(2-=4_QY*)Iy`rHq4?p;dfZ z(a>wULAowxd7%12nr#d~m-!(dJf*KzV_4}0C*c!C^Ul?^X!Nn;B#Od_ZVzfV6jI&3 z>hfS&OmejRqXnQ?I9Y|j>n1fP6T_WXzy(C!z`g|`vO_kSjH$EfjD`Py|X2v=4#S-0%=&9<6xGl zPR3jfztxE`{!+2}TuV={;&D`hVAOvCXn4lKMOhk5(hXV73;gnGD>D(JFTr0@&pKkA z?P+?zR>_1Kr$s4bwzFA4!=6*TxpO$x$mQyq*lSM=rX4MF@4_!JXt`q*kgH~BWkZKW z3{b4b2+Zf`cz^rE1Sq|Yk%#;4=2y00`^ML~P`-2aEmCuWN+2@xn#^dJqZAd5(ta%R3p9%G7#yOX~ysju_|3R*(X&^7<9U8bv}QQh>p791Jiis2&(!RLwuCGL!6!vra_< z&?c<|)dbjtUpqSB|GmdG;n%;ny?5biGr}(nRhd|YMG~S;i_#LW=!wP z8J|3PQ8Be3+#YT69&@YF_{!XczSBJQX|}*#hF^_inZ`DBoK+nfe5ay2C2-RKUOM0x z?2_DnCHW(n`iW5$EfK{9oqqE>*1O4y&-@Jsq=1b~H#SuR50xXYONU=h)$oc?xwS1dmgq{} z_dxH4_3IWcC?}GUSParOCct=|#j^~-BfgN#W-k3DQdgPfyrqqr80EMlBl@4lwe?l= z#VrOv5Ve`RDr1_RX9iaylONH9-7x%S-UR0 zabqlrfSd#O4OZhU=shM4&p6eB%o?gQ$x&AyGruF92yYsXr{MwzZxkt;IKDr2A)WMLO4bT;8ODrzYc+S4b81|-4Iamg**c2LRCz&i* z5JoavQm0CyH`p0CKP@INnrk_Fp`a^~wF<1^8KGVskA>P^4P{nRb#sk`UOA#alPgli z*oU50uF8fdAtz{AE}l*J)uq1N7ZB3}?i}jAJLYP!#=pC*H#1Ocd_PSum1(%TZkOh3 zHqkcDm^)LK=CQlE1w8mwE)~ZHw~Y*J9ooEMaKq~KV1G6+R_>TOQ@#gkL*0 z&Yq!1HR0DY^ubK8){KiAZ`nj{Mr!OTiIvRkGLqc^EK|8)Adf5am@u_qm9xC1TO%7J z=P^;QTykVS#kE-o;>Y|!vnhL@%j|)2V1FQa2uls*R8=20F2?qr!DM7puM`)hxGUVX zOuLOuq39#33{SSMDOPcAa)U0(&$g9GyqDJkjkDW!o(PrH_@{cqazjg1x3>xW;v%HI z>)e|>qkX1#J{v2F_8(aH)Z_Qw{i9q%?M4$iy)9s?+WFP_~uRa89&>_hO zGsN&q-rERY#q1YRRx|ZLckwazV-rlky^&T^-$~DVePV1$utI2tgzZc;aSs+&oAjR? zc35J7vG#yr50T}>^kOam=l}vk4Jk_x2=ZFRv2vGM&-OQ~VfIPhHUm!v9kn@?%P7?0{<(|BpZ_|`TX zi5QOvlNOEnd%#(!$}Cz}GP%W;Q&|Dh=226!^2GO)ah&E}dWnSdAxJZxU#jXd0#*uglH&f@rc|b9eE* zcSI9@?Y*|&$t!Pfbh$u8y}6lgkwqTOJnjIV`XZnHYIkSk#(!nyEa-rCK~(jXnM&D9 zHVC2t$kmZ7k`x*T>tgl*km!OSz{pP8K(hL@M-gWcU7ysnGyKdaFWkar1G(tgNIOGe35Ck3J3Uu%{(TL^qVMpME;lZuz zAHH|vL-*k|+|o5~_J=+htj|(akM~9YkEc7BM3+Hl=#PG!d>Mp{Mn^v87*W-x489zEJNj>CVnK5_(3KWEk-n zXz&?C-9?$kQvzDf9}YqJqEzlT6JGmuteWT^;uS z_VWdPHKX4D+Z%r8FF51q662i=V6R9q4oWaUQYY{vjbl7RB;zNR94W7Inu&$wQVLRK zDDsN=&r5G_wfyf@Xpu8Pb*LzwO1O@a_f2 zh>MdT5ixNRnan$35<*EG+Vp#=tS z{PocAQ@&)pB>;>-bH5(0R5hzus}!me+4B0);&7&rFN5}|6>9LRBSj-w)WOwI_YQ;t z^y0TPcplP#D^x0Y?m@rN5)Q^q9V(t$xt7V4MzT3Xoo|T-<|oW~A95Q&jQqXH@pVc4Ko(gC=(+nEEl%}`XzNBM>Y!F~H;_=d^ z1l)vmf_})u#IEM93i!1x)UVf}x6@6;nFq(>Uzpn-Dg-|;y7IwgPndpU+QjLPAU!rQF`g|IbEcNn&9TEOpL!zo z^HT8evN_N8wHUZH6Mmh#dFlTx_~G{|!QeILelWP-%C30}@#0Oo4c=(oi@T(;&cT`5*VUf8zh)ms>t?uC`#o z{`>D2iI52riI32XY&xJur;>dpJ`2Z2_aZL<`XK-F{NrBHJwQ!g9t2e6x{KsIuOqQn z2&8Y$5qqlzBcMtK*%~<=)`anj4X-6P zM+Ze>#1869fkN^-XF(W&rAZb#?{anNy5iS7qKy$Dk!Li$PhX~cH!iDl9ER9Kq-2Gr z1c-;~$_U9KuuM`;wtOLNGx z32Xsk+i*ldcY5+>DXJz-F|JpR@K3JGpH~GsjQxz1p+q2;x=SjQeIg~WnMyh?AC*;w z*Y_?X#fiyP0V0p#B_=a-9G;$ZB%TUZz#wH8mf-k`@8es?{|y(BnVIfDo(*f;2=d82 zi2_ELMRj$VVYw*0(v*14#ez}?CL<{VC4WmLEtLvV{ts6EYN{_a@@emRK|qgUekk6b?Zp9gAR(P_OnQM~x3m7=;wz zbcYnV0C1l>2SivDQ2?ZfX%s3o+whew5I?o{C5I&EFP<{N&URaLC^5LouTRWp)KTeD z07P~TlJ=^pmvsm55AuJC0cLAHFmueiBIh8wH_mXiV2mHs6$O7$ca=olt}2~1==cpp zk92l9h{u5Q>s;?qq1=&?g4>;0+Q=hOMuEtnP;DMibO|11I&OowF*4^NNGwe_NC64d zK{1tUWnDui@4_ZMmDUr-gsU|pVmUCR(zHd(FP|@a_>r+2uWuO|M97W4o}LiQm*H^0 z59mW>;d)GZ$u#5g(~^>it2GJB)PJG-BzHwkJ1FRUX~1}S!bzAK!%DFNuv?|15107# zlI)UOP{y(dE7T-RVK(YCziVEg85l?6MoXm<*#tnO9eQZsFV`oAhO(*DSSp3TLJAj- zAdLZZ`f6$tZjX>Ir{(sRzoPLFTZcChtEHMusq$iQcWDlpwdB#OX^3AJyLD7G3)|@y zXhyx?=_cE|C%Dr$k1<#OE<=uA^GvT+61&J^ULB6@jv zk;AAQvLUJ*ZIln7p+G^0-kH)qoTo)aFH+F0VOA1bfB-OYhMGLBsiYtD;_*B?-I=Zt zb$QL$(2{bGlX{byI|)z|F7$$B?AN^QY;YZPq+kp+@{z<{0KydKt9Lxi`L;YUYFFqzRjotkC|9E0&i1L2+RyP38Nn} zd{N@dyecL$gZcjNQnH{UwGb?eyJ7_6Oy zO(&b8m2H;;Ys+Umz7)IQuAD$XiJ=5jmrmj}IjH+`r-a^+7P*tQTZlwPhZ zgCfT^(+&qJ@!&)(GFmMZwHjXCNVxad#?j5Ag|R$du1?hSwZ$W`a0qYyww8DdDRlxq zV0n~e_yeI3v|quAVrgumfN%*NEpc*ZGxVSjFKxTxR7;ggK3^_oD-e&hMnZ{bu;kc7 znatqe*u>ySiy7()h1w0fCt&o30`Z`q%;dCiA!8v8r#cHQ%n@-f^~R|$pZKOo-bE3! z4CEamUW{VjW8|Ud@sOhO+;xm9gYk!=JUr$@J%IY}a!Iu&lM>W;)SO2v@k4_-MYDT> zUR4BRDwR?CT zSkb!tPLh-h1fc{oF|$Yi@oJ4~PSs(iO-+&prCSRFh^`k!o+$V6vhs|Y z9U*&g8MKC*?VF#QaCK9bWo|EcM$uJMMsB@s-X}GkHPl+&9JN?$yG9XPxTmGlg#(Yb zk9fiEoeG}$rHS^d3BR8CPilr5&JDllr8AoWi=jZ{3|}XoWa0oTUWY`J;aB6Ea|-;T zbs@i6r0Ch)>; zLqWWnBum^Pnv?+(j)V)_kvXJ<$U54_(e;6e#?m`!>+(D)K=^o`|kGdhhIkj z#@Iy{I))E`NUvJR3rJuEFEyXfjt5Jvkpf69x0N0A!28Oq79V`xxBuk}vn!V6(^agz0;XpJ%Az2XhTqO?U5vAVP zE|%ENqu=X&LgZs^Kz*qtfF#AafWnK!_Vf)6BqF}R-f{9p_pX$k(7ide5SxrT7=Egq zBEIq!74Ts%Mi6^6I5iE4yrG_wRT9334=5?J=r_W3AOy>Fm^3a$=YV_;CPt5YR>Zq3 z1eFPs#=eA{#ZV?a1;aQ7y;2L3{-XjjM^&5p(9D&~_uV19XKT*0TV>VO&xq#96Q$J+jzWGZieAi))8Q98NTPfNzg((Bm@1Kqc`cx3 zUgZi@2Yh4JW(qhUC zDoPZg_0$Tuj%ypu0j&#VLY0{rUR82#~Q@NTqAj$X0A zF^Cf&v0sTmu`M#z)-o23^p~6s6UDWo`N6Ran2>lV*pY}PqY(-#W%`hmCL9bTqF}H> zFh0@?K?iGlUGe6iA{Ekh+mFi+v9SexVQ? z#_&sME6PX?>{SHS#Cgea0y1Ued2-+kRRNxTpdb@0#k`iPJH{g1T&dciL$OyVzd4yR zu>pQjtdBZen`PkX5jaUSw;5Z2`cHbxSpJ>wZ+XpG&$Tvc!moY!iMt?4;D{`n>&82= z`iXpDmdzuI1m1Y?OJ+*A6ADscnoRIl9e#<%i>FzSF;Z^>k)pF*&QrrvJsV+)01>f1 zZV!G@Bp#A$u=d4WJl6+r?6_1)gb#`U)>Av zYwL!{_df}C$}Tv1v8I6lBO(**muV;c#m-2&GYR;$I%_>XoL@bZ0Wlg60(-@}TH}dW z6xho~h+v<;RINoqftCaW_z_AX%~46veGBDkwuE2`W>2aGP%J&3%jOGsZpe!hC-IkF zEmo1oIa{ulYSpk|B@somR7m#^t$lQ@JvQD`vlrP$qHNC#`w{_D;1`?O>f78VCh9uw zaFDQ^f;Qw#`QTAad*b^kJrS3q>_?_1J6eI^7hx{|FNC6~SWbmMdl8o#OCanu$F9YzT<3Hj-IQP=X04&@!VD}i4z)RrI` zrU?Zcq26csg`dReaWj&~gV;q;cvUmX*a5ByhtX_gI239PlPg8Qn5)4DDMUqco8AJl zh~Jnm+n@eK&l}(HTx%kMU*^X@{)y+>oj(iiS8*^63psg(^ZT1IO@r`!#`_gEXmUA| zSJP~C6R;x4ONb#6M6hR)&jW29-&0>%3baucmHKt$6@krzUmi>+HLIb$0l*C+ z0t;m(U(6SgWG7s6;uR<6I04Hsp+KwJM%C6~D#eLlaV)qUa-JS^1Ny)LC5V9Gy$VPH zYZ`nhEv?8qKFIEU>3!4q0e>yq8U*ih*qp~V7VDidwLnV)sKSm~3I8OXguFPSpj%|Q zLx3!9|3Zyxiwd9`4b@ha;fgixQbXBMJ}|UxVWiOq5Lt$$`z>-TFz`K7Ybw$|WMc?_ zhNY)f011hdv&aloa*QHc*fwaz1(yjM+^7!49#mqGnaS>hx25g)Yzu-_ta=Q1tkU<; zrh%b$;AC2}O)_WOz>z4{s#^5aW^9@1cSphpm*H!EXlw!IEYsjeUvzBz;Dh$Wgz!u* zv+4QxOny2$T{riY-+*D%+kWPMwu8wS8S%T{je}E{Ju$YUO{Un%&_@uCO1|y=aeA%l zXU($GZ}^ko6K}6WqK3=UeBTg+kT|n?z77IX?8ELkDAuVo23j07Lv0e|ND20(@?zd4 z9T3G}RLS)iEeSm3cB(TH0;HxoHtzJ}Y@YCRT7ay@pj)(jMPaW}jo$abVa2LOQC6{A zrHYj+BkFD~V)|kfRW*RLd;}6I7ML3R+L=nElCf|g0D=-xgzFw1CGI#2x#3geMw4R*=-!qt?$>RElX(&Tkxfp3TQEtcp#uLoQUHAW#~iW z&R<*^32v_wjQ8% z#{GZ09tI;PhkVWyT|gGw#MVaiYKy;|43`4It+{I7cxk*;MRbX_WGo(wn!zA27DyZf z9Ec;v7sOv7Kb$py#^|LD#KU65fFC4@1Cu2%dWn)qgXyCFo68r{6Zu@eg#MTa!$*=t z+r(JmP=pkyX~|$HU#eD0AizopkxvFkhlrREP#g+}oeSTjg8ITvbMbt0=~CZ*`}>wG zF?;8k9c_BDMURHzV@bw1y!eR?l2PrAF*eWfZO*WhBFfMZ+Y}MnDU1c5NHmp7$1}qz z-VEYuq3V`R>H8=OJL*G-5+!&#I<*Pif-fp!fgtn1 zNW5BYg%_){WxP@-*(SghmQK{jn&s2%xZ~?|stLOkwTmHp+^E+4cHU>@g0;jvZCkB0 zQmT|Kr(jsYPDfALS*NyXpybQz;fmp-5UP}M6E(y$r>M@X&8H#DJ4Ne2-w@5dG>htd zd%D-}+vSfV8tsdYiyzcvzxM6t_?)Y~Yipa~#^uF7EBRG7nek*hX=}8*2|N;N3mc3q zyc5)tOUUIJKS`iOiKW2wSY5QGj+t_yS$@R{N_SPaeTpSiZ75qvFR55V@U6PKi|~?& zfT7-EyCR*XqIIZP8_aCc9f>zPAJ13eP+xLuatufMp$mDTz4$c9)j%?6c~( zh89z#9>0%VSXmd~%|;wP=Q{fi-!R7lrMIHe>NP+TXtE_HJeeYa&M7`BKXrOpLhpq` zVUK1>A1wenlX2q+m1tRF&Gt8Q$=Pe@`PsH0=L-ANOV2qni7K(5(WO0`v(-|~?x|Rr;-5n-S*M2L_{SGo$ z9N=5J%v`Y0?CCZ-Qbub+kA=0cUyJy(gkNh5X`Kec?D(7tYOMh+>DOBMDji|HD}tT=itpj$ ziFAoA0j&*};6mENdRs(KMc~4q!Qm6F7mJw-7Mn}=Hy1BK&9zjNE=t9EJC~2T#eG^F z)i&vlut$A_!&qpqKr=lOWdAYr4xiIursLK|v$)R6ZK@ReD&--&k`32}eC1KSn%Aw0 z-_C_=#g=NRrMk^7R3 z!y~nRV3YlN8jaRGW$(5?1IC)6B8`;TjP(@4$@^0y5^`~aIPocJN|-J0C;sHBp2(Sr zOH=HZ01gH_D#4srxS$^omw1H>zr^oNh3DwCsY3dAU#YmzGVKZA6KKdGAQj@2>$0>9 zKT6^BQ|yUuA?oVPx2ecs^a5t2l(eYXFPcR<2M& zkHeW*hERX2RKli_jE35haeT>Y$r{9Bz3`!k}sC?*-R;y@ztz&O%L08z}As5 zo1Q;}WHGL?$KD>(TEjY$ zU_19Z{n*u6M=tj+ovaCFIl*)w{6c zn<#cI71om>JrSUvoiU?3VRX0XT?suECKw0ZdepDCM+|(^*`jx#s04lPO6si<4OtFB z{k6CG_dnR|=mD6uOIh+#1YEzOY84kL8wlfJb=LfCPF1&7ZOF9;LY=Wd zG-5(=Uxx52paoitTDv`})%x?L{_!G0homBq^65^N9n$Cs&XC=#kt=EVMGJJ@vqr*WF&|SsGhTX0bW8Sp-INVlR2M�sF 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

oz^K1V{E5 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�dSVUjr@cM!DTWY36aMH%6S00 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

q<#KDq=r9 z_Os6M|9!vqK6L5H{MsKlwRsKhC+H3)fx@48IdIKb#OosLmaFx0TG${heS!4Ka}54c zAYTGB{8s_{_w@f@4TtXnqKpf&3zZhqZz0e<;8`ZewD&hO-&xPNtA(<9sQv0A1_Z$l z4S)O~=baj4pW(tKL^pc~^74G&>BC<( zMdUb8QTw}FEcyYC64N+GKL(MKw2E+&DA>igE@$=dN9rMy$_HQJU3e3G>o)%P%oG0E zwe}|FqbHs5SUn;Bm0u(Q`}5{!b11Z{R`=JKfq@+w#1BDW5042upNg)CRA#ESh}-RJQ?H zh?$kyq$5p0xFLl?AMPAR=NF&c?#~svu2ui$endr`ksw^V`lmjjyoQM2uh@nz8 z2z)-WE_B}-_GStD-0GH3Mo(We)MgoRBaAF$2;wmEZaD8o@v@NB!$WTN2r`yZ$P8uw zf!YJDB3(O0giG0ZCU(AWlTz}DH3Hf|cY@imL8$)G{5t5sM|Og%i>Rt+%>M|rgmfgW z0s~gY5uyHc^a30{6c~6C3T)NKx<$aHNS5S1Sj1`iL^c9Minpg$h45*^gc~&;p0arg zq4d|x|GJGIm+A<#7N`wojI3h&*M^40LOWK4k$~&ih2|v<;TK^;Gt4gYRE znpaLhY%Pab^78Hvf3PKy8YiD#47+KbK05N?Iu9qN;bPpNLn#o(qpbMdL$O=_6_`P{cZuG(tN zgp;Uv-|lDSNCv!6Zm%o3}0?!r|1)8{_V$F-)}i$d%EY=cTaN6!FbG}!nL@;jbd ze1Vj4uHXizFpWQSEJd%xpnbQEBG6Wh-~1Iz|B7BjB?wW}pmpNUw?_^q∓(U#eSK>T<_Pwuh?DIslhJvVg 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

AM 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 z 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

-Aw`8pal181j=YU(vsY@_mfEQ>V>GhF*1MV2jr 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%0A-LhrzNzGqQ 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 t2C>&hK&xbEi%BpR>X^^H3-AO6H4^T@W8 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 Date: Sat, 30 Dec 2023 15:34:54 -0800 Subject: [PATCH 2/9] merge conflict --- .../immigration_gen_data.ipynb | 40 +++++++++++-------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/example/data_generation/immigration_gen_data.ipynb b/example/data_generation/immigration_gen_data.ipynb index 185a359..320b6f9 100644 --- a/example/data_generation/immigration_gen_data.ipynb +++ b/example/data_generation/immigration_gen_data.ipynb @@ -10,26 +10,32 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: openai in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (1.6.0)\n", - "Requirement already satisfied: anyio<5,>=3.5.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (3.7.1)\n", - "Requirement already satisfied: distro<2,>=1.7.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (1.8.0)\n", - "Requirement already satisfied: httpx<1,>=0.23.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (0.26.0)\n", - "Requirement already satisfied: pydantic<3,>=1.9.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (1.10.11)\n", - "Requirement already satisfied: sniffio in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (1.3.0)\n", - "Requirement already satisfied: tqdm>4 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (4.66.1)\n", - "Requirement already satisfied: typing-extensions<5,>=4.7 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (4.9.0)\n", - "Requirement already satisfied: idna>=2.8 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from anyio<5,>=3.5.0->openai) (3.6)\n", - "Requirement already satisfied: exceptiongroup in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from anyio<5,>=3.5.0->openai) (1.2.0)\n", - "Requirement already satisfied: certifi in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from httpx<1,>=0.23.0->openai) (2023.11.17)\n", - "Requirement already satisfied: httpcore==1.* in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from httpx<1,>=0.23.0->openai) (1.0.2)\n", - "Requirement already satisfied: h11<0.15,>=0.13 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from httpcore==1.*->httpx<1,>=0.23.0->openai) (0.14.0)\n" + + "Requirement already satisfied: openai in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (0.27.8)\n", + "Requirement already satisfied: requests>=2.20 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (2.31.0)\n", + "Requirement already satisfied: tqdm in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (4.65.0)\n", + "Requirement already satisfied: aiohttp in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (3.8.5)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (3.2.0)\n", + "Requirement already satisfied: idna<4,>=2.5 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (3.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (2.0.4)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from requests>=2.20->openai) (2023.7.22)\n", + "Requirement already satisfied: attrs>=17.3.0 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (23.1.0)\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (6.0.4)\n", + "Requirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (4.0.2)\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.9.2)\n", + "Requirement already satisfied: frozenlist>=1.1.1 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.4.0)\n", + "Requirement already satisfied: aiosignal>=1.1.2 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from aiohttp->openai) (1.3.1)\n" ] }, { - "name": "stderr", - "output_type": "stream", - "text": [ - "Since the GPL-licensed package `unidecode` is not installed, using Python's `unicodedata` package which yields worse results.\n" + "ename": "ModuleNotFoundError", + "evalue": "No module named 'cleantext'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[1], line 18\u001b[0m\n\u001b[1;32m 15\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mpandas\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mpd\u001b[39;00m\n\u001b[1;32m 17\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mtyping\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m Optional, Sequence, Union\n\u001b[0;32m---> 18\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mcleantext\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m clean\n\u001b[1;32m 19\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mnltk\u001b[39;00m\n\u001b[1;32m 20\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mnltk\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcorpus\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m stopwords\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'cleantext'" ] } ], From 1ab4f325279b4fb438c187988decda3752063187 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Tue, 9 Jan 2024 23:48:17 +0000 Subject: [PATCH 3/9] support supervised fine tuning on d2l. execute with "python -m example.rlhf.supervised_finetuning_d2l" --- example/rlhf/supervised_finetuning_d2l.py | 45 ++++++++++++ pykoi/rlhf/config.py | 1 + pykoi/rlhf/customize_data_collator.py | 35 +++++++++ pykoi/rlhf/supervised_finetuning.py | 87 +++++++++++++++++++++-- 4 files changed, 164 insertions(+), 4 deletions(-) create mode 100644 example/rlhf/supervised_finetuning_d2l.py create mode 100644 pykoi/rlhf/customize_data_collator.py diff --git a/example/rlhf/supervised_finetuning_d2l.py b/example/rlhf/supervised_finetuning_d2l.py new file mode 100644 index 0000000..0e50a85 --- /dev/null +++ b/example/rlhf/supervised_finetuning_d2l.py @@ -0,0 +1,45 @@ +"""Demo for the supervised fine tuning. + +python -m example.rlhf.supervised_finetuning_demo +""" + +from pykoi.chat import QuestionAnswerDatabase +from pykoi.chat.db.constants import (QA_CSV_HEADER_ANSWER, QA_CSV_HEADER_ID, + QA_CSV_HEADER_QUESTION, + QA_CSV_HEADER_VOTE_STATUS) +from pykoi.rlhf import RLHFConfig, SupervisedFinetuning + +# get data from local database +qa_database = QuestionAnswerDatabase() +my_data_pd = qa_database.retrieve_all_question_answers_as_pandas() +my_data_pd = my_data_pd[ + [ + QA_CSV_HEADER_ID, + QA_CSV_HEADER_QUESTION, + QA_CSV_HEADER_ANSWER, + QA_CSV_HEADER_VOTE_STATUS, + ] +] + +# analyze the data +print(my_data_pd) +print("My local database has {} samples in total".format(my_data_pd.shape[0])) + +# run supervised finetuning +from peft import LoraConfig +config = RLHFConfig(base_model_path="mistralai/Mistral-7B-Instruct-v0.1", + dataset_type="local_csv", dataset_name="data/chapter22_trnvalfromseed_data_processed.csv", + train_test_split_ratio=0.1, + max_seq_length=896, + per_device_eval_batch_size = 1, + lora_config_rl = LoraConfig( + r=512, + lora_alpha=1024, + lora_dropout=0.05, + target_modules=["q_proj","k_proj","v_proj","o_proj",], # "gate_proj","up_proj","down_proj",], #"lm_head",], + bias="none", + task_type="CAUSAL_LM" + ), + ) +rlhf_step1_sft = SupervisedFinetuning(config) +rlhf_step1_sft.train_and_save("./models/rlhf_step1_sft") diff --git a/pykoi/rlhf/config.py b/pykoi/rlhf/config.py index e7721f1..c34d68e 100644 --- a/pykoi/rlhf/config.py +++ b/pykoi/rlhf/config.py @@ -5,6 +5,7 @@ from accelerate import Accelerator from peft import LoraConfig, TaskType +# TODO: DH: num_train_epochs=20, @dataclass diff --git a/pykoi/rlhf/customize_data_collator.py b/pykoi/rlhf/customize_data_collator.py new file mode 100644 index 0000000..5cc8c1e --- /dev/null +++ b/pykoi/rlhf/customize_data_collator.py @@ -0,0 +1,35 @@ +from typing import Any, Dict, List, Tuple, Union +from transformers import DataCollatorForLanguageModeling +import numpy as np +class DataCollatorForCompletionOnlyLM(DataCollatorForLanguageModeling): + def torch_call(self, examples: List[Union[List[int], Any, Dict[str, Any]]]) -> Dict[str, Any]: + batch = super().torch_call(examples) + + # The prompt ends with the response key plus a newline. We encode this and then try to find it in the + # sequence of tokens. This should just be a single token. + RESPONSE_KEY = "### Response:" + RESPONSE_KEY_NL = f"{RESPONSE_KEY}\n" + response_token_ids = self.tokenizer.encode(RESPONSE_KEY_NL) + + labels = batch["labels"].clone() + + for i in range(len(examples)): + + response_token_ids_start_idx = None + for idx in np.where(batch["labels"][i] == response_token_ids[0])[0]: + response_token_ids_start_idx = idx + break + + if response_token_ids_start_idx is None: + raise RuntimeError( + f'Could not find response key {response_token_ids} in token IDs {batch["labels"][i]}' + ) + + response_token_ids_end_idx = response_token_ids_start_idx + 1 + + # Make pytorch loss function ignore all tokens up through the end of the response key + labels[i, :response_token_ids_end_idx] = -100 + + batch["labels"] = labels + + return batch \ No newline at end of file diff --git a/pykoi/rlhf/supervised_finetuning.py b/pykoi/rlhf/supervised_finetuning.py index 7a58a9f..c5e8ed6 100644 --- a/pykoi/rlhf/supervised_finetuning.py +++ b/pykoi/rlhf/supervised_finetuning.py @@ -20,7 +20,7 @@ from pykoi.rlhf.config import RLHFConfig from pykoi.telemetry.events import SFTStartEvent, SFTStopEvent from pykoi.telemetry.telemetry import Telemetry - +from pykoi.rlhf.customize_data_collator import DataCollatorForCompletionOnlyLM class SupervisedFinetuning: """ @@ -48,6 +48,13 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No self._telemetry = Telemetry(enable_telemetry) self._rlhf_config = rlhf_config self.tokenizer = AutoTokenizer.from_pretrained(rlhf_config.base_model_path) + # dh: add special tokens to tokenizer + self.tokenizer.pad_token = self.tokenizer.eos_token + END_KEY = "### End" + INSTRUCTION_KEY = "### Instruction:" + RESPONSE_KEY = "### Response:" + RESPONSE_KEY_NL = f"{RESPONSE_KEY}\n" + self.tokenizer.add_special_tokens({"additional_special_tokens": [END_KEY, INSTRUCTION_KEY, RESPONSE_KEY_NL]}) self.num_proc = ( self._rlhf_config.num_workers if not self._rlhf_config.streaming else None ) @@ -83,13 +90,23 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No load_in_8bit=self._rlhf_config.load_in_8bit, device_map=self._rlhf_config.device_map, ) + # resize the token embeddings to include the added special tokens + self.model.resize_token_embeddings(len(self.tokenizer)) + + # dh: try the customized data collator that only predicts the answer part + data_collator = DataCollatorForCompletionOnlyLM( + tokenizer=self.tokenizer, mlm=False, return_tensors="pt", pad_to_multiple_of=8 + ) + self.trainer = SFTTrainer( model=self.model, args=self.training_args, train_dataset=self.dataset["train"], eval_dataset=self.dataset["eval"], - peft_config=self._rlhf_config.lora_config_rl, + peft_config=self._rlhf_config.lora_config_rl, ## TODO: DH: LoraConfig MAY BE IGNORED IF USING FROM_PRETRAINED packing=True, + data_collator=data_collator, + dataset_text_field="text", ) def train(self): @@ -103,6 +120,8 @@ def load_lora( base_model_path: Optional[str] = None, lora_model_path: Optional[str] = None, ): + #import pdb; pdb.set_trace() + # dh: not used if base_model_path is None: base_model_path = self._rlhf_config.base_model_path @@ -163,6 +182,65 @@ def prepare_sample_text(self, example): f" Answer: {example[self._rlhf_config.answer_title]}" ) return text + + + def prepare_d2l_text(self, example): + """Prepare the text from a sample of the d2l dataset .""" + INTRO_BLURB = ( + "Below is an instruction that describes a task. Write a response that appropriately completes the request." + ) + INSTRUCTION_KEY = "### Instruction:" + INPUT_KEY = "Input:" + RESPONSE_KEY = "### Response:" + END_KEY = "### End" + RESPONSE_KEY_NL = f"{RESPONSE_KEY}\n" + DEFAULT_SEED = 42 + + # This is a training prompt that does not contain an input string. The instruction by itself has enough information + # to respond. For example, the instruction might ask for the year a historic figure was born. + PROMPT_NO_INPUT_FORMAT = """{intro} + {instruction_key} + {instruction} + {response_key} + {response} + {end_key}""".format( + intro=INTRO_BLURB, + instruction_key=INSTRUCTION_KEY, + instruction="{instruction}", + response_key=RESPONSE_KEY, + response="{response}", + end_key=END_KEY, + ) + + # This is a training prompt that contains an input string that serves as context for the instruction. For example, + # the input might be a passage from Wikipedia and the intruction is to extract some information from it. + PROMPT_WITH_INPUT_FORMAT = """{intro} + {instruction_key} + {instruction} + {input_key} + {input} + {response_key} + {response} + {end_key}""".format( + intro=INTRO_BLURB, + instruction_key=INSTRUCTION_KEY, + instruction="{instruction}", + input_key=INPUT_KEY, + input="{input}", + response_key=RESPONSE_KEY, + response="{response}", + end_key=END_KEY, + ) + + context = example.get("context") + if context: + text = PROMPT_WITH_INPUT_FORMAT.format(instruction=example["instruction"], response=example["response"], input=context) + else: + text = PROMPT_NO_INPUT_FORMAT.format(instruction=example["instruction"], response=example["instruction"]) + + + + return text def create_datasets(self, tokenizer, args): if args.dataset_type == "local_db": @@ -181,6 +259,7 @@ def create_datasets(self, tokenizer, args): elif args.dataset_type == "local_csv": dataset = load_dataset("csv", data_files=args.dataset_name) dataset = dataset[args.split] # Convert DatasetDict to Dataset + dataset2 = load_dataset("csv", data_files=args.dataset_name, split='train[:10%]') elif args.dataset_type == "huggingface": dataset = load_dataset( args.dataset_name, @@ -208,7 +287,7 @@ def create_datasets(self, tokenizer, args): train_dataset = ConstantLengthDataset( tokenizer, dataset["train"], - formatting_func=self.prepare_sample_text, + formatting_func=self.prepare_d2l_text, infinite=True, seq_length=args.max_seq_length, # chars_per_token=chars_per_token, @@ -216,7 +295,7 @@ def create_datasets(self, tokenizer, args): eval_dataset = ConstantLengthDataset( tokenizer, dataset["test"], - formatting_func=self.prepare_sample_text, + formatting_func=self.prepare_d2l_text, infinite=False, seq_length=args.max_seq_length, # chars_per_token=chars_per_token, From 9daf69c9ab732566758f861e36861e8d17d9f892 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Tue, 9 Jan 2024 16:48:19 -0800 Subject: [PATCH 4/9] resolve merge conflicts on gpu96 --- .../immigration_gen_data.ipynb | 2609 ++++++++--------- 1 file changed, 1222 insertions(+), 1387 deletions(-) diff --git a/example/data_generation/immigration_gen_data.ipynb b/example/data_generation/immigration_gen_data.ipynb index 320b6f9..c8709a9 100644 --- a/example/data_generation/immigration_gen_data.ipynb +++ b/example/data_generation/immigration_gen_data.ipynb @@ -10,7 +10,6 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: openai in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (0.27.8)\n", "Requirement already satisfied: requests>=2.20 in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (2.31.0)\n", "Requirement already satisfied: tqdm in /home/cozyharbor/anaconda3/envs/pykoi/lib/python3.10/site-packages (from openai) (4.65.0)\n", @@ -53,6 +52,7 @@ "import json\n", "import tqdm\n", "import copy\n", + "import openai\n", "import pandas as pd\n", "\n", "from typing import Optional, Sequence, Union\n", @@ -61,41 +61,9 @@ "from nltk.corpus import stopwords\n", "from nltk.stem import SnowballStemmer\n", "from nltk.tokenize import word_tokenize\n", - "from openai import OpenAI" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### OpenAI API key\n", - "To use an OpenAI model, you'll need an OpenAI key. Enter your OpenAI API key a .env file in the `~/pykoi` directory with the name OPEN_API_KEY, e.g.\n", - "```\n", - "OPENAI_API_KEY=your_api_key\n", - "```\n", "\n", - "In the next cell, we load the key from the .env file." - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "True" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from dotenv import load_dotenv\n", - "load_dotenv()" + "# from openai import openai_object\n", + "openai.api_key = \"\"" ] }, { @@ -108,7 +76,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "2e76d16d-e586-48c0-8f07-d56a62560d27", "metadata": { "scrolled": true @@ -209,7 +177,7 @@ "4 1. Typically the only way you can get three ye... up NaN " ] }, - "execution_count": 3, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -230,7 +198,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 3, "id": "e2377b09-ecfb-47af-ba20-d8914f19f732", "metadata": { "scrolled": true @@ -272,7 +240,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 115, "id": "dcebd404-ead1-4fb5-adb9-1970c8a0268b", "metadata": {}, "outputs": [ @@ -280,11 +248,10 @@ "name": "stderr", "output_type": "stream", "text": [ - "[nltk_data] Downloading package punkt to /Users/joseortiz/nltk_data...\n", + "[nltk_data] Downloading package punkt to /home/ubuntu/nltk_data...\n", "[nltk_data] Package punkt is already up-to-date!\n", - "[nltk_data] Downloading package stopwords to\n", - "[nltk_data] /Users/joseortiz/nltk_data...\n", - "[nltk_data] Unzipping corpora/stopwords.zip.\n" + "[nltk_data] Downloading package stopwords to /home/ubuntu/nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n" ] }, { @@ -293,7 +260,7 @@ "True" ] }, - "execution_count": 5, + "execution_count": 115, "metadata": {}, "output_type": "execute_result" } @@ -305,7 +272,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 116, "id": "5c51d2fc-125b-4041-82f1-1e58196fcd82", "metadata": {}, "outputs": [], @@ -313,26 +280,26 @@ "stop = stopwords.words('english')\n", "# These words are important for the problem. Exclude them from the stop words.\n", "excluding = ['against', 'not', 'don', \"don't\",'ain', 'aren', \"aren't\", 'couldn', \"couldn't\",\n", - " 'didn', \"didn't\", 'doesn', \"doesn't\", 'hadn', \"hadn't\", 'hasn', \"hasn't\",\n", + " 'didn', \"didn't\", 'doesn', \"doesn't\", 'hadn', \"hadn't\", 'hasn', \"hasn't\", \n", " 'haven', \"haven't\", 'isn', \"isn't\", 'mightn', \"mightn't\", 'mustn', \"mustn't\",\n", - " 'needn', \"needn't\",'shouldn', \"shouldn't\", 'wasn', \"wasn't\", 'weren',\n", + " 'needn', \"needn't\",'shouldn', \"shouldn't\", 'wasn', \"wasn't\", 'weren', \n", " \"weren't\", 'won', \"won't\", 'wouldn', \"wouldn't\"]\n", "# New stop word list\n", "stop_words = [word for word in stop if word not in excluding]\n", "\n", "snow = SnowballStemmer('english')\n", "\n", - "def process_text(texts):\n", + "def process_text(texts): \n", " final_text_list=[]\n", " for sent in texts:\n", - "\n", + " \n", " # Check if the sentence is a missing value\n", " if isinstance(sent, str) == False:\n", " sent = \"\"\n", - "\n", + " \n", " filtered_sentence=[]\n", - "\n", - " sent = sent.lower() # Lowercase\n", + " \n", + " sent = sent.lower() # Lowercase \n", " sent = sent.strip() # Remove leading/trailing whitespace\n", " sent = re.sub('\\s+', ' ', sent) # Remove extra space and tabs\n", " sent = re.compile('<.*?>').sub('', sent) # Remove HTML tags/markups:\n", @@ -340,13 +307,13 @@ " for w in word_tokenize(sent):\n", " # We are applying some custom filtering here, feel free to try different things\n", " # Check if it is not numeric and its length>2 and not in stop words\n", - " if(not w.isnumeric()) and (len(w)>2) and (w not in stop_words):\n", + " if(not w.isnumeric()) and (len(w)>2) and (w not in stop_words): \n", " # Stem and add to filtered list\n", " filtered_sentence.append(snow.stem(w))\n", " final_string = \" \".join(filtered_sentence) #final string of cleaned words\n", - "\n", + " \n", " final_text_list.append(final_string)\n", - "\n", + " \n", " return final_text_list\n", "\n", "stop_stem=False\n", @@ -366,21 +333,10 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 117, "id": "3390bf56-1a0b-4b29-ac64-fa88f8b62416", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Requirement already satisfied: clean-text in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (0.6.0)\n", - "Requirement already satisfied: emoji<2.0.0,>=1.0.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from clean-text) (1.7.0)\n", - "Requirement already satisfied: ftfy<7.0,>=6.0 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from clean-text) (6.1.1)\n", - "Requirement already satisfied: wcwidth>=0.2.5 in /Users/joseortiz/anaconda3/envs/pykoi/lib/python3.10/site-packages (from ftfy<7.0,>=6.0->clean-text) (0.2.6)\n" - ] - } - ], + "outputs": [], "source": [ "! pip install clean-text\n", "f_clean = lambda qaa_pair_raw : clean(qaa_pair_raw,\n", @@ -421,18 +377,18 @@ "id": "0a48d15f-0698-41c0-b26a-58d650ddf8fc", "metadata": {}, "source": [ - "#### Dataset customized cleanup" + "#### Dataset customized clenaup" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 118, "id": "59344b41-74e7-41ae-aea9-e1c915149193", "metadata": {}, "outputs": [], "source": [ "answer_l_raw = qaa[\"Answer\"].to_list()\n", - "qaa[\"Answer\"] = [re.compile(r'<.*?>|More\\.\\.\\.', flags=re.IGNORECASE).sub('', p) for p in answer_l_raw] # Remove HTML tags/markups:" + "qaa[\"Answer\"] = [re.compile(r'<.*?>|More\\.\\.\\.', flags=re.IGNORECASE).sub('', p) for p in answer_l_raw] # Remove HTML tags/markups: " ] }, { @@ -445,7 +401,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 119, "id": "7b64e1ff-b6da-45c4-af28-99ec5badcc95", "metadata": {}, "outputs": [ @@ -474,7 +430,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 120, "id": "7848e9a4-22e4-4e90-8ef6-09d634de1b33", "metadata": {}, "outputs": [ @@ -497,118 +453,10 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "id": "36ada685-4c31-4356-99f9-1f82bf3f17cf", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "len(qaa_list_encoded): 96\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"h-1b to eb-2 process . i would like to know if i have an advanced degree (masters engineering management) and my employer filed my h-1b and if the lottery is picked can i initiate the green card process? i also heard that there is a minimum salary cap for eb-2 advanced degree.\",\n", - "\"_answer\": \"the employer can start the green card process at any time, even before you join. to see the salary figures by county and profession, you can review this link -https://www.flcdatacenter.com/\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"eligibility for and the process of eb-3 to eb-2 porting . can you talk about this upgrade process from eb3 to eb2 for pending i-485? does it need another i-485 application or just a letter to uscis?\",\n", - "\"_answer\": \"you can always go up and you can always go down as long as your perm was filed as an eb-2. if you filed your prm as an eb-3 then you're not going to be able to upgrade to eb-2. but if your perm was filed as an eb-2 you can downgrade i-140 eb-3. you can go back upgrade toeb-2if you already have aneb-2approval. you can file a downgrade second case aseb-3with the sameperm.faq in detail...\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"how can i qualify for eb-1c/international managers or executives . i was in usa on h1b for 11 yrs until august 2019 as senior software engineer and moved/transferred to canada on september 2019 as software development manager, managing 5 direct reports plus 4 second level reports with the same company in usa and canada. and now promoted as director, software development projects support and maintenance, before completing one year as manager. have i-140 approved and priority date is 2012 july.
1.what is my success rate of getting l1a
2. also need to re-apply my green card in eb1c, do i need to be in usa or when i am in canada my company can apply for this. and upon eb1c i-140 approval can i get l1a and move to usa
3. is this the correct time to apply eb1c in the next couple of months when 1 year completes or should i wait for visa ban to complete.\",\n", - "\"_answer\": \"1. please discuss your job description that is intended in the foreign country outside usa with your lawyers. make sure you plan for it from day one because if you try to plan for it a year down the line you won't succeed.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"downgrading from eb-2 to eb-3 . my wife and i are currently on ead's since feb 2012 when the dates became current for our priority date and we were able to apply for the i-485. she is the primary applicant and i am the dependent on her application. since 2012 the ead/ap card is being renewed every 2 years. with the eb3 category now going ahead of eb2 does it make sense for her to downgrade to eb3 - apply for i-140 under eb3. i believe it takes 6 months for approval so we would essentially be doing this preemptively in anticipation of our date becoming current under eb3 in 6+ months.\",\n", - "\"_answer\": \"i see no problem applying for eb-3 and then using whichever one is faster when the time comes.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"how to get h-1b approved for three years, not shorter duration . 1. i got my h1b approved for a period of one year only and expires on oct 27th, 2019. i work through a consultancy. any precautions i can take in the future which can help me getting the h1b approved for 3 years in the upcoming h1b extension after oct 27th, 2019.
2. any particular documents needed for getting the h1b approved for 3 years?
3. if i go for stamping, do i need to be careful with social media at the port of entry? any tips or recommendations you can give with reference to social media during port of entry?
4. my eb2 priority date is feb 4th, 2015 and i'm planning to marry a girl who is a nepal citizen and she's on opt right now. can i move my priority date to eb2 nepal category after marriage? if yes, what would be my next steps - how soon can i file for i-485 interview?\",\n", - "\"_answer\": \"1. typically the only way you can get three year extension is if you can prove that the project will go on for three years.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"options to stay in the usa after expiration of h-1b . 1. i am currently in h1-b more than 10 years in the usa and i have approved i-140 priority date mar 2011 - eb2. my current employment is getting over in 3 weeks. and my current h1-b and i-94 expires in mid-august 2019. my question is if i am not able to find another job within my h1-b and i-94 expires on mid august 2019. what are the options available for me to legally stay in the usa after my h1-b and i-94 expires? i have own house. is there an exceptional case we can file gc ead?
2. without a job how many days i can stay in usa before my i-94 expires using i-140?\",\n", - "\"_answer\": \"1. i don't think you would get the tourist visa or tourist status but you can apply for it.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"downgrading a case from eb-2 to eb-3 for priority date advantage . i am with my current employer since 2008. my gc is filled in eb2 with aug-2010 priority date. only i-140 is approved so far.
1) can my employer file me under eb-3 concurrently without affecting my existing eb-2 filling?
2) if yes then what is the procedure for that? do i have to do my labor and i-140 once again?\",\n", - "\"_answer\": \"1. your eb-2 does not get affected. you can file eb-3/i-140 and i believe you can file a i-485 also if your dates are current.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"eb-2 approved - applying for eb-3 . i applied for eb3 in 2011 and port to eb2, now eb3 dates are moving forward and if it reach to my priority date am i still eligible for eb3 as i initially applied for or do i need to downgrade to eb3. will there be any questions raised?\",\n", - "\"_answer\": \"this is mostly a question of procedure and policy. the uscis has been indicating that if you have only one i-140 approved under eb-2 but you want to file under eb-3 you have to file another i-140 using the copy of the same labor certification - perm application and get an eb-3 approval first.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"not worked for green card sponsoring company fraud implication for naturalization/citizenship . in summary,
* i worked for the same company from 2004 to 2014 (2004 - 2011 in us on h1b, and 2011-2014 in india)
* but, after green card, i did not work for the company in us.
* i don't have even a single paycheck from us company after receiving gc.
* since then, i have been working in a job with same job description that my gc was filed for.
* all other history is clean. i have two us born children, always paid taxes on time, no legal cases.
i heard from reliable sources that under current circumstances, my case will be marked as fraud and there is a 99% chance that they will revoke my gc and deport me, as i didn't stay with the employer that sponsored my gc.
questions
* should i be really concerned?
* what are my options?
* i have the option of going back to the same employer now. does that help?
* if my wife applies for naturalization instead of me, is that going to be any different?\",\n", - "\"_answer\": \"this is a difficult situation. i would argue that this is fine because once you went and got the green card you took the job and you are just working for the company's operations outside the usa temporarily. so i think it's going to be a touch and go, but that is what i would argue. you definitely need to take a lawyer with you.\"}\n", - "\n", - "\n", - "Paraphrase the below question and answer pair in 3 different ways.\n", - "Try not to repeat the verb for each pair to maximize diversity.\n", - "Return everything in an array of JSON object in this format: ######{\"_question\":\"string\", \"_answer\":\"string\"}\n", - "Seperate each pair with \"######\" rather than commas.\n", - "\n", - "######\n", - "{\"_question\": \"how can i downgrade from eb-2 to eb-3 and consequences . i have i-140 approved in eb2, priority date is 2010. when date become current for eb3, i want to downgrade from eb2 to eb3 (i know i have to only refile i-140 and i-485 concurrent). what will happen if uscis denied newly filed i-140 (eb3)? can i-485 also denied? if newly filed i-140 (eb3) denied, can i used my previously approved i-140 (eb2)?\",\n", - "\"_answer\": \"if we have an eb-2 approved i-140 we apply for an eb-3 approval on the same form or you can file eb-3 i-140 and i-485 concurrently if the dates are current. if you file a i-485 that is prematurely filed when the priority date of eb-2 is not current, if eb-3 is denied on which basis you had filed the i-485 then the i-485 will also be denied. i would want your lawyers to review your case very carefully. make sure that you don't have any other issues. if the second eb-3 filing gets denied it should not have any impact on the already approved i-140 unless the second filing reveals some problem with the case that was not addressed earlier.\"}\n", - "\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "def encode_prompt_QA(prompts=prompts, QA_list=[]):\n", " \"\"\"Encode multiple prompt instructions into a single string.\"\"\"\n", @@ -644,7 +492,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 122, "id": "39e8c494-c5a1-41c3-9830-94903bdef3f5", "metadata": {}, "outputs": [], @@ -654,7 +502,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 123, "id": "898c89a3-9bc4-4f26-9057-5edb2ca59ac3", "metadata": {}, "outputs": [ @@ -667,16 +515,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I initiate the green card process if my employer filed my H-1B and it was selected in the lottery?\",\n", - "\"_answer\": \"Yes, the employer can begin the green card process before you join. To check the salary requirements for EB-2 advanced degree holders, you can look at this link -https://www.flcdatacenter.com/\"}\n", + "{\"_question\": \"Can I initiate the green card process if my employer files an H-1B and it is picked in the lottery?\",\n", + "\"_answer\": \"Yes, the employer can begin the green card process at any time, even before you start working. To check the salary requirements by county and profession, you can look at this link -https://www.flcdatacenter.com/\"}\n", "\n", "######\n", - "{\"_question\": \"If my employer submitted an H-1B for me and it was chosen in the lottery, can I start the green card process?\",\n", - "\"_answer\": \"Yes, the employer can initiate the green card process before you join. To view the salary caps for EB-2 advanced degree holders, you can refer to this link -https://www.flcdatacenter.com/\"}\n", + "{\"_question\": \"If my employer files an H-1B and it is selected in the lottery, can I begin the green card process?\",\n", + "\"_answer\": \"Yes, the employer can initiate the green card process before you even start working. To view the salary limits by county and job, you can refer to this link -https://www.flcdatacenter.com/\"}\n", "\n", "######\n", - "{\"_question\": \"If my employer filed an H-1B for me and it was picked in the lottery, can I initiate the green card process?\",\n", - "\"_answer\": \"Yes, the employer can initiate the green card process before you join. To check the salary requirements for EB-2 advanced degree holders, you can look at this link -https://www.flcdatacenter.com/\"} \n", + "{\"_question\": \"If my employer files an H-1B and it is chosen in the lottery, am I able to start the green card process?\",\n", + "\"_answer\": \"Yes, the employer can initiate the green card process before you begin working. To check the salary caps by county and occupation, you can look at this link -https://www.flcdatacenter.com/\"} \n", "\n", "\n", "\n", @@ -685,16 +533,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the eligibility and process for porting from EB-3 to EB-2 for a pending I-485? Does it require a new I-485 application or just a letter to USCIS?\",\n", - "\"_answer\": \"It is possible to move up or down in classification as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. However, if the PERM was filed as an EB-2, it is possible to downgrade the I-140 to EB-3. It is also possible to upgrade to EB-2 if an EB-2 approval already exists. A downgrade second case as EB-3 with the same PERM can be filed. For more information, please refer to the FAQs.\"}\n", + "{\"_question\": \"What is the eligibility and process for porting from EB-3 to EB-2 for an I-485 pending application?\", \n", + "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 as long as the PERM was initially filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade. However, if the PERM was filed as an EB-2, then you can downgrade the I-140 to EB-3 and then upgrade back to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For more information, please refer to the FAQs.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the requirements and steps for porting from EB-3 to EB-2 for a pending I-485? Is a new I-485 application necessary or just a letter to USCIS?\",\n", - "\"_answer\": \"It is possible to move up or down in classification as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. However, if the PERM was filed as an EB-2, it is possible to downgrade the I-140 to EB-3. It is also possible to upgrade to EB-2 if an EB-2 approval already exists. A downgrade second case as EB-3 with the same PERM can be filed. For more information, please consult the FAQs.\"}\n", + "{\"_question\": \"What is the eligibility and procedure for changing from EB-3 to EB-2 for a pending I-485?\", \n", + "\"_answer\": \"It is possible to move up from EB-3 to EB-2 as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade. However, if the PERM was filed as an EB-2, then you can downgrade the I-140 to EB-3 and then upgrade back to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For more information, please refer to the FAQs.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the eligibility and procedure for porting from EB-3 to EB-2 for a pending I-485? Is a new I-485 application necessary or just a letter to USCIS?\",\n", - "\"_answer\": \"It is possible to move up or down in classification as long as the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade to EB-2. However, if the PERM was filed as an EB-2, it is possible to downgrade the I-140 to EB-3. It is also possible to upgrade to EB-2 if an EB-2 approval already exists. A downgrade second case as EB-3 with the same PERM can be filed. For more information, please refer to the FAQs.\"} \n", + "{\"_question\": \"What is the eligibility and process for porting from EB-3 to EB-2 for an I-485 that is pending?\", \n", + "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 as long as the PERM was initially filed as an EB-2. If the PERM was filed as an EB-3, then it is not possible to upgrade. However, if the PERM was filed as an EB-2, then you can downgrade the I-140 to EB-3 and then upgrade back to EB-2 if you already have an EB-2 approval. You can file a downgrade second case as EB-3 with the same PERM. For further details, please refer to the FAQs.\"} \n", "\n", "\n", "\n", @@ -703,16 +551,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is this the right time to apply for an EB1C in the next couple of months when I have completed one year, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"It is important to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from the start, as trying to plan for it a year down the line is unlikely to be successful.\"}\n", + "{\"_question\": \"What are my chances of getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in the US and Canada. I was recently promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. Is this the right time to apply for an EB1C in the next couple of months when I complete one year, or should I wait for the visa ban to end?\",\n", + "\"_answer\": \"It is important to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from the start, as if you wait a year to plan for it, you may not be successful.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me obtaining an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is now the right time to apply for an EB1C in the next couple of months when I have completed one year, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"It is important to consult with your lawyers about your job description that is intended in the foreign country outside the US. Make sure you plan for it from the beginning, as attempting to plan for it a year down the line is unlikely to be successful.\"}\n", + "{\"_question\": \"What are the chances of me obtaining an L1A visa? I had been in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in the US and Canada. Recently, I was promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. Is now the right time to apply for an EB1C in the next couple of months when I complete one year, or should I wait for the visa ban to finish?\",\n", + "\"_answer\": \"It is essential to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from the beginning, as if you wait a year to plan for it, you may not be successful.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I have since been promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an approved I-140 and my priority date is July 2012. Is this the right time to apply for an EB1C in the next couple of months when I have completed one year, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"It is essential to discuss your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from day one because if you try to plan for it a year down the line you won't succeed.\"} \n", + "{\"_question\": \"What are the odds of me getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I moved to Canada as a Software Development Manager, managing 5 direct reports and 4 second level reports with the same company in the US and Canada. Recently, I was promoted to Director of Software Development Projects Support and Maintenance, before completing one year as Manager. I have an I-140 approved and my priority date is July 2012. Is this the correct time to apply for an EB1C in the next couple of months when I complete one year, or should I wait for the visa ban to end?\",\n", + "\"_answer\": \"It is important to consult your job description that is intended in the foreign country outside the US with your lawyers. Make sure you plan for it from day one because if you try to plan for it a year down the line you won't succeed.\"} \n", "\n", "\n", "\n", @@ -721,16 +569,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Would it be beneficial for my wife and I to switch from EB-2 to EB-3?\",\n", + "{\"_question\": \"Would it be a good idea for my wife and I to switch from EB-2 to EB-3 for our I-485 application, given that the EB-3 category is now ahead of EB-2?\",\n", "\"_answer\": \"It could be beneficial to apply for EB-3 and then use whichever one is faster when the time comes.\"}\n", "\n", "######\n", - "{\"_question\": \"Should we switch from EB-2 to EB-3?\",\n", - "\"_answer\": \"It may be advantageous to submit an EB-3 application and then use whichever one is faster when the time arrives.\"}\n", - "\n", - "######\n", - "{\"_question\": \"Is it a good idea to downgrade from EB-2 to EB-3?\",\n", - "\"_answer\": \"It could be beneficial to apply for EB-3 and then utilize whichever one is quicker when the time comes.\"} \n", + "{\"_question\": \"My wife and I have been on EADs since 2012 when the dates became current for our priority date. We are currently in the EB-2 category, but the EB-3 is now ahead. Is it a good idea to switch to EB-3 and apply for the I-140 under EB-3?\",\n", + "\"_answer\": \"It may be advantageous to apply for EB-3 and then utilize whichever one is faster when the time comes.\"} \n", "\n", "\n", "\n", @@ -739,16 +583,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What can I do to ensure I get a three year H-1B approval instead of a shorter duration? I already have an H-1B approval for one year that expires on October 27th, 2019 and I work through a consultancy. Are there any precautions I should take for the future? Are there any particular documents I need to get the H-1B approved for three years? If I go for stamping, do I need to be careful with social media at the port of entry? Are there any tips or recommendations you can provide with regards to social media during port of entry? My EB2 priority date is February 4th, 2015 and I am planning to marry a girl who is a Nepal citizen and she is on OPT right now. Can I move my priority date to EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for I-485 interview?\",\n", - "\"_answer\": \"Typically the only way you can get a three year extension is if you can prove that the project will go on for three years.\"}\n", + "{\"_question\": \"What can I do to ensure my H-1B is approved for a three year period, rather than a shorter duration? I got my H-1B approved for one year and it expires on October 27th, 2019. I work through a consultancy. Are there any steps I can take to help me get the H-1B approved for three years when I apply for an extension after October 27th, 2019? What documents do I need to get the H-1B approved for three years? If I go for stamping, do I need to be careful with my social media at the port of entry? Are there any tips or recommendations you can give me regarding social media when I go to the port of entry? My EB2 priority date is February 4th, 2015 and I'm planning to marry a girl who is a Nepal citizen and she's on OPT right now. Can I move my priority date to the EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for an I-485 interview?\",\n", + "\"_answer\": \"Typically the only way you can get three year extension is if you can prove that the project will go on for three years.\"}\n", "\n", "######\n", - "{\"_question\": \"What can I do to make sure I get a three year H-1B approval instead of a shorter duration? I already have an H-1B approval for one year that expires on October 27th, 2019 and I work through a consultancy. Are there any steps I should take for the future? Are there any documents I need to get the H-1B approved for three years? If I go for stamping, do I need to be mindful of social media at the port of entry? Are there any tips or advice you can provide with regards to social media during port of entry? My EB2 priority date is February 4th, 2015 and I am planning to marry a girl who is a Nepal citizen and she is on OPT right now. Can I move my priority date to EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for I-485 interview?\",\n", - "\"_answer\": \"Generally the only way you can get a three year extension is if you can demonstrate that the project will go on for three years.\"}\n", + "{\"_question\": \"What can I do to make sure my H-1B is approved for a three year period, not a shorter duration? I got my H-1B approved for one year and it expires on October 27th, 2019. I work through a consultancy. Are there any precautions I can take in the future to help me get the H-1B approved for three years when I apply for an extension after October 27th, 2019? What documents are necessary for getting the H-1B approved for three years? If I go for stamping, do I need to be mindful of my social media at the port of entry? Are there any tips or advice you can give me regarding social media when I go to the port of entry? My EB2 priority date is February 4th, 2015 and I'm planning to marry a girl who is a Nepal citizen and she's on OPT right now. Can I move my priority date to the EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for an I-485 interview?\",\n", + "\"_answer\": \"Generally the only way you can get three year extension is if you can demonstrate that the project will go on for three years.\"}\n", "\n", "######\n", - "{\"_question\": \"What can I do to guarantee I get a three year H-1B approval instead of a shorter duration? I already have an H-1B approval for one year that expires on October 27th, 2019 and I work through a consultancy. Are there any precautions I should take for the future? Are there any particular documents I need to get the H-1B approved for three years? If I go for stamping, do I need to be careful with social media at the port of entry? Are there any tips or recommendations you can give with reference to social media during port of entry? My EB2 priority date is February 4th, 2015 and I am planning to marry a girl who is a Nepal citizen and she is on OPT right now. Can I move my priority date to EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for I-485 interview?\",\n", - "\"_answer\": \"Typically the only way you can get a three year extension is if you can prove that the project will continue for three years.\"} \n", + "{\"_question\": \"What can I do to ensure my H-1B is approved for a three year period, not a shorter duration? I got my H-1B approved for one year and it expires on October 27th, 2019. I work through a consultancy. Are there any steps I can take to help me get the H-1B approved for three years when I apply for an extension after October 27th, 2019? What documents do I need to get the H-1B approved for three years? If I go for stamping, do I need to be careful with my social media at the port of entry? Are there any tips or recommendations you can give me regarding social media when I go to the port of entry? My EB2 priority date is February 4th, 2015 and I'm planning to marry a girl who is a Nepal citizen and she's on OPT right now. Can I move my priority date to the EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for an I-485 interview?\",\n", + "\"_answer\": \"Generally the only way you can get three year extension is if you can prove that the project will go on for three years.\"} \n", "\n", "\n", "\n", @@ -761,12 +605,12 @@ "\"_answer\": \"I don't think you would be able to get a tourist visa or tourist status, but you can apply for it.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me staying in the US after my H-1B and I-94 end?\",\n", - "\"_answer\": \"It is unlikely that you would be granted a tourist visa or tourist status, but you can try to apply for it.\"}\n", + "{\"_question\": \"What are the chances of me staying in the US after my H-1B and I-94 expire?\",\n", + "\"_answer\": \"I don't think you would be able to acquire a tourist visa or tourist status, but you can attempt to apply for it.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the options for me to remain in the US legally after my H-1B and I-94 expire?\",\n", - "\"_answer\": \"It is unlikely that you would be able to obtain a tourist visa or tourist status, but you can attempt to apply for it.\"} \n", + "{\"_question\": \"What are the options for me to stay in the US after my H-1B and I-94 expire?\",\n", + "\"_answer\": \"I don't think you would be able to obtain a tourist visa or tourist status, but you can try to apply for it.\"} \n", "\n", "\n", "\n", @@ -775,16 +619,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I downgrade my case from EB-2 to EB-3 for priority date advantage while still working with my current employer since 2008? My green card was filed in EB-2 with an August 2010 priority date and only the I-140 has been approved so far. What is the process for this and do I need to file a new labor and I-140?\",\n", - "\"_answer\": \"Your EB-2 filing will not be affected. You can file an EB-3/I-140 and, if your dates are current, you can also file an I-485.\"}\n", + "{\"_question\": \"Can I downgrade my case from EB-2 to EB-3 to take advantage of the priority date? I have been with my current employer since 2008 and my green card was filed under EB-2 with an August 2010 priority date. Only the I-140 has been approved so far.\",\n", + "\"_answer\": \"Your EB-2 filing will not be affected. You can file an EB-3/I-140 and, if your dates are current, you may also be able to file an I-485.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have been with my current employer since 2008 and my green card was filed in EB-2 with an August 2010 priority date and only the I-140 has been approved so far, can I switch to EB-3 for priority date advantage without affecting my existing EB-2 filing? What is the procedure for this and do I need to submit a new labor and I-140?\",\n", - "\"_answer\": \"Your EB-2 filing will remain intact. You can submit an EB-3/I-140 and, if your dates are current, you can also file an I-485.\"}\n", + "{\"_question\": \"Is it possible to switch my case from EB-2 to EB-3 to gain priority date benefits? I have been with my current employer since 2008 and my green card was submitted under EB-2 with an August 2010 priority date. Only the I-140 has been approved thus far.\",\n", + "\"_answer\": \"Your EB-2 filing will remain unaffected. You can file an EB-3/I-140 and, if your dates are current, you may also be able to file an I-485.\"}\n", "\n", "######\n", - "{\"_question\": \"I have been with my current employer since 2008 and my green card was filed in EB-2 with an August 2010 priority date and only the I-140 has been approved so far. Is it possible to downgrade to EB-3 for priority date advantage without affecting my existing EB-2 filing? What is the process for this and do I need to resubmit my labor and I-140?\",\n", - "\"_answer\": \"Your EB-2 filing will remain unaffected. You can file an EB-3/I-140 and, if your dates are current, you can also submit an I-485.\"} \n", + "{\"_question\": \"Can I lower the classification of my case from EB-2 to EB-3 to take advantage of the priority date? I have been with my current employer since 2008 and my green card was filed under EB-2 with an August 2010 priority date. Only the I-140 has been approved up to this point.\",\n", + "\"_answer\": \"Your EB-2 filing will remain intact. You can file an EB-3/I-140 and, if your dates are current, you may also be able to file an I-485.\"} \n", "\n", "\n", "\n", @@ -793,16 +637,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"I have an EB-2 approval and am applying for EB-3. I filed for EB-3 in 2011 and ported to EB-2, and now EB-3 dates are progressing. If the priority date reaches mine, am I still qualified for EB-3 as I initially applied for, or do I need to downgrade to EB-3? Will there be any queries?\",\n", - "\"_answer\": \"This is mainly a matter of process and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the same labor certification - PERM application and get an EB-3 approval first.\"}\n", + "{\"_question\": \"I have an EB-2 approval and I am applying for EB-3. I applied for EB3 in 2011 and ported to EB2. Now, EB3 dates are advancing and if it reaches my priority date, am I still eligible for EB3 as I initially applied for or do I need to downgrade to EB3? Will there be any questions raised?\",\n", + "\"_answer\": \"This is mostly a matter of procedure and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the copy of the same labor certification - PERM application and get an EB-3 approval first.\"}\n", "\n", "######\n", - "{\"_question\": \"I have an EB-2 approval and am applying for EB-3. I filed for EB-3 in 2011 and ported to EB-2, and now EB-3 dates are advancing. If the priority date reaches mine, am I still eligible for EB-3 as I initially applied for, or do I need to downgrade to EB-3? Will there be any questions asked?\",\n", - "\"_answer\": \"This is mainly a question of procedure and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the same labor certification - PERM application and get an EB-3 approval first.\"}\n", + "{\"_question\": \"I have an EB-2 approval and I am applying for EB-3. I filed for EB3 in 2011 and switched to EB2. Now, EB3 dates are progressing and if it reaches my priority date, am I still qualified for EB3 as I initially applied for or do I need to downgrade to EB3? Will there be any queries raised?\",\n", + "\"_answer\": \"This is mostly an issue of procedure and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the copy of the same labor certification - PERM application and get an EB-3 approval first.\"}\n", "\n", "######\n", - "{\"_question\": \"I have an EB-2 approval and am applying for EB-3. I filed for EB-3 in 2011 and ported to EB-2, and now EB-3 dates are moving forward. If the priority date reaches mine, am I still qualified for EB-3 as I initially applied for, or do I need to downgrade to EB-3? Will there be any queries raised?\",\n", - "\"_answer\": \"This is mainly a matter of process and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the same labor certification - PERM application and obtain an EB-3 approval first.\"} \n", + "{\"_question\": \"I have an EB-2 approval and I am applying for EB-3. I put in for EB3 in 2011 and changed to EB2. Now, EB3 dates are moving ahead and if it reaches my priority date, am I still eligible for EB3 as I initially applied for or do I need to downgrade to EB3? Will there be any questions posed?\",\n", + "\"_answer\": \"This is mostly a question of procedure and policy. The USCIS has been indicating that if you have only one I-140 approved under EB-2 but you want to file under EB-3, you have to file another I-140 using the copy of the same labor certification - PERM application and get an EB-3 approval first.\"} \n", "\n", "\n", "\n", @@ -811,16 +655,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the implications of not working for the green card sponsoring company after receiving the green card? Is there a chance of my green card being revoked and me being deported?\", \n", - "\"_answer\": \"This is a difficult situation. It is possible that your green card could be revoked and you could be deported, but I would argue that this is a valid situation since you took the job and are just working for the company's operations outside the US temporarily. It is a touch and go situation, so it is best to consult a lawyer.\"}\n", + "{\"_question\": \"What should I do if I have been working for the same company since 2004, but after receiving my green card, I have not worked for the company in the US and I don't have a single paycheck from a US company? I have two US-born children, always paid taxes on time, and no legal cases. Is there a chance that my green card will be revoked and I will be deported?\",\n", + "\"_answer\": \"This is a difficult situation. I would suggest that you take a lawyer with you to argue that you took the job after receiving the green card and you are just working for the company's operations outside the US temporarily. It may be a touch and go, but that is what I would suggest.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the risks of not working for the green card sponsoring company after receiving the green card? Could my green card be taken away and I be deported?\", \n", - "\"_answer\": \"This is a difficult situation. It is possible that your green card could be revoked and you could be deported, but I would suggest that this is a valid situation since you accepted the job and are just working for the company's operations outside the US temporarily. It is a risky situation, so it is best to consult a lawyer.\"}\n", + "{\"_question\": \"I have been with the same company since 2004 and I have not worked for them in the US after receiving my green card. I do not have a single paycheck from a US company. I have two US-born children, always paid taxes on time, and no legal cases. Is there a chance that my green card will be revoked and I will be deported?\",\n", + "\"_answer\": \"This is a difficult situation. I would recommend that you take a lawyer with you to make the argument that you took the job after getting the green card and you are just working for the company's operations outside the US temporarily. It may be a risky situation, but that is what I would recommend.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the consequences of not working for the green card sponsoring company after receiving the green card? Is there a chance of my green card being taken away and me being deported?\", \n", - "\"_answer\": \"This is a difficult situation. It is possible that your green card could be revoked and you could be deported, but I would argue that this is a valid situation since you took the job and are just working for the company's operations outside the US temporarily. It is a precarious situation, so it is best to consult a lawyer.\"} \n", + "{\"_question\": \"I have been with the same company since 2004 and I have not worked for them in the US after receiving my green card. I do not have a single paycheck from a US company. I have two US-born children, always paid taxes on time, and no legal cases. Is there a chance that my green card will be revoked and I will be deported?\",\n", + "\"_answer\": \"This is a difficult situation. I would advise that you take a lawyer with you to argue that you took the job after getting the green card and you are just working for the company's operations outside the US temporarily. It may be a gamble, but that is what I would advise.\"} \n", "\n", "\n", "\n", @@ -830,15 +674,15 @@ "\n", "######\n", "{\"_question\": \"What will happen if I attempt to downgrade from EB-2 to EB-3 and my newly filed I-140 is denied? Can I use my previously approved I-140 (EB-2)?\",\n", - "\"_answer\": \"If you file an I-485 prematurely when the priority date of EB-2 is not current, and the EB-3 filing is denied, the I-485 will also be denied. It is important to have your lawyer review your case carefully to ensure there are no other issues. If the second EB-3 filing is denied, it should not have any impact on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", + "\"_answer\": \"If you file an I-485 prematurely when the priority date of EB-2 is not current, and the EB-3 filing is denied, then the I-485 will also be denied. It is important to have your lawyer review your case carefully to ensure there are no other issues. If the second EB-3 filing is denied, it should not have any impact on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", "\n", "######\n", - "{\"_question\": \"What will be the outcome if I try to downgrade from EB-2 to EB-3 and my new I-140 is rejected? Can I still use my previously approved I-140 (EB-2)?\",\n", - "\"_answer\": \"If you submit an I-485 before the priority date of EB-2 is current, and the EB-3 filing is denied, the I-485 will also be denied. It is important to have your lawyer review your case thoroughly to make sure there are no other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", + "{\"_question\": \"What will be the outcome if I try to switch from EB-2 to EB-3 and my new I-140 is rejected? Can I still use my earlier approved I-140 (EB-2)?\",\n", + "\"_answer\": \"If you file an I-485 before the priority date of EB-2 is current, and the EB-3 application is denied, then the I-485 will also be denied. It is important to have your lawyer review your case thoroughly to make sure there are no other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", "\n", "######\n", "{\"_question\": \"What will happen if I try to downgrade from EB-2 to EB-3 and my new I-140 is denied? Can I still use my previously approved I-140 (EB-2)?\",\n", - "\"_answer\": \"If you file an I-485 prematurely when the priority date of EB-2 is not current, and the EB-3 filing is rejected, the I-485 will also be denied. It is important to have your lawyer review your case carefully to make sure there are no other issues. If the second EB-3 filing is denied, it should not have any effect on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"} \n", + "\"_answer\": \"If you submit an I-485 prematurely when the priority date of EB-2 is not current, and the EB-3 filing is denied, then the I-485 will also be denied. It is essential to have your lawyer review your case carefully to make sure there are no other issues. If the second EB-3 filing is denied, it should not have any impact on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"} \n", "\n", "\n", "\n", @@ -847,16 +691,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the process for obtaining an EB-2 green card with a master's degree from an accredited university?\",\n", - "\"_answer\": \"In order to receive an EB-2 green card with a master's degree, you must attend an accredited university. The US Department of Education maintains a list of state level agencies who can accredit programs and your university should be able to tell you who has credentials or accredited them or their programs.\"}\n", + "{\"_question\": \"What do I need to do to get a master's degree from an accredited university to process an EB-2 green card?\", \n", + "\"_answer\": \"You need to check with your university to see which state level agency has accredited their programs in order to get an educational evaluation for an EB-2 status.\"}\n", "\n", "######\n", - "{\"_question\": \"What do I need to do to get an EB-2 green card with a master's degree from an accredited university?\",\n", - "\"_answer\": \"To receive an EB-2 green card with a master's degree, you must attend an accredited university. The US Department of Education has a list of state level agencies who can accredit programs and your university should be able to provide information on who has credentials or accredited them or their programs.\"}\n", + "{\"_question\": \"What is the requirement for getting an EB-2 green card with a master's degree from an accredited university?\", \n", + "\"_answer\": \"You need to find out which state level agency has accredited the university's programs in order to get an educational evaluation for an EB-2 status.\"}\n", "\n", "######\n", - "{\"_question\": \"How can I get an EB-2 green card with a master's degree from an accredited university?\",\n", - "\"_answer\": \"To obtain an EB-2 green card with a master's degree, you must attend an accredited university. The US Department of Education has a list of state level agencies who can accredit programs and your university should be able to tell you who has credentials or accredited them or their programs.\"} \n", + "{\"_question\": \"What do I need to do to get an educational evaluation for an EB-2 status with a master's degree from an accredited university?\", \n", + "\"_answer\": \"You should contact your university to determine which state level agency has accredited their programs in order to get the evaluation.\"} \n", "\n", "\n", "\n", @@ -865,16 +709,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to initiate a green card application while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed for an H1B this year and I am waiting for the approval. Could my employer start the green card process while I am in F1 status?\",\n", - "\"_answer\": \"For individuals from countries with backlogged priority dates, such as India, China, Philippines, and Mexico, it is not recommended to initiate a green card application while on F-1 status. This is because F-1 status does not permit dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If one files for a green card under F-1 status, they may have difficulty obtaining extensions, visa stamping, or reentry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not backlogged, it may be possible to complete the green card process within a year under EB-1, EB-2, or EB-3 categories.\"}\n", + "{\"_question\": \"Is it feasible to initiate a green card application while on F-1 status? I am currently on F1 OPT with employer A, and they have filed an H1B for me this year. Can my employer begin the green card process while I am in F1 status?\",\n", + "\"_answer\": \"For individuals from countries with long wait times for priority dates, such as India, China, Philippines, and Mexico, it is not recommended to start a green card application while on F-1 status. This is because F-1 does not allow for dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If you are from a country with shorter wait times, such as Saudi Arabia, Pakistan, Nepal, or Europe, it may be possible to complete the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I begin the green card process while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed for an H1B this year and I am waiting for the approval. Is it possible for my employer to start the green card process while I am in F1 status?\",\n", - "\"_answer\": \"For those from countries with backlogged priority dates, such as India, China, Philippines, and Mexico, it is not advisable to start the green card process while on F-1 status. This is because F-1 status does not allow for dual intent, unlike statuses like H-1, H-4, L-1, L-2, and O-1. If one files for a green card under F-1 status, they may have difficulty obtaining extensions, visa stamping, or reentry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not backlogged, it may be possible to complete the green card process within a year under EB-1, EB-2, or EB-3 categories.\"}\n", + "{\"_question\": \"Is it a good idea to start a green card application while on F-1 status? I am currently on F1 OPT with employer A, and they have filed an H1B for me this year. Can my employer initiate the green card process while I am in F1 status?\",\n", + "\"_answer\": \"For people from countries with long wait times for priority dates, such as India, China, Philippines, and Mexico, it is not advisable to begin a green card application while on F-1 status. This is because F-1 does not permit dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If you are from a country with shorter wait times, such as Saudi Arabia, Pakistan, Nepal, or Europe, it may be possible to finish the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to initiate a green card application while on F-1 status? I am currently on F1 OPT and working for Employer A. My Employer A has filed for an H1B this year and I am waiting for the approval. Could my employer begin the green card process while I am in F1 status?\",\n", - "\"_answer\": \"For individuals from countries with backlogged priority dates, such as India, China, Philippines, and Mexico, it is not recommended to initiate a green card application while on F-1 status. This is because F-1 status does not allow for dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If one files for a green card under F-1 status, they may have difficulty obtaining extensions, visa stamping, or reentry into the US. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or Europe, where priority dates are not backlogged, it may be possible to complete the green card process within a year under EB-1, EB-2, or EB-3 categories.\"} \n", + "{\"_question\": \"Is it wise to initiate a green card application while on F-1 status? I am currently on F1 OPT with employer A, and they have filed an H1B for me this year. Can my employer start the green card process while I am in F1 status?\",\n", + "\"_answer\": \"For individuals from countries with long wait times for priority dates, such as India, China, Philippines, and Mexico, it is not recommended to commence a green card application while on F-1 status. This is because F-1 does not allow for dual intent, whereas statuses like H-1, H-4, L-1, L-2, and O-1 do. If you are from a country with shorter wait times, such as Saudi Arabia, Pakistan, Nepal, or Europe, it may be possible to complete the green card process within a year under the EB-1, EB-2, or EB-3 categories.\"} \n", "\n", "\n", "\n", @@ -883,12 +727,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to submit multiple green card applications at the same time? What could be the consequences?
My employer has already filed a green card application for me in the EB-2 category and the I-140 has been approved with a priority date of 2013. Can I try to apply for an EB-1 green card on my own? If the EB-1 application is not approved, will it affect my EB-2 green card?
Should the job description be the same for both EB-1 and EB-2?
What potential issues could arise?\",\n", - "\"_answer\": \"Yes, it is possible to submit multiple green card applications simultaneously. This can include both employment and family or investment applications. As long as the applications are filed honestly, any number of green cards can be submitted.
Trying to apply for an EB-1 green card on your own will not affect your EB-2 green card, even if the EB-1 application is not approved.
The job description does not need to be the same for both EB-1 and EB-2.
Potential issues that could arise include delays in processing, incorrect information being submitted, or the application being denied.\"}\n", + "{\"_question\": \"Is it possible to submit multiple green card applications at the same time? What could be the consequences?
My company has already filed my green card in the EB-2 category and my I-140 has been approved with a priority date of 2013. Can I try to apply for an EB-1 category myself? If my EB-1 application is not approved, will it have an effect on my EB-2 green card?
Should my job description be the same for both EB-1 and EB-2?
What are the potential issues that could arise?\",\n", + "\"_answer\": \"Yes, you can submit multiple green card applications simultaneously. This can be done through employment, family, or investment. As long as the applications are filed honestly, any number of green cards can be submitted.
Trying to apply for an EB-1 category yourself will not have an effect on your EB-2 green card, regardless of the outcome.
Your job description does not need to be the same for both EB-1 and EB-2.
Potential issues that could arise include delays in processing, incorrect information, or denial of the application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is it permissible to file for multiple green cards at once? What could be the repercussions?
My employer has already submitted my green card application in the EB-2 category and my I-140 has been approved with a priority date of 2013. Could I attempt to apply for an EB-1 category on my own? If my EB-1 application is not accepted, will it have an impact on my EB-2 green card?
Should my job description be the same for both EB-1 and EB-2?
What are the potential problems that could arise?\",\n", + "\"_answer\": \"Yes, it is possible to file for multiple green cards at the same time. This can be done through employment, family, or investment. As long as the applications are filed honestly, any number of green cards can be submitted.
Attempting to apply for an EB-1 category yourself will not have an effect on your EB-2 green card, regardless of the outcome.
Your job description does not need to be the same for both EB-1 and EB-2.
Potential problems that could arise include delays in processing, incorrect information, or denial of the application.\"}\n", "\n", "######\n", - "{\"_question\": \"Can multiple green cards be filed at the same time? What would be the potential repercussions?
My employer has already filed a green card application for me in the EB-2 category and the I-140 has been approved with a priority date of 2013. Can I attempt to apply for an EB-1 green card on my own? If the EB-1 application is not accepted, will it have an effect on my EB-2 green card?
Do the job descriptions need to be the same for EB-1 and EB-2?
What could be the possible problems?\",\n", - "\"_answer\": \"Yes, multiple green cards can be filed at the same time. This can include both employment and family or investment applications. As long as the applications are filed honestly, any number of green cards can be submitted.
Trying to apply for an EB-1 green card on your own will not affect your EB-2 green card, even if the EB-1 application is not accepted.
The job descriptions do not need to be the same for EB-1 and EB-2.
Possible problems that could arise include delays in processing, incorrect information being submitted, or the application being denied.\"} \n", + "{\"_question\": \"Is it allowed to submit multiple green card applications at once? What could be the consequences?
My company has already filed my green card in the EB-2 category and my I-140 has been approved with a priority date of 2013. Could I try to apply for an EB-1 category myself? If my EB-1 application is not approved, will it have an effect on my EB-2 green card?
Should my job description be the same for both EB-1 and EB-2?
What are the possible issues that could arise?\",\n", + "\"_answer\": \"Yes, you can submit multiple green card applications simultaneously. This can be done through employment, family, or investment. As long as the applications are filed honestly, any number of green cards can be submitted.
Trying to apply for an EB-1 category yourself will not have an effect on your EB-2 green card, regardless of the outcome.
Your job description does not need to be the same for both EB-1 and EB-2.
Possible issues that could arise include delays in processing, incorrect information, or denial of the application.\"} \n", "\n", "\n", "\n", @@ -897,16 +745,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the processing times for NIW? I'm in the EB2 category and I'm concerned that it may take a while before I can get my EAD card and change employers. Are there any issues if I switch employers during the process?\",\n", - "\"_answer\": \"If you are a self-applicant and will continue to work in your stated area of national interest, you can change employers at any time. However, the NIW priority date will take the same amount of time as a normal EB-2 application. See: http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", + "{\"_question\": \"What are the processing times for NIW? I'm in the EB2 category and I'm worried it will take a long time to get my EAD card and switch employers. Could there be any issues if I change employers during the process?\",\n", + "\"_answer\": \"If you are a self-applicant and will still be working in the same area of national interest, you can switch employers at any time. The NIW priority date will take the same amount of time as a regular EB2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the timeline for NIW? I'm in the EB2 category and I'm worried that it may take a while before I can get my EAD card and switch employers. Are there any problems if I change employers during the process?\",\n", - "\"_answer\": \"If you are a self-applicant and will still be working in your stated area of national interest, you can change employers at any time. However, the NIW priority date will take the same amount of time as a normal EB-2 application. Check out: http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", + "{\"_question\": \"How long will the NIW process take? I'm in the EB2 category and I'm concerned it will take a long time to get my EAD card and move to a new employer. Could there be any problems if I change employers during the process?\",\n", + "\"_answer\": \"If you are a self-applicant and will still be working in the same area of national interest, you can change employers whenever you want. The NIW priority date will take the same amount of time as a regular EB2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", "\n", "######\n", - "{\"_question\": \"How long does NIW take? I'm in the EB2 category and I'm concerned that it may take a while before I can get my EAD card and change employers. Are there any issues if I switch employers during the process?\",\n", - "\"_answer\": \"If you are a self-applicant and will remain working in your stated area of national interest, you can change employers at any time. However, the NIW priority date will take the same amount of time as a normal EB-2 application. See: http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"} \n", + "{\"_question\": \"What is the timeline for NIW? I'm in the EB2 category and I'm worried it will take a long time to get my EAD card and change employers. Could there be any issues if I switch employers during the process?\",\n", + "\"_answer\": \"If you are a self-applicant and will still be working in the same area of national interest, you can switch employers at any time. The NIW priority date will take the same amount of time as a regular EB2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"} \n", "\n", "\n", "\n", @@ -915,16 +763,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"what is the purpose of form g-884 (returns of original documents)? i had my i-140 approved and ead with eb2 category in april 2012. i do not have my green card documents such as i-140 approval copy, labor code etc. as my employer did not give them to me. i heard that i can use form g-884 to get all my green card documents from uscis. can i do this without knowing my employer?\",\n", - "\"_answer\": \"form g-884 is used to request return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"}\n", + "{\"_question\": \"I got my I-140 approved and EAD with EB2 category in April 2012. I need to change my employer but they did not give me my green card papers like I-140 approval copy, labor code etc. Is there a way to obtain all my green card documents from USCIS without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to request the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). Use FOIA for the purpose you are considering.\"}\n", "\n", "######\n", - "{\"_question\": \"what is the use of form g-884 (returns of original documents)? i was approved for i-140 and ead with eb2 category in april 2012. my employer did not give me my green card documents such as i-140 approval copy, labor code etc. i heard that i can use form g-884 to get all my green card documents from uscis. can i do this without knowing my employer?\",\n", - "\"_answer\": \"form g-884 is used to request return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"}\n", + "{\"_question\": \"I was approved for my I-140 and EAD with EB2 category in April 2012. I am looking to switch employers, but they did not give me my green card documents such as the I-140 approval copy, labor code etc. Is there a way to get all my green card documents from USCIS without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to ask for the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). Utilize FOIA for the purpose you are considering.\"}\n", "\n", "######\n", - "{\"_question\": \"what is the purpose of form g-884 (returns of original documents)? i had my i-140 approved and ead with eb2 category in april 2012. i do not have my green card documents such as i-140 approval copy, labor code etc. as my employer did not give them to me. i heard that i can use form g-884 to get all my green card documents from uscis. can i do this without knowing my employer's information?\",\n", - "\"_answer\": \"form g-884 is used to request return of documents you had sent to uscis (e.g., your collegedegrees and diplomas). use foia for the purpose you are considering.\"} \n", + "{\"_question\": \"I was granted my I-140 and EAD with EB2 category in April 2012. I am looking to change employers, but they did not give me my green card documents such as the I-140 approval copy, labor code etc. Is there a way to acquire all my green card documents from USCIS without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to request the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). Employ FOIA for the purpose you are considering.\"} \n", "\n", "\n", "\n", @@ -933,16 +781,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I submit an adjustment of status application if my 'schedule a' application is in the EB-2 or employment based second preference category?\", \n", - "\"_answer\": \"Yes, you can submit the adjustment of status application concurrently with the form I-140, provided that your priority date for EB-2 is current and not backlogged.\"}\n", + "{\"_question\": \"Can I submit an adjustment of status application if my 'schedule a' application is in the 'eb-2' category?\", \n", + "\"_answer\": \"It is possible to file concurrently if the priority date for eb-2 is current and not backlogged.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am applying for EB-2 physical therapist, can I file for adjustment of status concurrently?\", \n", - "\"_answer\": \"Yes, you can file for adjustment of status at the same time as the form I-140, provided that your priority date for EB-2 is not backlogged.\"}\n", + "{\"_question\": \"Is it possible to submit an adjustment of status application if my 'schedule a' application is in the 'eb-2' category?\", \n", + "\"_answer\": \"Yes, you can file concurrently if the priority date for eb-2 is current and not backlogged.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to submit an adjustment of status application if I am applying for EB-2 physical therapist?\", \n", - "\"_answer\": \"Yes, you can submit the adjustment of status application simultaneously with the form I-140, as long as your priority date for EB-2 is current and not delayed.\"} \n", + "{\"_question\": \"Can I file an adjustment of status application if my 'schedule a' application is in the 'eb-2' category?\", \n", + "\"_answer\": \"It is possible to submit concurrently if the priority date for eb-2 is current and not backlogged.\"} \n", "\n", "\n", "\n", @@ -951,16 +799,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the status of Obama's immigration action regarding I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category but I am waiting for the dates to become current. Will I be given any EAD based on the executive action?\",\n", - "\"_answer\": \"I have heard that there is a suggestion to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would grant you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document up to now.\"}\n", + "{\"_question\": \"What is the status of Obama's immigration action with regards to I-140 stage and H-1B visa holders?\", \n", + "\"_answer\": \"There is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would grant an Employment Authorization Document (EAD) as well as the right to change jobs under AC21. However, there is no clear indication about this proposal in any government document yet.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the status of Obama's immigration action with regards to I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category but I am waiting for the dates to become current. Would I be given any EAD due to the executive action?\",\n", - "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would provide you with an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document thus far.\"}\n", + "{\"_question\": \"What is the current situation regarding Obama's immigration action and I-140 stage for H-1B visa holders?\", \n", + "\"_answer\": \"There is a suggestion to permit filing of I-485 at the I-140 stage, without waiting for priority dates to be current. If this is put into effect, it would give an Employment Authorization Document (EAD) as well as the right to change jobs under AC21. Unfortunately, there is no definite information about this proposal in any government document at this time.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the status of Obama's immigration action in relation to I-140 stage? I am on an H-1B visa and my I-140 has been approved in the EB-2 category but I am waiting for the dates to become current. Could I be given any EAD based on the executive action?\",\n", - "\"_answer\": \"I have heard that there is a suggestion to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would give you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government document so far.\"} \n", + "{\"_question\": \"What is the current state of Obama's immigration action in regards to I-140 stage and H-1B visa holders?\", \n", + "\"_answer\": \"There is a proposal to allow filing of I-485 at the I-140 stage, without waiting for priority dates to be current. This, if implemented, would provide an Employment Authorization Document (EAD) as well as the right to change jobs under AC21. Unfortunately, there is no explicit indication about this proposal in any government document as of now.\"} \n", "\n", "\n", "\n", @@ -969,15 +817,15 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the options for expediting a pending I-485 application that has been in background checks for 2.5 years? Can a writ of mandamus be used to claim unreasonable delay? Can I accept a promotion with a director/managerial job title while using my EAD? Is switching to an H1-B a safe measure and what are the risks involved?\",\n", + "{\"_question\": \"What are my options to expedite the background checks for my I-485 application which has been pending for 2.5 years and current for 2.5 months?\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", "\n", "######\n", - "{\"_question\": \"What steps can be taken to speed up a 2.5 year old I-485 application that is in background checks? Is it possible to use a writ of mandamus to argue unreasonable delay? Is it permissible to accept a promotion with a director/managerial job title while using an EAD? Is switching to an H1-B a safe option and what are the risks associated with it?\",\n", + "{\"_question\": \"Can I use a writ of mandamus to address the unreasonable delay of my I-485 application which has been pending for 2.5 years and current for 2.5 months?\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", "\n", "######\n", - "{\"_question\": \"What can be done to expedite a 2.5 year old I-485 application that is in background checks? Is it possible to use a writ of mandamus to demonstrate unreasonable delay? Is it permissible to take a promotion with a director/managerial job title while using an EAD? Is switching to an H1-B a secure measure and what are the risks involved?\",\n", + "{\"_question\": \"What are the risks involved if I switch to an H1-B visa while my I-485 application is pending for 2.5 years and current for 2.5 months?\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"} \n", "\n", "\n", @@ -987,16 +835,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I use the experience I gained with an employer who has a tax ID number other than my petitioning employer while filing for PERM?\",\n", - "\"_answer\": \"Yes, it is generally accepted to use the experience gained with an employer who has a tax ID number other than your petitioning employer when filing for PERM.\"}\n", + "{\"_question\": \"Can I use my experience with my current employer in India while filing for a PERM?\",\n", + "\"_answer\": \"Yes, you can use the experience gained with an employer who has a tax id number other than your petitioning employer.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it permissible to use the experience I earned with a different employer than my petitioning employer when filing for PERM?\",\n", - "\"_answer\": \"Yes, it is generally accepted to use the experience gained with an employer who has a tax ID number other than your petitioning employer when filing for PERM.\"}\n", + "{\"_question\": \"Can I include my experience in India with my current employer when filing for a PERM?\",\n", + "\"_answer\": \"Yes, you may utilize the experience gained with an employer who has a tax id number other than your petitioning employer.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I use the experience I obtained from a different employer than my petitioning employer when filing for PERM?\",\n", - "\"_answer\": \"Yes, it is generally accepted to utilize the experience gained with an employer who has a tax ID number other than your petitioning employer when filing for PERM.\"} \n", + "{\"_question\": \"When filing for a PERM, can I use my experience with my current employer in India?\",\n", + "\"_answer\": \"Yes, you can use the experience acquired with an employer who has a tax id number different from your petitioning employer.\"} \n", "\n", "\n", "\n", @@ -1005,16 +853,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do internships count when determining eligibility for an EB-2 visa? I have two bachelor's degrees from US universities, a 3-year degree in science and a 2-year degree in engineering. I have also worked for four years in my current job. Should I wait another year to apply for the EB-2 visa or should I just apply for the EB-3 visa now?\",\n", - "\"_answer\": \"Internships do count as experience. You should first have your degrees evaluated according to AACRAO EDGE standards.\"}\n", + "{\"_question\": \"I have two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Am I eligible for an EB-2 visa with this? If I don't qualify for EB-2, should I wait another year to file EB-2 or just file EB-3 now? Do internships count when counting the number of years of work after school?\",\n", + "\"_answer\": \"Internships do count as experience. You should get your degrees evaluated under AACRAO EDGE standards first.\"}\n", "\n", "######\n", - "{\"_question\": \"What should I do if I have two bachelor's degrees from US universities, a 3-year degree in science and a 2-year degree in engineering, and I have worked for four years in my current job? Should I wait another year to apply for the EB-2 visa or should I just apply for the EB-3 visa now?\",\n", - "\"_answer\": \"You should first have your degrees evaluated according to AACRAO EDGE standards. Internships do count as experience when determining eligibility for an EB-2 visa.\"}\n", + "{\"_question\": \"I possess two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Could I be considered for an EB-2 visa with this? In the event that I don't qualify for EB-2, should I wait one more year to file EB-2 or just file EB-3 now? Do internships count when calculating the number of years of work after school?\",\n", + "\"_answer\": \"Internships are taken into account as experience. You should get your degrees evaluated under AACRAO EDGE standards first.\"}\n", "\n", "######\n", - "{\"_question\": \"I have two bachelor's degrees from US universities, a 3-year degree in science and a 2-year degree in engineering, and I have worked for four years in my current job. Am I eligible for an EB-2 visa? If not, should I wait another year to apply for the EB-2 visa or should I just apply for the EB-3 visa now?\",\n", - "\"_answer\": \"You should have your degrees evaluated according to AACRAO EDGE standards first. Internships do count as experience when determining eligibility for an EB-2 visa.\"} \n", + "{\"_question\": \"I have two bachelor's degrees from US universities. A 3-year bachelor degree in science and a 2-year bachelor's degree in engineering. Am I qualified for an EB-2 visa with this? If I don't meet the requirements for EB-2, should I wait another year to file EB-2 or just file EB-3 now? Do internships count when determining the number of years of work after school?\",\n", + "\"_answer\": \"Internships are counted as experience. You need to get your degrees evaluated under AACRAO EDGE standards first.\"} \n", "\n", "\n", "\n", @@ -1023,16 +871,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"How long do I need to wait to begin the green card process? Do I have the option to choose between EB-1 and EB-2? I don't have a bachelor's or master's degree, will that be a problem for applying for a green card? Should I only apply through my employer or can I do it myself?\",\n", - "\"_answer\": \"You can start the green card process without any delay. Yes, you can select between EB-1 and EB-2. Degree is not a requirement for international managers/executives. Your employer needs to apply.\"}\n", + "{\"_question\": \"What is the timeline for applying for a green card if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? I manage a team of 30 people located in Chennai, Shanghai, and San Jose. Do I have the option to choose between EB-1 and EB-2? I do not have a bachelor's or master's degree, will this be an issue when applying for a green card? Can I apply for a green card myself or must it be done through my employer?\",\n", + "\"_answer\": \"You can apply for green card without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the wait time to initiate the green card process? Is there an option to pick between EB-1 and EB-2? Do I need a bachelor's or master's degree to apply for a green card? Can I submit the application myself or must it be done through my employer?\",\n", - "\"_answer\": \"You can start the green card process right away. Yes, you can decide between EB-1 and EB-2. Degree is not a requirement for international managers/executives. Your employer needs to apply.\"}\n", + "{\"_question\": \"What is the timeline for submitting a green card application if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? Do I have the choice to select between EB-1 and EB-2? I do not have a bachelor's or master's degree, will this be a problem when applying for a green card? Can I apply for a green card independently or must it be done through my employer?\",\n", + "\"_answer\": \"You can apply for green card without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", "\n", "######\n", - "{\"_question\": \"How long before I can begin the green card process? Is there a choice of EB-1 or EB-2? Do I need a bachelor's or master's degree to apply for a green card? Can I apply on my own or must it be done through my employer?\",\n", - "\"_answer\": \"You can start the green card process immediately. Yes, you can opt for EB-1 or EB-2. Degree is not a requirement for international managers/executives. Your employer needs to apply.\"} \n", + "{\"_question\": \"What is the timeline for filing a green card application if I am an L1-A visa holder with 14 years of IT experience and have been in a managerial role for the past 3 years? Do I have the option to choose between EB-1 and EB-2? I do not have a bachelor's or master's degree, will this be a barrier for applying for a green card? Can I apply for a green card myself or must it be done through my employer?\",\n", + "\"_answer\": \"You can apply for green card without any wait. Yes, but EB-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"} \n", "\n", "\n", "\n", @@ -1041,16 +889,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"If I have a three year bachelor's degree from India and 16 years of experience in the US, and I am currently in the process of an EB-3 with a priority date of 10/2006, will I qualify for EB-2 if I pursue a master's degree (online or executive course) here?\",\n", - "\"_answer\": \"If the master's degree is accredited, you should not need to demonstrate post-master's experience for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should resolve it.\"}\n", + "{\"_question\": \"I have a three year bachelors from India and 16 years of experience in the US. I have a pending EB-3 with a priority date of 10/2006. If I pursue a master's degree here (online or executive course), will I qualify for EB-2 or do I need to demonstrate progressive experience since getting my master's?\",\n", + "\"_answer\": \"If the master's degree is accredited, you don't need to have post-master's experience for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should resolve it.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a three year bachelor's degree from India and 16 years of experience in the US. I am currently in the process of an EB-3 with a priority date of 10/2006. If I pursue a master's degree (online or executive course) here, will I qualify for EB-2?\",\n", - "\"_answer\": \"If the master's degree is accredited, you should not have to prove post-master's experience for EB-2. There could be some issues with the 3+2 pattern of education, but an accredited master's should address it.\"}\n", + "{\"_question\": \"I have a three year bachelors from India and 16 years of experience in the US. I have a pending EB-3 with a priority date of 10/2006. If I take a master's degree here (online or executive course), will I be eligible for EB-2 or do I need to show progressive experience since obtaining my master's?\",\n", + "\"_answer\": \"If the master's degree is accredited, you don't need post-master's experience for EB-2. There could be some issues with the 3+2 pattern of education, but an accredited master's should fix it.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a three year bachelor's degree from India and 16 years of experience in the US. I am currently in the process of an EB-3 with a priority date of 10/2006. Can I qualify for EB-2 if I pursue a master's degree (online or executive course) here?\",\n", - "\"_answer\": \"If the master's degree is accredited, you should not need to demonstrate post-master's experience for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should solve it.\"} \n", + "{\"_question\": \"I have a three year bachelors from India and 16 years of experience in the US. I have a pending EB-3 with a priority date of 10/2006. If I get a master's degree here (online or executive course), will I qualify for EB-2 or do I need to demonstrate progressive experience since getting my master's?\",\n", + "\"_answer\": \"If the master's degree is accredited, you don't need to have post-master's experience for EB-2. There may be some issues with the 3+2 pattern of education, but an accredited master's should solve it.\"} \n", "\n", "\n", "\n", @@ -1059,16 +907,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"I have a J-1 visa that will be valid for four more years. I am considering applying for an EB2-NIW. Will I have any issues with traveling if I am denied the EB2?\",\n", - "\"_answer\": \"There is a possibility that having exhibited immigrant intent could cause problems for your J-1 visa. It is not certain, but it is a potential issue.\"}\n", + "{\"_question\": \"I'm on a J-1 visa for the next four years and I'm considering applying for an EB2-NIW. Will I have any issues with travelling if I don't get the EB2?\",\n", + "\"_answer\": \"It is not definite that you will have a problem, but there is a possibility that exhibiting immigrant intent may be an issue for J-1 holders.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a J-1 visa that is still valid for four more years. I am thinking of applying for an EB2-NIW. Could I have any difficulties with traveling if I am rejected for the EB2?\",\n", - "\"_answer\": \"It is uncertain if being denied the EB2 and showing immigrant intent could lead to issues with your J-1 visa, but it is a possibility.\"}\n", + "{\"_question\": \"I'm a J-1 holder for the next four years and I'm looking into an EB2-NIW. If I don't get the EB2, will I have any issues when I travel?\",\n", + "\"_answer\": \"It is not certain that you will have a problem, but there is a chance that showing immigrant intent could be an issue for J-1 holders.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a J-1 visa that will be valid for four more years. I am considering applying for an EB2-NIW. What could happen if I am not approved for the EB2 when it comes to traveling?\",\n", - "\"_answer\": \"There is a chance that having displayed immigrant intent could cause problems for your J-1 visa. It is not definite, but it is a potential risk.\"} \n", + "{\"_question\": \"I have a J-1 visa for the next four years and I'm thinking of applying for an EB2-NIW. If I don't get the EB2, will I have any difficulties when travelling?\",\n", + "\"_answer\": \"It is not definite that you will have a problem, but there is a potential that exhibiting immigrant intent may be an issue for J-1 holders.\"} \n", "\n", "\n", "\n", @@ -1077,16 +925,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I get an EB-2 visa if I work as a veterinary assistant in the USA and I have a master's degree in veterinary medicine from Bulgaria?\",\n", - "\"_answer\": \"In order to be eligible for an EB-2 visa, two criteria must be met: 1. Your degree must be equivalent to a U.S. advanced degree (a credentials evaluation service must assess that under the proper standards); and 2. The job must require an advanced degree or equivalent experience.\"}\n", + "{\"_question\": \"Do I need a EB-2 visa to work as a veterinary assistant in the USA if I am from Bulgaria and have a master's degree in veterinary medicine?\",\n", + "\"_answer\": \"In order to be eligible for an EB-2 visa, two criteria must be met: 1. Your degree must be equivalent to a U.S. advanced degree (a credentials evaluation service must assess this under the proper standards); and 2. The job must require an advanced degree or equivalent experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB-2 visa if I have a master's degree in veterinary medicine from Bulgaria and I am working as a veterinary assistant in the USA?\",\n", - "\"_answer\": \"You may be eligible for an EB-2 visa if two conditions are fulfilled: 1. Your degree must be equivalent to a U.S. advanced degree (a credentials evaluation service must evaluate that under the correct standards); and 2. The job must necessitate an advanced degree or equivalent experience.\"}\n", + "{\"_question\": \"Can I get a EB-2 visa if I am from Bulgaria and have a master's degree in veterinary medicine and want to work as a veterinary assistant in the USA?\",\n", + "\"_answer\": \"You may be able to obtain an EB-2 visa if two conditions are satisfied: 1. Your degree is equal to a U.S. advanced degree (a credentials evaluation service must evaluate this under the correct standards); and 2. The job necessitates an advanced degree or equivalent experience.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a master's degree in veterinary medicine from Bulgaria and I am employed as a veterinary assistant in the USA. Am I able to get an EB-2 visa?\",\n", - "\"_answer\": \"You may qualify for an EB-2 visa if two requirements are met: 1. Your degree must be comparable to a U.S. advanced degree (a credentials evaluation service must assess that under the appropriate standards); and 2. The job must require an advanced degree or equivalent experience.\"} \n", + "{\"_question\": \"If I am from Bulgaria and have a master's degree in veterinary medicine, can I get a EB-2 visa to work as a veterinary assistant in the USA?\",\n", + "\"_answer\": \"You may qualify for an EB-2 visa if two conditions are met: 1. Your degree is equivalent to a U.S. advanced degree (a credentials evaluation service must assess this under the appropriate standards); and 2. The job requires an advanced degree or equivalent experience.\"} \n", "\n", "\n", "\n", @@ -1095,16 +943,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the best way to reach out to the USCIS Service Centers to inform them that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "{\"_question\": \"What is the best way to reach out to the USCIS Service Centers to inform them that a priority date is current, a petition has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's case?\",\n", "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the recommended method for notifying the USCIS Service Centers that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", - "\"_answer\": \"The best way to reach out to the USCIS Service Centers is to send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "{\"_question\": \"How can I get in touch with the USCIS Service Centers to let them know that a priority date is current, a petition has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's case?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to look at.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the suggested approach for informing the USCIS Service Centers that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", - "\"_answer\": \"The best way to contact the USCIS Service Centers is to send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"} \n", + "{\"_question\": \"What is the best way to communicate with the USCIS Service Centers to inform them that a priority date is current, a petition has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's case?\",\n", + "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to review.\"} \n", "\n", "\n", "\n", @@ -1113,16 +961,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it necessary for a beneficiary petitioned for a green card under EB-2 classification (based on a U.S. master's degree) to have a degree from an accredited U.S. university?\",\n", - "\"_answer\": \"Yes, a beneficiary must possess a degree from an accredited university in order to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to demonstrate accreditation for green card purposes. The accreditation status of a university can be found on the following website: http://ope.ed.gov/accreditation/ Additionally, you may want to watch this video prepared by Mr. Khanna, \"Accreditation of Distance Education for EB-2\" and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "{\"_question\": \"Is it necessary for a beneficiary petitioned for a green card under EB-2 classification to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited university in order to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not sufficient to show accreditation for green card purposes. To determine a university's accreditation status, please visit the website: http://ope.ed.gov/accreditation/ You may also want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", "\n", "######\n", - "{\"_question\": \"Do beneficiaries petitioned for a green card under EB-2 classification (based on a U.S. master's degree) need to have a degree from an accredited U.S. university?\",\n", - "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to prove accreditation for green card purposes. The accreditation status of a university can be found on the following website: http://ope.ed.gov/accreditation/ Additionally, you may want to watch this video prepared by Mr. Khanna, \"Accreditation of Distance Education for EB-2\" and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "{\"_question\": \"Do beneficiaries petitioned for a green card under EB-2 classification need to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a degree from an accredited university is required for a beneficiary to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to show accreditation for green card purposes. To check a university's accreditation status, please visit the website: http://ope.ed.gov/accreditation/ You may also want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", "\n", "######\n", - "{\"_question\": \"Is a degree from an accredited U.S. university required for a beneficiary petitioned for a green card under EB-2 classification (based on a U.S. master's degree)?\",\n", - "\"_answer\": \"Yes, a beneficiary must possess a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to demonstrate accreditation for green card purposes. The accreditation status of a university can be found on the following website: http://ope.ed.gov/accreditation/ Additionally, you may want to watch this video prepared by Mr. Khanna, \"Accreditation of Distance Education for EB-2\" and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", + "{\"_question\": \"Is it a requirement for beneficiaries petitioned for a green card under EB-2 classification to have a degree from an accredited US university?\",\n", + "\"_answer\": \"Yes, a beneficiary must possess a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not enough to show accreditation for green card purposes. To verify a university's accreditation status, please visit the website: http://ope.ed.gov/accreditation/ You may also want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", "\n", "\n", "\n", @@ -1131,16 +979,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Did I finish my Master's degree in one year? I have a Master's degree in Science and I have been given the final degree certificate by the university, but I completed the regular 2 year program in just 1 year. Will USCIS view my M.Sc degree as incomplete?\",\n", - "\"_answer\": \"This is where the evaluators come in. We have had issues with USCIS in these situations. Evaluation done under the EDGE database should convince USCIS.\"}\n", + "{\"_question\": \"I have a Master's degree in Science and I was awarded the final degree certificate by the university, but I finished the regular two-year program in only one year. Will USCIS view my M.Sc degree as incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come in. We have had issues with USCIS in these types of situations. An evaluation done through the EDGE database should be enough to convince USCIS.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Master's degree in Science and I was awarded the final degree certificate by the university, but I finished the standard 2 year program in just 1 year. Will USCIS consider my M.Sc degree incomplete?\",\n", - "\"_answer\": \"This is where the evaluators intervene. We have had issues with USCIS in these scenarios. Evaluation done under the EDGE database should persuade USCIS.\"}\n", + "{\"_question\": \"I have a Master's in Science and I received the final degree certificate from the university, but I completed the standard two-year program in only one year. Will USCIS consider my M.Sc degree incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come into play. We have had issues with USCIS in these scenarios. An evaluation done through the EDGE database should be enough to persuade USCIS.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Master's degree in Science and I have been given the final degree certificate by the university, but I completed the regular 2 year program in just 1 year. Will USCIS see my M.Sc degree as incomplete?\",\n", - "\"_answer\": \"This is where the evaluators come into play. We have had issues with USCIS in these situations. Evaluation done under the EDGE database should convince USCIS.\"} \n", + "{\"_question\": \"I have a Master's in Science and I was given the final degree certificate by the university, but I finished the regular two-year program in only one year. Will USCIS view my M.Sc degree as incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come in. We have had issues with USCIS in these kinds of situations. An evaluation done through the EDGE database should be sufficient to convince USCIS.\"} \n", "\n", "\n", "\n", @@ -1149,16 +997,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"What qualifications are necessary for EB-2?\",\n", - "\"_answer\": \"The USCIS clarified in June 2007 what is considered to be equivalent to a U.S. master's degree for the Employment-Based Category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. Generally, a U.S. master's degree is required, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field, or a three-year bachelor's degree plus two-year master's degree (India) plus five years' progressive, post-master's degree experience, or a three-year bachelor's degree plus two-year master's degree (India) plus one-year postgraduate diploma (India) may be accepted. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty.\"}\n", - "\n", - "######\n", - "{\"_question\": \"What educational credentials are accepted for EB-2?\",\n", - "\"_answer\": \"The USCIS clarified in June 2007 what is considered to be equivalent to a U.S. master's degree for the Employment-Based Category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. Generally, a U.S. master's degree is required, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field, or a three-year bachelor's degree plus two-year master's degree (India) plus five years' progressive, post-master's degree experience, or a three-year bachelor's degree plus two-year master's degree (India) plus one-year postgraduate diploma (India) may be accepted. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty.\"}\n", + "{\"_question\": \"What qualifications are needed for EB-2?\",\n", + "\"_answer\": \"In June 2007, the USCIS clarified what is considered to be equivalent to a U.S. master's degree for Employment-Based Category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree plus one additional year of education. Therefore, the beneficiary would also need to have five years' progressive experience. If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree, it is possible that this would be considered the equivalent to a U.S. master's degree and there would be no need to establish five years' progressive experience. 5. Three-year bachelor's degree + two-year master's degree (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference (EB-2) category. 6. Three-year bachelor's degree + two-year master's degree (India) + five years' progressive, post-master's degree experience generally, the educational degrees would be determined to be the equivalent of a U.S. bachelor's + one year and the beneficiary would meet the statutory requirement. 7. Three-year bachelor's degree + two-year master's degree + one-year postgraduate diploma (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference category (EB-2). If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree or the two-year master's degree, it is possible that this would be considered the equivalent to a U.S. master's degree, and there would be no need to establish five years' progressive experience. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty. The post-baccalaureate experience should reflect increasing or advancing levels of responsibility and knowledge in the specialty. The profession should be an occupation for which a baccalaureate degree or its foreign equivalent is the minimum requirement for the entry in the field.\"}\n", "\n", "######\n", - "{\"_question\": \"What qualifications are needed for EB-2?\",\n", - "\"_answer\": \"The USCIS clarified in June 2007 what is considered to be equivalent to a U.S. master's degree for the Employment-Based Category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. Generally, a U.S. master's degree is required, but a four-year bachelor's degree plus two-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus three-year master's degree (India) in the same or related fields, or a three-year bachelor's degree plus one-year postgraduate diploma plus two-year master's degree (India) in the same or similar field, or a three-year bachelor's degree plus two-year master's degree (India) plus five years' progressive, post-master's degree experience, or a three-year bachelor's degree plus two-year master's degree (India) plus one-year postgraduate diploma (India) may be accepted. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty.\"} \n", + "{\"_question\": \"What educational qualifications are necessary for EB-2?\",\n", + "\"_answer\": \"In June 2007, the USCIS clarified what is considered to be equivalent to a U.S. master's degree for Employment-Based Category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree \n", "\n", "\n", "\n", @@ -1167,16 +1011,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to qualify for EB-2 with a diploma, AMIE, and M.Tech, with 7 years of experience post M.Tech from a previous employer and 5 years from the current employer, even though the job requirement only mentions a Bachelor's in Engineering and 5 years of experience?\",\n", - "\"_answer\": \"The AMIE is uncertain. I remember a decision from the AAO that said they wouldn't recognize it, but a more recent decision was more ambiguous. In any case, I think it's worth trying for EB-2, as the M.Tech should help.\"}\n", + "{\"_question\": \"Is it possible to qualify for EB-2 with a diploma, AMIE, and M.Tech, with 7 years of experience post M.Tech from a previous employer and 5 years from the current employer, even though the job requirements only mention a Bachelor's in Engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is uncertain. I remember a decision from the AAO that said they won't accept AMIE, but a more recent decision was more lenient. I think it's worth a shot to try for EB-2, as the M.Tech should help.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I meet the requirements for EB-2 if I have a diploma, AMIE, and M.Tech, plus 7 years of experience post M.Tech from a prior employer and 5 years from the current employer, even though the job requirement only states a Bachelor's in Engineering and 5 years of experience?\",\n", - "\"_answer\": \"The AMIE is uncertain. I recall an AAO decision that said they wouldn't accept it, but a more recent decision was more uncertain. In any case, I think it's worth a shot at EB-2, as the M.Tech should be beneficial.\"}\n", + "{\"_question\": \"Can I meet the requirements for EB-2 if I have a diploma, AMIE, and M.Tech, with 7 years of experience post M.Tech from a previous employer and 5 years from the current employer, even though the job requirements only list a Bachelor's in Engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is questionable. I recall an AAO decision that said they won't accept AMIE, but a more recent decision was more ambiguous. I think it's worth a try for EB-2, as the M.Tech should be beneficial.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I qualify for EB-2 with a diploma, AMIE, and M.Tech, plus 7 years of experience post M.Tech from a prior employer and 5 years from the current employer, even though the job requirement only mentions a Bachelor's in Engineering and 5 years of experience?\",\n", - "\"_answer\": \"The AMIE is questionable. I remember an AAO decision that said they wouldn't accept it, but a more recent decision was more uncertain. In any case, I think it's worth attempting EB-2, as the M.Tech should be beneficial.\"} \n", + "{\"_question\": \"Is it possible to qualify for EB-2 with a diploma, AMIE, and M.Tech, with 7 years of experience post M.Tech from a previous employer and 5 years from the current employer, even though the job requirements only specify a Bachelor's in Engineering and 5 years of experience?\",\n", + "\"_answer\": \"The AMIE is uncertain. I remember a decision from the AAO that said they won't recognize AMIE, but a more recent decision was more lenient. I think it's worth attempting EB-2, as the M.Tech should help.\"} \n", "\n", "\n", "\n", @@ -1185,16 +1029,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB-2? I have a 4 year bachelor's degree from India and 7 years of experience. My company has applied for a green card in EB-3 and my I-140 is approved. My priority date is September 2010. My company name has been changed and they are saying that the process has to be restarted from the PERM, but I can keep my same priority date. I asked lawyers if I'm eligible for EB-2 and they said no. My job description says a bachelor's degree and 3 or 5 years of experience, and that's why the lawyers said no. They argued that the USCIS will deny the application, indicating that the job could be done by someone with 3 years of experience. Am I qualified for EB-2?\",\n", - "\"_answer\": \"Take into account these points. First, a simple change of name of the employer does not require the green card process to be restarted. Second, if the sponsoring employer ceases operations, the USCIS can take away your priority date. Lastly, the job must require 5 years of experience.\"}\n", + "{\"_question\": \"Am I qualified for EB-2 with my qualifications?\",\n", + "\"_answer\": \"Take into consideration these points: the name change of the employer does not mean the green card process has to start from the beginning, USCIS can take away your priority date if the sponsoring employer ceases operations, and the job must require 5 years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB-2? I have a 4 year bachelor's degree from India and 7 years of experience. My company has applied for a green card in EB-3 and my I-140 is approved. My priority date is September 2010. My company name has been changed and they are saying that the process has to be restarted from the PERM, but I can keep my same priority date. I asked lawyers if I'm eligible for EB-2 and they said no. My job description says a bachelor's degree and 3 or 5 years of experience, and that's why the lawyers said no. They argued that the USCIS will deny the application, indicating that the job could be done by someone with 3 years of experience. Do I qualify for EB-2?\",\n", - "\"_answer\": \"Remember these points. Firstly, a mere alteration of the employer's name does not necessitate that the green card process be restarted. Secondly, if the sponsoring employer ceases operations, the USCIS can take away your priority date. Lastly, the job must require 5 years of experience.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB-2?\",\n", + "\"_answer\": \"Remember these points: a name change of the employer does not necessitate restarting the green card process, USCIS can revoke your priority date if the sponsoring employer stops operations, and the job must necessitate 5 years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB-2? I have a 4 year bachelor's degree from India and 7 years of experience. My company has applied for a green card in EB-3 and my I-140 is approved. My priority date is September 2010. My company name has been changed and they are saying that the process has to be restarted from the PERM, but I can keep my same priority date. I asked lawyers if I'm eligible for EB-2 and they said no. My job description says a bachelor's degree and 3 or 5 years of experience, and that's why the lawyers said no. They argued that the USCIS will deny the application, indicating that the job could be done by someone with 3 years of experience. Am I eligible for EB-2?\",\n", - "\"_answer\": \"Keep in mind these points. First, a mere change of name of the employer does not require that the green card process be restarted. Second, if the sponsoring employer stops business operations, the USCIS can take away your priority date. Lastly, the job must require 5 years of experience.\"} \n", + "{\"_question\": \"Am I eligible for EB-2 with my background?\",\n", + "\"_answer\": \"Bear in mind these points: a name change of the employer does not mean the green card process must start over, USCIS can take away your priority date if the sponsoring employer discontinues operations, and the job must require 5 years of experience.\"} \n", "\n", "\n", "\n", @@ -1203,16 +1047,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I restart the green card process under the EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? My labor was filed in EB-3 and my priority date is October 2003, and I received my EAD in 2007.\",\n", - "\"_answer\": \"It is possible to restart the green card process under the EB-2 category if you have 5 years of experience after a 4-year degree. This would involve redoing the PERM and I-140 for an EB-2 level job, and porting your priority date.\"}\n", + "{\"_question\": \"Can I restart the green card process under the EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? My labor was initially filed under EB-3 and my priority date is October 2003.\",\n", + "\"_answer\": \"It is possible to restart the green card process under the EB-2 category if you have over 5 years of experience after a 4-year degree. This would involve redoing the PERM and I-140 for an EB-2 level job.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Bachelor's degree from India and 8 years of work experience in the US. My labor was filed in EB-3 and my priority date is October 2003, and I received my EAD in 2007. Is it possible to restart the green card process under the EB-2 category?\",\n", - "\"_answer\": \"If you have 5 years of experience after a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This would involve filing a new PERM and I-140 for an EB-2 level job.\"}\n", + "{\"_question\": \"If I have a Bachelor's degree from India and 8 years of work experience in the US, am I eligible to port my priority date to the EB-2 category? My labor was initially filed under EB-3 and my priority date is October 2003.\",\n", + "\"_answer\": \"Those with more than 5 years of experience after a 4-year degree may be able to port their priority date to the EB-2 category. This would involve submitting a new PERM and I-140 for an EB-2 level job.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Bachelor's degree from India and 8 years of work experience in the US. My labor was filed in EB-3 and my priority date is October 2003, and I received my EAD in 2007. Can I restart the green card process under the EB-2 category?\",\n", - "\"_answer\": \"If you have 5 years of experience after a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This would involve submitting a new PERM and I-140 for an EB-2 level job.\"} \n", + "{\"_question\": \"I have a Bachelor's degree from India and 8 years of work experience in the US. My labor was filed under EB-3 and my priority date is October 2003. Can I restart the green card process under the EB-2 category?\",\n", + "\"_answer\": \"Individuals with more than 5 years of experience after a 4-year degree may be able to restart the green card process under the EB-2 category. This would involve filing a new PERM and I-140 for an EB-2 level job.\"} \n", "\n", "\n", "\n", @@ -1221,16 +1065,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I bypass the perm requirement if I apply for an eb-2 category?\",\n", - "\"_answer\": \"You may be able to sidestep the perm requirement if you are eligible for a national interest waiver.\"}\n", + "{\"_question\": \"Can you bypass the perm process if you apply through the eb-2 category?\",\n", + "\"_answer\": \"You can bypass the perm requirement if you are eligible for a national interest waiver under the eb-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to dodge the perm process if I go for the eb-2 category?\",\n", - "\"_answer\": \"You may be able to dodge the perm process if you qualify for a national interest waiver.\"}\n", + "{\"_question\": \"Is it possible to skip perm if you are applying in the eb-2 category?\",\n", + "\"_answer\": \"You may be able to forgo the perm process if you qualify for a national interest waiver in the eb-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I evade the perm process by applying for the eb-2 category?\",\n", - "\"_answer\": \"You may be able to evade the perm process if you are eligible for a national interest waiver.\"} \n", + "{\"_question\": \"Can you avoid the perm process if you are applying in the eb-2 category?\",\n", + "\"_answer\": \"It is possible to sidestep the perm requirement if you are eligible for a national interest waiver under the eb-2 category.\"} \n", "\n", "\n", "\n", @@ -1239,16 +1083,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the most likely way to get an EB-2 application approved quickly? Is it through a master's equivalency (evaluating a bachelor's degree to be equivalent to a master's) or through five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years experience. Does it depend on the employer's ability to provide documents or the lawyer's attention to detail?\",\n", - "\"_answer\": \"It all starts with the lawyer. Make sure your attorney is thorough and prepared for any possible outcome. The job must be accurately described.\"}\n", + "{\"_question\": \"What is the most likely way to get an EB-2 application approved quickly? Is it through a master's equivalency (a bachelor's degree evaluated by a university to be equivalent to a master's degree) or five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years of experience. Does it depend on the employer's ability to provide documents or the lawyer's attention to detail when submitting to USCIS?\",\n", + "\"_answer\": \"It all starts with the lawyers. Make sure your attorney is thorough and prepared for any possible outcome. The job must be accurately described.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the best way to get an EB-2 application approved quickly? Is it through a master's equivalency (evaluating a bachelor's degree to be equivalent to a master's) or through five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years experience. Does it depend on the employer's capacity to provide documents or the lawyer's precision with the details submitted to USCIS?\",\n", - "\"_answer\": \"It all begins with the lawyer. Ensure your counsel is precise and plan for every potential outcome they can think of. The job must be described accurately.\"}\n", + "{\"_question\": \"What is the most probable way to get an EB-2 application approved quickly? Is it through a master's equivalency (a bachelor's degree evaluated by a university to be equivalent to a master's degree) or five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years of experience. Does it depend on the employer's capacity to provide documents or the lawyer's precision when submitting to USCIS?\",\n", + "\"_answer\": \"It all begins with the lawyers. Ensure your counsel is precise and plan for every potential outcome they can think of. The job must be accurately portrayed.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the most probable way to get an EB-2 application approved quickly? Is it through a master's equivalency (evaluating a bachelor's degree to be equivalent to a master's) or through five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years experience. Does it rely on the employer's ability to supply documents or the lawyer's attention to detail?\",\n", - "\"_answer\": \"It all starts with the lawyer. Make sure your attorney is meticulous and ready for any possible result. The job must be portrayed truthfully.\"} \n", + "{\"_question\": \"What is the most likely way to get an EB-2 application approved quickly? Is it through a master's equivalency (a bachelor's degree evaluated by a university to be equivalent to a master's degree) or five years of progressive experience? I know someone who was approved through the master's equivalency, even though they didn't have five years of experience. Does it rely on the employer's capability to support documents or does it also depend on how meticulous the lawyer is with the details to be submitted in the uscis?\",\n", + "\"_answer\": \"It all starts with the lawyers. Make sure your attorney is meticulous and prepared for any possible outcome. The job must be described truthfully.\"} \n", "\n", "\n", "\n", @@ -1257,16 +1101,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB-2 with the same employer using the experience I have gained from them?\",\n", - "\"_answer\": \"Yes, if the job you are applying for is more than 50% different than the job you were performing with the same employer.\"}\n", + "{\"_question\": \"Can I apply for EB-2 with the same employer if I have more than 10 years of experience, including the experience with the current employer?\",\n", + "\"_answer\": \"Yes, you can submit an application for EB-2 with the same employer if the job offered is more than 50% different than the job you were performing so far.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible for me to apply for EB-2 with the same employer using the experience I have acquired from them?\",\n", - "\"_answer\": \"Yes, if the job you are applying for is significantly different than the job you were doing with the same employer.\"}\n", + "{\"_question\": \"If I have been with the same employer for more than 10 years, including the experience with the current employer, can I apply for EB-2?\",\n", + "\"_answer\": \"It is possible to submit an application for EB-2 with the same employer if the job offered is more than 50% different than the job you were performing so far.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I submit an application for EB-2 with the same employer based on the experience I have gained from them?\",\n", - "\"_answer\": \"Yes, if the job you are applying for is substantially different than the job you were doing with the same employer.\"} \n", + "{\"_question\": \"I have been with the same employer for more than 10 years, including the experience with the current employer. Is it possible to apply for EB-2?\",\n", + "\"_answer\": \"Yes, you can submit an application for EB-2 with the same employer if the job offered is more than 50% different than the job you were performing so far.\"} \n", "\n", "\n", "\n", @@ -1275,16 +1119,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB-2 or is it too soon for a green card? I'm a professor at a major US university and have been here for 9 months on an H1B. I have a physicianate and PhD, 16 years of professional experience in Europe, 20 papers, and 1 book. Am I eligible for EB2 or should I wait to apply for an EB green card?\",\n", - "\"_answer\": \"You meet the qualifications for EB2 and should submit your application as soon as possible. Professors can reuse existing ads if they file PERM within 18 months of when the job was offered to them. You should also have your resume evaluated for a simultaneous EB1 application.\"}\n", + "{\"_question\": \"Do I qualify for the EB-2 visa? I have been a professor at a major US university for 9 months (H1B). I have a physician + PhD, 16 years of professional experience in Europe, and 20 papers and 1 book. Is it too early to apply for an EB green card?\",\n", + "\"_answer\": \"You are eligible for EB2 and should apply immediately. Professors can reuse existing advertisements if they file PERM within 18 months of when the job was offered. You should also have your resume evaluated for a possible EB1 application.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB-2 or is it too soon for a green card? I'm a professor at a major US university and have been here for 9 months on an H1B. I have a physicianate and PhD, 16 years of professional experience in Europe, 20 papers, and 1 book. Do I qualify for EB2 or should I wait to apply for an EB green card?\",\n", - "\"_answer\": \"You are eligible for EB2 and should submit your application right away. Professors can reuse existing ads if they file PERM within 18 months of when the job was offered to them. You should also have your resume assessed for a simultaneous EB1 application.\"}\n", + "{\"_question\": \"Am I able to get an EB-2 visa? I have been a professor at a major US university for 9 months (H1B). I have a physician + PhD, 16 years of professional experience in Europe, and 20 papers and 1 book. Is it too soon to apply for an EB green card?\",\n", + "\"_answer\": \"You are certainly qualified for EB2 and should submit your application as soon as possible. Professors can reuse existing ads if they file PERM within 18 months of when the job was offered to them. You should also have your resume reviewed for a possible EB1 application.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB-2 or is it too early for a green card? I'm a professor at a major US university and have been here for 9 months on an H1B. I have a physicianate and PhD, 16 years of professional experience in Europe, 20 papers, and 1 book. Do I meet the qualifications for EB2 or should I wait to apply for an EB green card?\",\n", - "\"_answer\": \"You fulfill the criteria for EB2 and should submit your application as soon as possible. Professors can reuse existing ads if they file PERM within 18 months of when the job was offered to them. You should also have your resume checked for a simultaneous EB1 application.\"} \n", + "{\"_question\": \"Do I meet the requirements for the EB-2 visa? I have been a professor at a major US university for 9 months (H1B). I have a physician + PhD, 16 years of professional experience in Europe, and 20 papers and 1 book. Is it too early to apply for an EB green card?\",\n", + "\"_answer\": \"You are eligible for EB2 and should apply right away. Professors can reuse existing postings if they file PERM within 18 months of when the job was offered. You should also have your resume assessed for a potential EB1 application.\"} \n", "\n", "\n", "\n", @@ -1293,12 +1137,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"am i eligible for eb-2 ? i completed a three year bachelor of computer science degree from india in june 2005. i then enrolled in a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while still in the masters program, i started a full time job in a software company in jan 2006. i was awarded the master of computer applications degree (3 year program) in 2008. i worked with the same company in a full time job until dec 2010 (5 years). after that, i moved to the US and have been working with a US-based company for 7 months as a full time employee (total experience 5 years 7 months). do i meet the requirements for eb-2?\",\n", - "\"_answer\": \"yes, you are eligible.\"}\n", + "{\"_question\": \"am i eligible for eb-2 ? i completed a three year bachelor's degree in computer science from india in june 2005. afterwards, i enrolled in a master of computer applications program (m.c.a) in india in august 2005 (3 year program). while still in the master's program, i started a full-time job in a software company in january 2006. i received my master of computer applications (3 year degree) in 2008, and stayed with the same company for a full-time job until december 2010 (5 years). after that, i moved to the US and have been working with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i qualify for eb-2?\",\n", + "\"_answer\": \"you qualify.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i eligible for eb-2 ? i obtained a three year bachelor's degree in computer science from india in june 2005. then, i began a master of computer applications program (m.c.a) in india in august 2005 (3 year program). while still in the master's program, i began a full-time job in a software company in january 2006. i was given my master of computer applications (3 year degree) in 2008, and stayed with the same company for a full-time job until december 2010 (5 years). after that, i moved to the US and have been employed with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i meet the requirements for eb-2?\",\n", + "\"_answer\": \"you qualify.\"}\n", "\n", "######\n", - "{\"_question\": \"am i qualified for eb-2 ? i earned a three year bachelor of computer science degree from india in june 2005. then i began a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while still in the masters program, i started a full time job in a software company in jan 2006. i was awarded the master of computer applications degree (3 year program) in 2008. i worked with the same company in a full time job until dec 2010 (5 years). after that, i moved to the US and have been working with a US-based company for 7 months as a full time employee (total experience 5 years 7 months). do i fit the criteria for eb-2?\",\n", - "\"_answer\": \"you fulfill the requirements.\"} \n", + "{\"_question\": \"am i qualified for eb-2 ? i earned a three year bachelor's degree in computer science from india in june 2005. then, i joined a master of computer applications program (m.c.a) in india in august 2005 (3 year program). while still in the master's program, i started a full-time job in a software company in january 2006. i was awarded my master of computer applications (3 year degree) in 2008, and stayed with the same company for a full-time job until december 2010 (5 years). after that, i moved to the US and have been working with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i qualify for eb-2?\",\n", + "\"_answer\": \"you qualify.\"} \n", "\n", "\n", "\n", @@ -1307,34 +1155,31 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the odds of me getting an EB2 visa with my qualifications? I have a B.Sc. from Israel (06/2002) and I started a M.Sc. at the same time I was working as a QA engineer (1.5 years). I stopped my M.Sc. in the middle and joined the company I am currently working for. After 3 years I was relocated to the US and have been here for 4 years. My company's law firm has decided that I should be on the EB3 path. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development experience in Israel, and 4 years of development experience in the US?\", \n", - "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree. Incomplete degrees are not accepted for EB2.\"}\n", + "{\"_question\": \"What are the possibilities of getting an EB2 visa with a B.Sc.? I have a B.Sc. from Israel (06/2002) and started my M.Sc. at the same time I was working as a QA Engineer (1.5 years) and was checking exercises and exams in university. I stopped my M.Sc. in the middle and joined the company I am currently working for. After 3 years I was relocated to the US and have been here for 4 years. I am now considering applying for a green card. The law firm my company works with has suggested I pursue an EB3 path. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\", \n", + "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree in order to be eligible for an EB2 visa. Incomplete degrees are not taken into consideration.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of me obtaining an EB2 visa with my background? I have a B.Sc. from Israel (06/2002) and I was employed as a QA engineer (1.5 years) while I was studying for a M.Sc. I discontinued my M.Sc. and joined the company I am currently employed by. After 3 years I was transferred to the US and have been here for 4 years. My company's law firm has suggested that I should pursue the EB3 path. What are the chances of me getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development experience in Israel, and 4 years of development experience in the US?\", \n", - "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree. Unfinished degrees are not eligible for EB2.\"}\n", + "{\"_question\": \"What are the odds of me getting an EB2 visa with my B.Sc.? I obtained my B.Sc. from Israel in 06/2002 and was working as a QA Engineer at the same time (1.5 years) and was checking exercises and exams in university. I left my M.Sc. unfinished and joined the company I am currently employed by. After 3 years I relocated to the US and have been here for 4 years. I am now thinking about applying for a green card. The law firm my company works with has suggested I pursue an EB3 path. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\", \n", + "\"_answer\": \"Your degree must be comparable to a US Bachelor's degree to be eligible for an EB2 visa. Unfinished degrees are not taken into account.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the prospects of me receiving an EB2 visa with my qualifications? I have a B.Sc. from Israel (06/2002) and I was simultaneously working as a QA engineer (1.5 years) while I was studying for a M.Sc. I abandoned my M.Sc. and joined the company I am currently employed by. After 3 years I was relocated to the US and have been here for 4 years. My company's law firm has suggested that I should pursue the EB3 path. What are the chances of me getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development experience in Israel, and 4 years of development experience in the US?\", \n", - "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree. Incomplete degrees are not accepted for EB2.\"} \n", + "{\"_question\": \"What are the prospects of me getting an EB2 visa with my B.Sc.? I earned my B.Sc. from Israel in 06/2002 and was employed as a QA Engineer at the same time (1.5 years) and was checking exercises and exams in university. I abandoned my M.Sc. and joined the company I am currently working for. After 3 years I moved to the US and have been here for 4 years. I am now considering applying for a green card. The law firm my company works with has suggested I pursue an EB3 path. What are my chances of getting an EB2 visa with my B.Sc. from Israel, 1.5 years of QA experience in Israel, 3 years of development in Israel, and 4 years of development in the US?\", \n", + "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree in order to be eligible for an EB2 visa. Incomplete degrees are not taken into consideration.\"} \n", "\n", "\n", "\n", "37 \n", "\n", "\n", - "\n", "######\n", - "{\"_question\": \"Can I use my prior experience for EB-2 qualification?\",\n", - "\"_answer\": \"You can use the experience with the same employer only if the job you used to perform and the job you will perform after the green card are more than 50% different, though continuous employment is not necessary.\"}\n", - "\n", + "{\"_question\": \"Can I use my experience prior to August 2010 for EB-2 qualification?\",\n", + "\"_answer\": \"You can use the experience with the same employer only if the job you used to perform and the job you will perform after the green card are more than 50% different, but continuous employment is not necessary.\"}\n", "######\n", - "{\"_question\": \"Do I need to be continuously employed to use my experience for EB-2 qualification?\",\n", - "\"_answer\": \"No, you don't need to be continuously employed, but the job you used to perform and the job you will perform after the green card must be more than 50% different in order to use the experience with the same employer.\"}\n", - "\n", + "{\"_question\": \"Can I use my experience from before August 2010 for EB-2 eligibility?\",\n", + "\"_answer\": \"You can use the experience with the same employer only if the job you used to do and the job you will do after the green card are more than 50% different, but you don't need to have been continuously employed.\"}\n", "######\n", - "{\"_question\": \"Can I use my experience from before I rejoined my current employer for EB-2 qualification?\",\n", - "\"_answer\": \"Yes, you can use the experience with the same employer as long as the job you used to perform and the job you will perform after the green card are more than 50% different, regardless of continuous employment.\"} \n", + "{\"_question\": \"Can I use my experience from before August 2010 to qualify for EB-2?\",\n", + "\"_answer\": \"You can use the experience with the same employer only if the job you used to do and the job you will do after the green card are more than 50% different, but it is not necessary to have been employed continuously.\"} \n", "\n", "\n", "\n", @@ -1343,16 +1188,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"If I change employers after my I-140 approval, can I keep my priority date from my current employer? Is it possible for them to withdraw my application in a way that I lose my priority date?\",\n", - "\"_answer\": \"Yes, you can keep the priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. No, the current company cannot withdraw your application in a way that would make you lose your priority date.\"}\n", + "{\"_question\": \"Can I retain my priority date if I switch jobs after my I-140 application is approved?\", \n", + "\"_answer\": \"Yes, you can keep the priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"}\n", "\n", "######\n", - "{\"_question\": \"If I move to a new company after my I-140 approval, can I retain my priority date from my current employer? Is there a way for them to withdraw my application that would cause me to lose my priority date?\",\n", - "\"_answer\": \"Yes, you can keep the priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. No, the current company cannot withdraw your application in a way that would make you lose your priority date.\"}\n", + "{\"_question\": \"If I move to a new company after my I-140 approval, can I still keep my priority date?\", \n", + "\"_answer\": \"Yes, you can maintain your priority date as long as the sponsoring employer does not cancel your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"}\n", "\n", "######\n", - "{\"_question\": \"If I switch jobs after my I-140 approval, can I maintain my priority date from my current employer? Is there a possibility for them to withdraw my application that would result in me losing my priority date?\",\n", - "\"_answer\": \"Yes, you can keep the priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 or find fraud. No, the current company cannot withdraw your application in a way that would make you lose your priority date.\"} \n", + "{\"_question\": \"If I change employers after my I-140 is approved, will I still have my priority date?\", \n", + "\"_answer\": \"Yes, you can preserve your priority date as long as the sponsoring employer does not revoke your I-140, go out of business, or USCIS does not revoke the I-140 for fraud.\"} \n", "\n", "\n", "\n", @@ -1361,16 +1206,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the costs associated with an employment-based green card application in the EB2 category?\",\n", - "\"_answer\": \"The employer is obligated to pay for all expenses related to the PERM process, but not the other stages of the green card process.\"}\n", + "{\"_question\": \"What costs can an employee cover for an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer is legally obligated to pay for all expenses related to the PERM process, but not the other parts of the green card application.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am applying for an employment-based green card in the EB2 category, can I pay for the entire process?\",\n", - "\"_answer\": \"No, the employer is legally responsible for covering the costs of the PERM process, but not the other parts of the green card process.\"}\n", + "{\"_question\": \"Can an employee pay for the entire green card application process in the EB2 category, including attorney's fees, filing fees, advertising fees, EAD, and advance parole fees?\",\n", + "\"_answer\": \"The employer is responsible for covering the expenses related to the PERM process, but not the other parts of the green card application.\"}\n", "\n", "######\n", - "{\"_question\": \"What fees must be paid for an employment-based green card application in the EB2 category?\",\n", - "\"_answer\": \"The employer is required to pay for all expenses related to the PERM process, but not the other components of the green card process.\"} \n", + "{\"_question\": \"What is the employer's responsibility when it comes to the expenses for an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer must pay for all costs associated with the PERM process, but not the other parts of the green card application.\"} \n", "\n", "\n", "\n", @@ -1379,16 +1224,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB-2 with my educational background and work experience?\",\n", - "\"_answer\": \"Yes, you could qualify for EB-2 with your Bachelor's degree plus five years of progressive experience.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB-2 if I have a 3 year Bachelor's degree in Computer Science and a 2 year Master's degree in Information Technology, and I have been working in my current job since July 2008? My career began in January 2000.\", \n", + "\"_answer\": \"Yes, you could qualify for EB-2 under the Bachelor's degree plus 5 years of progressive experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I have the qualifications to apply for EB-2?\",\n", - "\"_answer\": \"Yes, with a Bachelor's degree and five years of progressive work experience, you would be eligible for EB-2.\"}\n", + "{\"_question\": \"I have a 3 year Bachelor's degree in Computer Science and a 2 year Master's degree in Information Technology, and I have been employed since July 2008. My career began in January 2000. Am I eligible for EB-2? Could you explain if I fit into the category of 3 year Bachelor's degree plus 2 year Master's degree equaling a Bachelor's degree plus 1 year and needing 5 years of progressive experience to qualify for EB-2?\", \n", + "\"_answer\": \"Yes, you meet the requirements for EB-2 under the Bachelor's degree plus 5 years of progressive experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I able to apply for EB-2 with my educational and professional background?\",\n", - "\"_answer\": \"Yes, with a Bachelor's degree and five years of progressive work experience, you would be qualified for EB-2.\"} \n", + "{\"_question\": \"I have a 3 year Bachelor's degree in Computer Science and a 2 year Master's degree in Information Technology, and I have been working in my current job since July 2008. My career began in January 2000. Do I qualify for EB-2? Can you explain if I fit into the category of 3 year Bachelor's degree plus 2 year Master's degree equaling a Bachelor's degree plus 1 year and needing 5 years of progressive experience to qualify for EB-2?\", \n", + "\"_answer\": \"Yes, you are eligible for EB-2 under the Bachelor's degree plus 5 years of progressive experience.\"} \n", "\n", "\n", "\n", @@ -1397,12 +1242,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I include skills I've acquired while working for the company sponsoring my green card in the job description for the EB-2? Do I need to have already had those skills?\",\n", - "\"_answer\": \"It is permissible to include skills acquired after beginning work with the sponsoring company, as long as the job for the green card is more than 50% different from the previous job.\"}\n", + "{\"_question\": \"Can I include skills I acquired while working for the company sponsoring my green card in the job description for the EB-2? I have been with the company for 2.5 years and some of the experiences/skills required in the job description were acquired while working with this company.\",\n", + "\"_answer\": \"It is permissible to use after-acquired skills if the job you had before and the green card job are more than 50% different.\"}\n", "\n", "######\n", - "{\"_question\": \"If I've been employed by the company sponsoring my green card for the past 2.5 years, can I list the skills I've gained while working there on the job description for the EB-2? Do I need to have had those skills beforehand?\",\n", - "\"_answer\": \"Yes, it is valid to include those skills on the job description, as long as the job for the green card is more than 50% different from the job you had before.\"} \n", + "{\"_question\": \"Am I allowed to include skills I obtained while employed by the company sponsoring my green card in the job description for the EB-2? I have been with the company for 2.5 years and some of the experiences/skills required in the job description were acquired while working with this company.\",\n", + "\"_answer\": \"It is possible to utilize after-acquired skills only if the job in the past and the green card job are more than 50% dissimilar.\"} \n", "\n", "\n", "\n", @@ -1411,16 +1256,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for a green card while on OPT status? I recently graduated and have been working with a company for two months. Is it possible to file for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Is the green card process dependent on the H1B?\",\n", - "\"_answer\": \"This requires a legal assessment of your case. Generally, nothing prevents you from filing a PERM application while on OPT and an EB2 appears to be a possibility.\"}\n", + "{\"_question\": \"Can I start the green card process while on OPT? I recently graduated and have been working for two months. I have two years of IT experience in India. Is the green card process dependent on H1B?\",\n", + "\"_answer\": \"This is something that your lawyer will need to evaluate. Generally, there is nothing stopping you from filing a PERM application while on OPT and an EB2 appears to be a possibility.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible to file for a green card with my current employer while I'm on OPT? Can I apply for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Is the green card process dependent on the H1B?\",\n", - "\"_answer\": \"This requires a legal evaluation of your case. Generally, there is nothing stopping you from filing a PERM application while on OPT and an EB2 appears to be a viable option.\"}\n", + "{\"_question\": \"Am I eligible to apply for a green card while on OPT? I graduated last summer and have been employed for two months. I have two years of IT experience in India. Does the green card process rely on H1B?\",\n", + "\"_answer\": \"This requires your lawyer to assess the situation. Generally, you can file a PERM application while on OPT and an EB2 may be possible.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I submit a green card application while I'm on OPT? I recently graduated and have been working with a company for two months. Is it possible to file for an EB2? I have two years of IT experience in India. If not, do I have to wait until I get an H1B? Is the green card process dependent on the H1B?\",\n", - "\"_answer\": \"This requires a legal assessment of your case. Generally, nothing prevents you from filing a PERM application while on OPT and an EB2 appears to be a feasible option.\"} \n", + "{\"_question\": \"Can I initiate the green card process while on OPT? I just finished my master's degree and have been working for two months. I have two years of IT experience in India. Is the green card process dependent on H1B?\",\n", + "\"_answer\": \"This is something that your lawyer will have to assess. Generally, nothing prevents you from filing a PERM application while on OPT and an EB2 appears feasible.\"} \n", "\n", "\n", "\n", @@ -1429,16 +1274,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch my category from EB3 to EB2?\",\n", - "\"_answer\": \"Yes, but the green card process will have to be restarted from the PERM stage.\"}\n", + "{\"_question\": \"Can I switch from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, it is feasible to change your category from EB3 to EB2, however the green card process will have to be restarted from the PERM stage.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to change my EB3 status to EB2?\",\n", - "\"_answer\": \"Yes, but the green card application must be restarted from the PERM stage.\"}\n", + "{\"_question\": \"Is it doable to upgrade from EB3 to EB2?\",\n", + "\"_answer\": \"It is achievable, however the green card process must be restarted from the PERM level.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I alter my EB3 classification to EB2?\",\n", - "\"_answer\": \"Yes, however the green card process must be initiated again from the PERM stage.\"} \n", + "{\"_question\": \"Is it possible to move from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, it is possible, however the green card application must be initiated again from the PERM stage.\"} \n", "\n", "\n", "\n", @@ -1447,16 +1292,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"is it possible to apply for a green card in the eb-2 category? i have a bsc from india plus a two year diploma from niit (in h1 and l1 they considered my diploma as a master degree). i also have 10 years of experience. can i apply for a green card in the eb2 category?\",\n", - "\"_answer\": \"it's hard to say with diplomas. i don't think eb-2 is likely.\"}\n", + "{\"_question\": \"is it possible to apply for green card in eb-2 category? i have a bachelor's degree from india, a two-year diploma from niit (in h1 and l1 they considered my diploma as a master degree), and 10 years of experience. could i apply for a green card in the eb2 category?\",\n", + "\"_answer\": \"diplomas are hard to predict. i don't think eb-2 is likely.\"}\n", "\n", "######\n", - "{\"_question\": \"am i able to apply for a green card in the eb-2 category? i have a bsc from india plus a two year diploma from niit (in h1 and l1 they considered my diploma as a master degree). i also have 10 years of experience. is it possible to apply for a green card in the eb2 category?\",\n", - "\"_answer\": \"it's hard to tell with diplomas. i don't think eb-2 is probable.\"}\n", + "{\"_question\": \"am i able to apply for a green card in the eb-2 category? i have a bachelor's degree from india, a two-year diploma from niit (in h1 and l1 they considered my diploma as a master degree), and 10 years of experience. is it possible to get a green card in the eb2 category?\",\n", + "\"_answer\": \"diplomas are hard to gauge. i don't think eb-2 is feasible.\"}\n", "\n", "######\n", - "{\"_question\": \"can i submit an application for a green card in the eb-2 category? i have a bsc from india plus a two year diploma from niit (in h1 and l1 they considered my diploma as a master degree). i also have 10 years of experience. am i able to submit an application for a green card in the eb2 category?\",\n", - "\"_answer\": \"it's hard to determine with diplomas. i don't think eb-2 is feasible.\"} \n", + "{\"_question\": \"can i submit an application for a green card in the eb-2 category? i have a bachelor's degree from india, a two-year diploma from niit (in h1 and l1 they considered my diploma as a master degree), and 10 years of experience. is it possible to apply for a green card in the eb2 category?\",\n", + "\"_answer\": \"diplomas are difficult to assess. i don't think eb-2 is doable.\"} \n", "\n", "\n", "\n", @@ -1465,15 +1310,15 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of work experience in the same field. Can I apply for a Green Card in the EB2 category?\",\n", - "\"_answer\": \"You appear to be eligible for EB-2.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Can I apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"It looks like you are eligible for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of experience in the relevant field. Can I submit a Green Card application in the EB2 category?\",\n", - "\"_answer\": \"You appear to be qualified for EB-2.\"}\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Can I apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"You seem to meet the criteria for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I suitable for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of experience in the related field. Am I able to apply for a Green Card in the EB2 category?\",\n", + "{\"_question\": \"Do I qualify for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Am I able to apply for a Green Card in the EB2 category?\",\n", "\"_answer\": \"You appear to be qualified for EB-2.\"} \n", "\n", "\n", @@ -1483,16 +1328,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for the EB-2 category? I am currently employed as a Mechanical Engineer at one of the largest companies and am transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree from four years ago, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Do I qualify for the EB-2 category?\",\n", - "\"_answer\": \"The job requires a minimum of two years of experience, so you do not qualify for the EB-2 category.\"}\n", + "{\"_question\": \"Do I meet the criteria for EB-2 category eligibility? I am currently employed as a Mechanical Engineer with one of the largest companies and I am transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree that took four years to complete, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Am I eligible for the EB-2 category?\",\n", + "\"_answer\": \"The minimum requirements for the job are two years of experience, so you do qualify for the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for the EB-2 category? I am currently employed as a Mechanical Engineer at one of the largest companies and am transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree from four years ago, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Am I eligible for the EB-2 category?\",\n", - "\"_answer\": \"The job requires a minimum of two years of experience, so you are not eligible for the EB-2 category.\"}\n", + "{\"_question\": \"Am I eligible for the EB-2 category? I'm currently employed as a Mechanical Engineer at one of the largest companies and I'm transitioning to a Product Development Engineer role with the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree that took four years to finish, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Do I meet the criteria for EB-2 category eligibility?\",\n", + "\"_answer\": \"The job requires a minimum of two years of experience, so you do qualify for the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for the EB-2 category? I am currently employed as a Mechanical Engineer at one of the largest companies and am transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree from four years ago, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Can I be considered for the EB-2 category?\",\n", - "\"_answer\": \"The job requires a minimum of two years of experience, so you do not meet the criteria for the EB-2 category.\"} \n", + "{\"_question\": \"Do I qualify for the EB-2 category? I'm currently employed as a Mechanical Engineer with one of the largest companies and I'm transitioning to a Product Development Engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree that took four years to obtain, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a Mechanical Engineer. Am I eligible for the EB-2 category?\",\n", + "\"_answer\": \"The job requires a minimum of two years of experience, so you are eligible for the EB-2 category.\"} \n", "\n", "\n", "\n", @@ -1501,16 +1346,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB-2 with my 3 years bachelors in computer science and 2 years masters in computer science from India?\",\n", - "\"_answer\": \"It is possible, however your lawyer must decide which route is the best for you: evaluate the two degrees to be equal to a bachelors and use bachelors plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", + "{\"_question\": \"Can I apply for EB-2 with my 3 year bachelor's degree in computer science and 2 year master's degree in computer science from India?\",\n", + "\"_answer\": \"It is a possibility, however your lawyer should determine which path is most suitable for you: evaluate the two degrees to be equivalent to a bachelor's and use bachelor's plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB-2 with my 3 years bachelors in computer science and 2 years masters in computer science from India?\",\n", - "\"_answer\": \"It is a possibility, but your attorney must determine which route is the most suitable for you: evaluate the two degrees to be equivalent to a bachelors and use bachelors plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", + "{\"_question\": \"I have a 3 year bachelor's degree in computer science and a 2 year master's degree in computer science from India. My education evaluation says master's. Is it feasible to apply for EB-2?\",\n", + "\"_answer\": \"It is possible, but your attorney should decide which route is best for you: assess the two degrees to be equal to a bachelor's and use bachelor's plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", "\n", "######\n", - "{\"_question\": \"If I have 3 years bachelors in computer science and 2 years masters in computer science from India, can I apply for EB-2?\",\n", - "\"_answer\": \"It is feasible, but your legal representative must evaluate which route is the most advantageous for you: assess the two degrees to be equal to a bachelors and use bachelors plus 5 years for EB-2 or just use the master's degree (risky).\"} \n", + "{\"_question\": \"I have a 3 year bachelor's degree in computer science and a 2 year master's degree in computer science from India. My education evaluation says master's. Can I apply for EB-2?\",\n", + "\"_answer\": \"It is doable, but your legal representative should decide which course is most suitable for you: evaluate the two degrees to be equivalent to a bachelor's and use bachelor's plus 5 years for EB-2 or just use the master's degree (risky).\"} \n", "\n", "\n", "\n", @@ -1519,16 +1364,20 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for an EB-2 visa with a four-year degree in civil engineering and thirteen years of documented experience in the IT industry?\",\n", - "\"_answer\": \"Yes, you may qualify for an EB-2 visa\"}\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 visa with a four-year degree in civil engineering and thirteen years of experience in the IT industry?\",\n", + "\"_answer\": \"It is possible to qualify for an EB-2 visa\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for an EB-2 visa with a four-year degree in civil engineering and thirteen years of experience in the IT sector?\",\n", - "\"_answer\": \"It is possible to be eligible for an EB-2 visa\"}\n", + "{\"_question\": \"Can I get an EB-2 visa with my qualifications?\",\n", + "\"_answer\": \"You may be eligible for an EB-2 visa\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get an EB-2 visa with a four-year degree in civil engineering and thirteen years of documented experience in the IT industry?\",\n", - "\"_answer\": \"You may be able to obtain an EB-2 visa\"} \n", + "{\"_question\": \"Am I qualified for an EB-2 visa with my background?\",\n", + "\"_answer\": \"You could be eligible for an EB-2 visa\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I have the qualifications for an EB-2 visa?\",\n", + "\"_answer\": \"It is possible to qualify for an EB-2 visa\"} \n", "\n", "\n", "\n", @@ -1537,16 +1386,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country, plus a CA. I have 10 years of accounting experience and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", - "\"_answer\": \"Your lawyers are correct that the CA is not accepted as education by USCIS. Speak with a credentials evaluation agency about potential master's degrees.\"}\n", + "{\"_question\": \"Do I need to get a master's degree for USCIS to accept my credentials?\",\n", + "\"_answer\": \"Yes, USCIS does not accept a CA as education. You should speak with a credentials evaluation agency about getting a master's degree.\"}\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country, plus a CA. I have 10 years of accounting experience and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", - "\"_answer\": \"Your lawyers are accurate in saying that the CA is not accepted as education by USCIS. Consult with a credentials evaluation agency about potential master's degrees.\"}\n", + "{\"_question\": \"What type of degree do I need to get USCIS to accept my credentials?\",\n", + "\"_answer\": \"USCIS does not accept a CA as education. You should contact a credentials evaluation agency to learn more about getting a master's degree.\"}\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I have a two-year B.Com from my home country, plus a CA. I have 10 years of accounting experience and a CPA. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA (accounting and finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS won't consider the CA.\",\n", - "\"_answer\": \"Your lawyers are right that the CA is not accepted as education by USCIS. Talk to a credentials evaluation agency about possible master's degrees.\"} \n", + "{\"_question\": \"What should I do if USCIS does not accept my CA?\",\n", + "\"_answer\": \"You should reach out to a credentials evaluation agency to explore getting a master's degree, as USCIS does not accept a CA as education.\"} \n", "\n", "\n", "\n", @@ -1555,16 +1404,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to switch jobs and submit a PERM and I-140 under EB-2 instead of EB3 with a new employer? How dangerous is this? I could stay with my current employer, but it would take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can file I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any issue in transferring the priority date if you file an EB-2 through a new employer. As for the risk, that needs to be evaluated by your lawyers.\"}\n", + "{\"_question\": \"Is it possible to switch jobs and submit PERM and I-140 under EB-2? Can I switch jobs and submit PERM and I-140 under EB2 instead of EB3 with the new employer? How risky is the situation? I can stay with my current employer, but it will take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", + "\"_answer\": \"You can file I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any issue with transferring the priority date if you file an EB-2 through a new employer. As to risk, that needs to be evaluated by your lawyers.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I switch jobs and file PERM and I-140 under EB-2 instead of EB3 with a new employer? How risky is this? I could stay with my current employer, but it would take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can submit I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't observe any problem in transferring the priority date if you file an EB-2 through a new employer. As far as the risk is concerned, that needs to be evaluated by your lawyers.\"}\n", + "{\"_question\": \"Am I able to change jobs and submit PERM and I-140 under EB-2? Can I change jobs and submit PERM and I-140 under EB2 instead of EB3 with the new employer? How dangerous is the situation? I can stay with my current employer, but it will take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", + "\"_answer\": \"You can file I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any problem with transferring the priority date if you file an EB-2 through a new employer. As to danger, that needs to be evaluated by your lawyers.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to change jobs and file PERM and I-140 under EB-2 instead of EB3 with a new employer? How hazardous is this? I could remain with my current employer, but it would take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can submit I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any difficulty in transferring the priority date if you file an EB-2 through a new employer. As for the risk, that needs to be evaluated by your lawyers.\"} \n", + "{\"_question\": \"Can I switch jobs and file PERM and I-140 under EB-2? Can I switch jobs and file PERM and I-140 under EB2 instead of EB3 with the new employer? How hazardous is the situation? I can stay with my current employer, but it will take another 3 years to get my green card under EB3. My priority date is February 2007.\",\n", + "\"_answer\": \"You can file I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any difficulty with transferring the priority date if you file an EB-2 through a new employer. As to hazard, that needs to be evaluated by your lawyers.\"} \n", "\n", "\n", "\n", @@ -1573,16 +1422,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I qualify for EB-2 if I have a master's degree in biomedical engineering and work as a senior consultant for a company that implements EQMS for biologics, medical device, and pharma companies?\",\n", - "\"_answer\": \"It is possible that you could qualify for EB-2 depending on your qualifications and the job requirements. If you leave before I-140 is approved, you may not receive any benefit from the process. However, if you leave after I-140 approval, you can use your priority date to move forward.\"}\n", + "{\"_question\": \"Can I qualify for EB-2 if I have a master's in biomedical engineering and work as a senior consultant in a company that implements EQMS for biologics, med device and pharma companies?\",\n", + "\"_answer\": \"It is possible that you could meet the requirements for EB-2 depending on your qualifications and the job description. If you leave before the I-140 is approved, you may not receive any benefit from the process. However, if you leave after the I-140 is approved, you can take your priority date with you.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a master's degree in biomedical engineering and I am a senior consultant for a company that implements EQMS for biologics, medical device, and pharma companies. Could I be eligible for EB-2 if I apply for my green card?\",\n", - "\"_answer\": \"It is possible that you could be eligible for EB-2 depending on your qualifications and the job requirements. If you leave before I-140 is approved, you may not gain anything from the process. But if you leave after I-140 approval, you can use your priority date to progress.\"}\n", + "{\"_question\": \"If I have a master's in biomedical engineering and am employed as a senior consultant in a company that implements EQMS for biologics, med device and pharma companies, could I be eligible for EB-2?\",\n", + "\"_answer\": \"It is possible that you could be eligible for EB-2 depending on your qualifications and the job requirements. If you depart before the I-140 is approved, you may not gain anything from the process. But if you leave after the I-140 is approved, you can take your priority date with you.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a master's degree in biomedical engineering and I am a senior consultant for a company that implements EQMS for biologics, medical device, and pharma companies. If I apply for my green card, will I qualify for EB-2?\",\n", - "\"_answer\": \"It is possible that you could qualify for EB-2 depending on your qualifications and the job requirements. If you depart before I-140 is approved, you may not benefit from the process. However, if you leave after I-140 approval, you can take your priority date to move forward.\"} \n", + "{\"_question\": \"If I have a master's in biomedical engineering and work as a senior consultant in a company that implements EQMS for biologics, med device and pharma companies, am I able to apply for EB-2?\",\n", + "\"_answer\": \"It is possible that you could qualify for EB-2 depending on your qualifications and the job description. If you leave before the I-140 is approved, you may not get any benefit from the process. However, if you leave after the I-140 is approved, you can take your priority date with you.\"} \n", "\n", "\n", "\n", @@ -1591,16 +1440,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch jobs after I-140 approval? I'm in my fifth year of H1. My current employer has filed for my permanent residency under the EB-3 category, even though I don't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Can I wait for I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a future employer?\",\n", - "\"_answer\": \"It is possible and common for a new employer (Employer B) to get an H-1 extension based on the I-140 approval of the previous employer (Employer A). You should discuss the details with an attorney.\"}\n", + "{\"_question\": \"Can I switch jobs after I-140 approval? I am in the fifth year of my H1 visa. My current employer has filed for my permanent residency under the EB-3 category, even though I do not have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Can I wait for I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on my H1 with a future employer?\",\n", + "\"_answer\": \"It is possible and common for a second employer to get an H-1 extension based on the I-140 approval of the first employer. You should discuss the specifics with an attorney.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I change jobs after I-140 is approved? I'm in my fifth year of H1. My current employer has filed for my green card under the EB-3 category, even though I don't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Can I wait for I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a future employer?\",\n", - "\"_answer\": \"It is possible and common for a new employer (Employer B) to receive an H-1 extension based on the I-140 approval of the previous employer (Employer A). You should consult with an attorney about the details.\"}\n", + "{\"_question\": \"Can I change jobs after I-140 is approved? I am in the fifth year of my H1 visa. My current employer has filed for my permanent residency under the EB-3 category, even though I do not have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Is it possible to wait for I-140 approval, get a three year extension with my current employer, and then move to a different job? Will I be able to get three more years on my H1 with a future employer?\",\n", + "\"_answer\": \"It is feasible and common for a second employer to receive an H-1 extension based on the I-140 approval of the first employer. You should consult a lawyer about the details.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I move jobs after I-140 is approved? I'm in my fifth year of H1. My current employer has filed for my permanent residency under the EB-3 category, even though I don't have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Can I wait for I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a future employer?\",\n", - "\"_answer\": \"It is possible and common for a new employer (Employer B) to obtain an H-1 extension based on the I-140 approval of the previous employer (Employer A). You should speak to a lawyer about the details.\"} \n", + "{\"_question\": \"Can I switch jobs after I-140 is accepted? I am in the fifth year of my H1 visa. My current employer has filed for my permanent residency under the EB-3 category, even though I do not have five years of experience (EB-3 has a six year backlog, but EB-2 is current for me). Is it possible to wait for I-140 approval, get a three year extension with my current employer, and then change jobs? Will I be able to get three more years on my H1 with a future employer?\",\n", + "\"_answer\": \"It is doable and common for a second employer to acquire an H-1 extension based on the I-140 approval of the first employer. You should talk to a lawyer about the particulars.\"} \n", "\n", "\n", "\n", @@ -1609,16 +1458,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I need to wait for a promotion before starting the green card process to qualify for EB-2? Is a Bachelor's degree plus five years of post-Bachelor experience or a Master's degree plus two years of experience sufficient for a Senior level position? Does the job description need to specify Bachelor's plus five years or Master's plus two years?\",\n", - "\"_answer\": \"It is best to consult with your lawyers to determine the best timing for filing. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience is required to qualify.\"}\n", + "{\"_question\": \"Should I wait for a promotion before beginning the green card process in order to qualify for EB-2? Does my company need to specify a Bachelor's degree plus five years of experience or a Master's degree plus two years of experience for the senior level? Is either acceptable?\", \n", + "\"_answer\": \"It is best to consult with your legal team to decide when to start the filing process. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience is required to qualify.\"}\n", "\n", "######\n", - "{\"_question\": \"When should I begin the green card process to qualify for EB-2? Is a Bachelor's degree plus five years of post-Bachelor experience or a Master's degree plus two years of experience enough for a Senior level position? Does the job description need to specify Bachelor's plus five years or Master's plus two years?\",\n", - "\"_answer\": \"It is best to consult with your lawyers to decide when to file. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience is necessary to qualify.\"}\n", + "{\"_question\": \"Do I need to wait for a promotion before filing EB-2? What are the requirements for a senior level position - Bachelor's degree plus five years of experience or Master's degree plus two years of experience? Is either acceptable?\", \n", + "\"_answer\": \"It is best to speak with your lawyers to determine the timing of the filing. For EB-2, you must have either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience to qualify.\"}\n", "\n", "######\n", - "{\"_question\": \"Should I wait for a promotion before starting the green card process to qualify for EB-2? Is a Bachelor's degree plus five years of post-Bachelor experience or a Master's degree plus two years of experience enough for a Senior level position? Does the job description need to specify Bachelor's plus five years or Master's plus two years?\",\n", - "\"_answer\": \"It is best to speak with your lawyers to determine the best timing for filing. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience is required to qualify.\"} \n", + "{\"_question\": \"Should I delay the green card process until I get a promotion to qualify for EB-2? What are the requirements for a senior level position - Bachelor's degree plus five years of experience or Master's degree plus two years of experience? Is either sufficient?\", \n", + "\"_answer\": \"It is advisable to consult with your legal team to decide when to start the filing process. For EB-2, either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience is necessary to qualify.\"} \n", "\n", "\n", "\n", @@ -1627,16 +1476,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) as well as 10 years of experience, 7.5 of which are in the required job description.\",\n", - "\"_answer\": \"It depends. If the diploma is postgraduate (not available to undergraduates) and accepted, you may be eligible for EB-2.\"}\n", + "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which is in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is postgraduate (not available for undergraduates) and accepted, you may be eligible for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which are in the required job description.\",\n", - "\"_answer\": \"It depends. If the diploma is postgraduate (not available to undergraduates) and accepted, you may be able to qualify for EB-2.\"}\n", + "{\"_question\": \"Am I eligible for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which is in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is postgraduate (not available for undergraduates) and recognized, you may be qualified for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which are in the required job description.\",\n", - "\"_answer\": \"It depends. If the diploma is postgraduate (not available to undergraduates) and accepted, you may be eligible for EB-2.\"} \n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which is in the required job description.\",\n", + "\"_answer\": \"It depends. If the diploma is postgraduate (not available for undergraduates) and acknowledged, you may be eligible for EB-2.\"} \n", "\n", "\n", "\n", @@ -1645,16 +1494,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead, managing 5-20 people. My M.Sc. was evaluated as equivalent to a US Master's degree for H1 visa approval. Am I eligible?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your current job, then you should be able to apply for EB-2.\"}\n", + "{\"_question\": \"Am I qualified for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead (managing 5-20 people). My M.Sc. was evaluated as equivalent to a US Master's Degree for H1 visa approval. Can I apply for EB2?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are related to your current job, you should be eligible for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I able to apply for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead, managing 5-20 people. My M.Sc. was evaluated as equivalent to a US Master's degree for H1 visa approval. Is this sufficient?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your current job, then you should be able to apply for EB-2.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead (managing 5-20 people). My M.Sc. was evaluated as equivalent to a US Master's Degree for H1 visa approval. Am I qualified?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are related to your current work, you should be able to apply for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead, managing 5-20 people. My M.Sc. was evaluated as equivalent to a US Master's degree for H1 visa approval. Do I qualify?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are related to your current job, then you should be able to apply for EB-2.\"} \n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have 9 years of experience as a Technical Architect/Lead (managing 5-20 people). My M.Sc. was evaluated as equivalent to a US Master's Degree for H1 visa approval. Can I be approved?\",\n", + "\"_answer\": \"If your Bachelor's and Master's degrees are related to your job, you should be able to get EB2.\"} \n", "\n", "\n", "\n", @@ -1663,16 +1512,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch from an EB3 to an EB2 green card through portability? My EB3 I-485 is still pending with a priority date of 06/2006. My employer is willing to file a new EB2 as I have an Indian equivalent master's degree (3+3 years) and more experience as well as increased job responsibilities. What is the minimum wage for the EB2 category? Will my current company experience count for the new EB2 category? Any advice on the EB2 job responsibilities?\",\n", - "\"_answer\": \"In theory, this is a possibility. As for the practical implications, you should consult with the lawyers who will be handling your second green card application.\"}\n", + "{\"_question\": \"Can I switch from EB3 to EB2 with my current employer?\",\n", + "\"_answer\": \"In theory, it is possible to transfer from EB3 to EB2 with your current employer. However, you should consult with a lawyer to discuss the practical implications of this decision.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to switch from an EB3 to an EB2 green card through portability? My EB3 I-485 is still pending with a priority date of 06/2006. My employer is willing to file a new EB2 as I have an Indian equivalent master's degree (3+3 years) and more experience as well as increased job responsibilities. What is the minimum wage for the EB2 category? Will my current company experience count for the new EB2 category? Any tips on the EB2 job responsibilities?\",\n", - "\"_answer\": \"In theory, this is doable. As for the practical implications, you should speak with the lawyers who will be representing you in the second green card process.\"}\n", + "{\"_question\": \"Is it feasible to transition from EB3 to EB2 with my current employer?\",\n", + "\"_answer\": \"It is theoretically possible to make the switch from EB3 to EB2 with your current employer. You should speak with a lawyer to discuss the practical implications of this move.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I transfer from an EB3 to an EB2 green card through portability? My EB3 I-485 is still pending with a priority date of 06/2006. My employer is willing to file a new EB2 as I have an Indian equivalent master's degree (3+3 years) and more experience as well as increased job responsibilities. What is the minimum wage for the EB2 category? Will my current company experience count for the new EB2 category? Any advice on the EB2 job responsibilities?\",\n", - "\"_answer\": \"In theory, this is achievable. As for the practical implications, you must consult with the lawyers who will be managing your second green card application.\"} \n", + "{\"_question\": \"What is the minimum wage for EB2 category and can I move from EB3 to EB2 with my current employer?\",\n", + "\"_answer\": \"It is possible to transfer from EB3 to EB2 with your current employer, however, you should consult with a lawyer to discuss the practical implications of this decision. The minimum wage for the EB2 category varies depending on the location.\"} \n", "\n", "\n", "\n", @@ -1682,15 +1531,15 @@ "\n", "######\n", "{\"_question\": \"Do I meet the criteria for EB2 with my MS in Electrical Engineering and 3 years of experience?\",\n", - "\"_answer\": \"Yes, you are eligible for EB2, unless the job requirements are lower than a Bachelor's degree plus 5 years of experience.\"}\n", + " \"_answer\": \"Yes, you are eligible for EB2, unless the job requirements are lower than a Bachelor's degree and 5 years of experience.\"}\n", "\n", "######\n", "{\"_question\": \"Am I qualified for EB2 with my MS in Electrical Engineering and 3 years of experience?\",\n", - "\"_answer\": \"Yes, you fulfill the requirements for EB2, unless the job demands are less than a Bachelor's degree plus 5 years of experience.\"}\n", + " \"_answer\": \"Yes, you fulfill the criteria for EB2, unless the job requirements are lower than a Bachelor's degree and 5 years of experience.\"}\n", "\n", "######\n", "{\"_question\": \"Do I qualify for EB2 with my MS in Electrical Engineering and 3 years of experience?\",\n", - "\"_answer\": \"Yes, you satisfy the criteria for EB2, unless the job specifications are less than a Bachelor's degree plus 5 years of experience.\"} \n", + " \"_answer\": \"Yes, you are qualified for EB2, unless the job requirements are less than a Bachelor's degree and 5 years of experience.\"} \n", "\n", "\n", "\n", @@ -1699,16 +1548,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2 with a Master's in Computer Science?\",\n", + "{\"_question\": \"Do I qualify for EB2 if I have a Master's in Computer Science from the US and 6 months of experience?\",\n", "\"_answer\": \"It depends if the job requires a Master's degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2 with a Master's in Computer Science and 6 months experience?\",\n", + "{\"_question\": \"Am I eligible for EB2 if I have a Master's in Computer Science from the US and 6 months of experience?\",\n", "\"_answer\": \"It depends if the job necessitates a Master's degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get EB2 with a Master's in Computer Science and 6 months experience?\",\n", - "\"_answer\": \"It depends if the job requires a Master's degree.\"} \n", + "{\"_question\": \"Can I get EB2 if I have a Master's in Computer Science from the US and 6 months of experience?\",\n", + "\"_answer\": \"It depends if the job demands a Master's degree.\"} \n", "\n", "\n", "\n", @@ -1718,15 +1567,15 @@ "\n", "######\n", "{\"_question\": \"What are the odds of me obtaining a green card through the EB-2 category after I finish my PhD and get a job in the industry?\",\n", - "\"_answer\": \"It looks like your chances of getting a green card through EB-2 are quite good.\"}\n", + "\"_answer\": \"It looks like you have a good chance of getting a green card through the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of me being able to acquire a green card through the EB-2 route after I complete my PhD and secure a job in the industry?\",\n", - "\"_answer\": \"It appears that your prospects of obtaining a green card through EB-2 are quite favorable.\"}\n", + "{\"_question\": \"I am in the last year of my PhD in semiconductor devices at a US university. I have done my MS from the same university and have around 5 first author publications. What are the chances of me getting a green card through the EB-2 category right after I get a job in the industry?\",\n", + "\"_answer\": \"It appears that your chances of getting a green card through the EB-2 category are quite good.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the prospects of me getting a green card through the EB-2 route once I finish my PhD and find a job in the industry?\",\n", - "\"_answer\": \"Your chances of getting a green card through EB-2 seem quite good.\"} \n", + "{\"_question\": \"I am in the final year of my PhD in semiconductor devices at a US university. I have done my MS from the same university and have around 5 first author publications. What are the prospects of me getting a green card through the EB-2 category once I get a job in the industry?\",\n", + "\"_answer\": \"It looks like you have a good prospect of getting a green card through the EB-2 category.\"} \n", "\n", "\n", "\n", @@ -1735,16 +1584,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to transfer my PD for EB3 to a new EB2 application? I filed my PERM under the EB3 category on October 1st, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is there a way to keep my EB3 file running in parallel if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest if I can change my employer now to file for EB2?\",\n", - "\"_answer\": \"It is not possible to have two PERM applications for the same individual from the same company. However, if you have a valid explanation, there is no law that prohibits it. You cannot transfer your PD until the I-140 is approved. I believe you have enough time to change jobs now.\"}\n", + "{\"_question\": \"Is it possible to transfer my PD from EB3 to EB2? I filed my PERM under EB3 category on October 1st, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is it possible to keep my EB3 file running in parallel? Is there a way to transfer my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest if I can change my employer now to file for EB2 or not?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications for the same individual for different jobs with the same company. However, you cannot transfer your PD until the I-140 is approved. I do not see any issue with changing jobs right away. You may have just enough time.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to move my EB3 priority date to a new EB2 application? I submitted my PERM under the EB3 category on October 1st, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I submit with the same employer under EB2? Is there a way to keep my EB3 file running in parallel if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you advise if I can switch my employer now to file for EB2?\",\n", - "\"_answer\": \"Having two PERM applications for the same individual from the same company is not possible. However, if you have a valid explanation, there is no law that forbids it. You cannot transfer your PD until the I-140 is approved. I think you have enough time to change jobs now.\"}\n", + "{\"_question\": \"Can I move my PD from EB3 to EB2? I submitted my PERM under EB3 category on October 1st, 2008 and was audited. According to the current PERM dates, they are processing audits from August 2008. Is it possible to file with the same employer under EB2? Can I keep my EB3 file running in parallel? Is there a way to move my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you advise if I can switch my employer now to file for EB2 or not?\",\n", + "\"_answer\": \"It is not feasible to have two PERM applications for the same individual for different jobs with the same company. However, you cannot transfer your PD until the I-140 is approved. I do not see any issue with changing jobs immediately. You may have just enough time.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to transfer my EB3 priority date to a new EB2 application? I filed my PERM under the EB3 category on October 1st, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I submit with the same employer under EB2? Is there a way to keep my EB3 file running in parallel if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest if I can change my employer now to file for EB2?\",\n", - "\"_answer\": \"Having two PERM applications for the same individual from the same company is not possible. However, if you have a valid explanation, there is no law that prohibits it. You cannot move your PD until the I-140 is approved. I believe you have enough time to switch jobs now.\"} \n", + "{\"_question\": \"Is it possible to transfer my PD from EB3 to EB2? I filed my PERM under EB3 category on October 1st, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is it possible to keep my EB3 file running in parallel? Is there a way to transfer my PD from EB3 to EB2 after I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest if I can change my employer now to file for EB2 or not?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications for the same individual for different jobs with the same company. However, you cannot move your PD until the I-140 is approved. I do not see any issue with switching jobs right away. You may have just enough time.\"} \n", "\n", "\n", "\n", @@ -1753,16 +1602,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB2 with a 3-year bachelor's degree, certification as a software architect, 15+ years of experience (including current employer) and a salary of over 100k?\",\n", - "\"_answer\": \"It is unlikely that you would qualify for EB2 under the exceptional ability category, but have your lawyers review the situation.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2?\",\n", + "\"_answer\": \"It is unlikely that you qualify for EB2 based on your qualifications, but it is best to have your lawyers review it.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for EB2 with my 3-year bachelor's degree, software architect certification, 15+ years of experience (including current employer) and a salary of over 100k?\",\n", - "\"_answer\": \"It is unlikely that you would be eligible for EB2 under the exceptional ability category, but have your lawyers review the details.\"}\n", + "{\"_question\": \"Am I eligible for EB2?\",\n", + "\"_answer\": \"It is unlikely that you are eligible for EB2 with your 3-year bachelor's degree, certified software architect, 15+ years of experience, and 100k+ salary, but it is best to have your lawyers review it.\"}\n", "\n", "######\n", - "{\"_question\": \"Given my 3-year bachelor's degree, software architect certification, 15+ years of experience (including current employer) and a salary of over 100k, do I qualify for EB2 under exceptional ability?\",\n", - "\"_answer\": \"It is unlikely that you would be approved for EB2 under the exceptional ability category, but have your lawyers review the situation.\"} \n", + "{\"_question\": \"Do I have a chance of getting EB2?\",\n", + "\"_answer\": \"It is unlikely that you can get EB2 given your qualifications, but it is best to have your lawyers review it.\"} \n", "\n", "\n", "\n", @@ -1771,16 +1620,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2 (Schedule A) to bypass the labor certification step if my PERM application was recently denied due to a layoff in my company?\",\n", - "\"_answer\": \"If you meet the qualifications, you can submit a Schedule A application without delay. There should be no issues arising from the PERM denial or layoffs.\"}\n", + "{\"_question\": \"Can I apply for EB2 (Schedule A) to bypass the labor certification step if my PERM application was recently denied due to layoffs in my company?\",\n", + "\"_answer\": \"If you are qualified, you can submit a Schedule A application without any delay. The PERM denial or layoffs should not affect your application in any way.\"}\n", "\n", "######\n", - "{\"_question\": \"I was recently laid off and my PERM application was denied. Can I apply for EB2 (Schedule A) to avoid the labor certification process?\",\n", - "\"_answer\": \"If you are eligible, you can submit a Schedule A application right away. The PERM denial or layoffs should not cause any problems.\"}\n", + "{\"_question\": \"I was recently laid off and my PERM application was denied. Can I use EB2 (Schedule A) to avoid the labor certification step?\",\n", + "\"_answer\": \"If you are eligible, you can submit a Schedule A application right away. The PERM denial or layoffs should not have any impact on your application.\"}\n", "\n", "######\n", - "{\"_question\": \"My PERM application was denied due to a layoff in my company. Can I apply for EB2 (Schedule A) to bypass the labor certification step?\",\n", - "\"_answer\": \"If you qualify, you can file a Schedule A application immediately. There should be no issues stemming from the PERM denial or layoffs.\"} \n", + "{\"_question\": \"My PERM application was denied due to a layoff in my company. Can I use EB2 (Schedule A) to bypass the labor certification step?\",\n", + "\"_answer\": \"If you meet the requirements, you can file a Schedule A application immediately. The PERM denial or layoffs should not be a problem for your application.\"} \n", "\n", "\n", "\n", @@ -1790,15 +1639,15 @@ "\n", "######\n", "{\"_question\": \"Do I qualify for EB2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am currently working as an IT Architect and my company is ready to process my green card. Am I eligible?\",\n", - "\"_answer\": \"It appears that you meet the requirements for EB2, given that your B.Tech is a 4-year degree.\"}\n", + "\"_answer\": \"It appears that you meet the requirements for EB-2, given that your B.Tech is a four-year degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get an EB2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am currently an IT Architect and my company is ready to process my green card. Am I qualified?\",\n", - "\"_answer\": \"It looks like you are eligible for EB2, as long as your B.Tech is a 4-year degree.\"}\n", + "{\"_question\": \"Am I able to get an EB2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am currently an IT Architect and my company is ready to process my green card. Can I qualify?\",\n", + "\"_answer\": \"It looks like you are eligible for EB-2, assuming your B.Tech is a four-year degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I able to get an EB2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am an IT Architect now and my company is ready to process my green card. Do I qualify?\",\n", - "\"_answer\": \"It seems that you meet the criteria for EB2, provided that your B.Tech is a 4-year degree.\"} \n", + "{\"_question\": \"Can I get an EB2? I have a B.Tech in engineering from India and 13+ years of experience in IT. I am an IT Architect and my company is ready to process my green card. Am I qualified?\",\n", + "\"_answer\": \"It appears that you meet the requirements for EB-2, given that your B.Tech is a four-year degree.\"} \n", "\n", "\n", "\n", @@ -1807,16 +1656,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for an EB-2 visa if I have a 4 year US Bachelor's degree, a 2 year Master's degree in Chemistry, and have been working on an H-1B visa for the same US university as a research associate for 2 years, even though my publications (2-3) are still pending and I am secondary on most of them?\",\n", - "\"_answer\": \"Yes, you qualify for an EB-2 visa. Whether or not a promotion is necessary is something that your lawyer and employer will need to decide. Any position that requires a Master's or Bachelor's degree and 5 years of progressively responsible experience is eligible for an EB-2 filing.\"}\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 visa if I have a 4 year US bachelor's degree and a 2 year master's degree in chemical engineering, have been working on an H-1B visa for the same US university as a research associate for 2 years, and have 2-3 pending publications with me as a secondary author?\",\n", + "\"_answer\": \"Yes, you are eligible for an EB-2 visa. Whether or not a promotion is necessary is something that your lawyer and the employer must decide. Any position that requires a master's or bachelor's degree and 5 years of progressively responsible experience qualifies for an EB-2 filing.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 4 year US Bachelor's degree, a 2 year Master's degree in Chemistry, and have been working on an H-1B visa for the same US university as a research associate for 2 years, and my publications (2-3) are still pending and I am secondary on most of them. Am I eligible for an EB-2 visa?\",\n", - "\"_answer\": \"Yes, you meet the requirements for an EB-2 visa. Whether or not a promotion is necessary is something that your lawyer and employer will need to determine. Any position that requires a Master's or Bachelor's degree and 5 years of progressively responsible experience is eligible for an EB-2 filing.\"}\n", + "{\"_question\": \"I have a 4 year US bachelor's degree and a 2 year master's degree in chemical engineering, have been working on an H-1B visa for the same US university as a research associate for 2 years, and have 2-3 pending publications with me as a secondary author. Am I qualified for an EB-2 visa?\",\n", + "\"_answer\": \"Yes, you meet the requirements for an EB-2 visa. Whether or not a promotion is necessary is something that your lawyer and the employer must decide. Any position that requires a master's or bachelor's degree and 5 years of progressively responsible experience is eligible for an EB-2 filing.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 4 year US Bachelor's degree, a 2 year Master's degree in Chemistry, and have been working on an H-1B visa for the same US university as a research associate for 2 years, and my publications (2-3) are still pending and I am secondary on most of them. Do I qualify for an EB-2 visa?\",\n", - "\"_answer\": \"Yes, you are eligible for an EB-2 visa. Whether or not a promotion is required is something that your lawyer and employer will need to decide. Any position that requires a Master's or Bachelor's degree and 5 years of progressively responsible experience is eligible for an EB-2 filing.\"} \n", + "{\"_question\": \"I have a 4 year US bachelor's degree and a 2 year master's degree in chemical engineering, have been working on an H-1B visa for the same US university as a research associate for 2 years, and have 2-3 pending publications with me as a secondary author. Do I qualify for an EB-2 visa?\",\n", + "\"_answer\": \"Yes, you are eligible for an EB-2 visa. Whether or not a promotion is required is something that your lawyer and the employer must decide. Any position that necessitates a master's or bachelor's degree and 5 years of progressively responsible experience is suitable for an EB-2 filing.\"} \n", "\n", "\n", "\n", @@ -1825,11 +1674,11 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB2? I completed my BSc in Computer Science from St. Xaviers Mumbai and then my MCA from REC Trichy. I have 7 years of experience in the IT industry and my company is filing my GC. Is this enough?\",\n", + "{\"_question\": \"Am I qualified for EB2? I completed my BSc in Computer Science from St. Xaviers Mumbai, followed by an MCA from REC Trichy. I have 7 years of work experience in the IT industry and my company is filing my green card. Is this enough to qualify for EB2?\",\n", "\"_answer\": \"Yes, you meet the requirements for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a BSc in Computer Science from St. Xaviers Mumbai and an MCA from REC Trichy. I have 7 years of experience in the IT field and my employer is submitting my GC. Is this enough?\",\n", + "{\"_question\": \"Do I qualify for EB2? I have a BSc in Computer Science from St. Xaviers Mumbai and an MCA from REC Trichy. I have 7 years of experience in the IT industry and my employer is filing my green card. Am I eligible for EB2?\",\n", "\"_answer\": \"Yes, you are eligible for EB2.\"} \n", "\n", "\n", @@ -1839,16 +1688,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for an EB-2 green card if I have a 3 year Bachelor's degree in Science and a 3 year Bachelor's degree in Technology from India, plus 8 years of experience?\",\n", - "\"_answer\": \"It is usually not allowed to combine two 3-year Bachelor's degrees, so it is unlikely that you would qualify for an EB-2 green card.\"}\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 green card if I have a BSc and a BTech, both 3 years long, and 8 years of experience?\",\n", + "\"_answer\": \"It is usually not allowed to combine two 3-year bachelor's degrees, so it is unlikely you would qualify for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3 year Bachelor's degree in Science and a 3 year Bachelor's degree in Technology from India, plus 8 years of experience. Am I eligible to apply for a green card under the EB-2 category if the position requires a Master's degree or a Bachelor's degree plus 5 years of experience?\",\n", - "\"_answer\": \"Generally, combining two 3-year Bachelor's degrees is not allowed. Therefore, it is unlikely that you would qualify for an EB-2 green card.\"}\n", + "{\"_question\": \"If I have a 3-year BSc and a 3-year BTech, plus 8 years of experience, am I eligible to apply for an EB-2 green card if the job requires a MS or BS plus 5 years of experience?\",\n", + "\"_answer\": \"Generally, it is not accepted to put together two 3-year bachelor's degrees. Therefore, it appears unlikely that you would qualify for an EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3 year Bachelor's degree in Science and a 3 year Bachelor's degree in Technology from India, plus 8 years of experience. Will I be able to get a green card under the EB-2 category if the position requires a Master's degree or a Bachelor's degree plus 5 years of experience?\",\n", - "\"_answer\": \"It is usually not possible to combine two 3-year Bachelor's degrees, so it appears unlikely that you would be eligible for an EB-2 green card.\"} \n", + "{\"_question\": \"Do I qualify for an EB-2 green card if I have a 3-year BSc and a 3-year BTech, plus 8 years of experience, and the job requires a MS or BS plus 5 years of experience?\",\n", + "\"_answer\": \"It is usually not allowed to combine two 3-year bachelor's degrees, so it is unlikely you would meet the requirements for an EB-2.\"} \n", "\n", "\n", "\n", @@ -1857,16 +1706,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2 or EB3 with my 7 years of experience and 3 year bachelor's degree plus 2 year master's degree from India?\",\n", - "\"_answer\": \"It is likely that you would be able to combine your bachelor's and master's degrees to qualify for EB2, since they are in the same or similar fields.\"}\n", + "{\"_question\": \"What is the eligibility criteria for EB2 or EB3 if I have 7 years of experience with a 3-year bachelor's degree and a 2-year master's degree from India? The job for which my green card is being filed requires a bachelor's degree and 6 years of experience.\",\n", + "\"_answer\": \"Generally, if the bachelor's and master's degrees are in the same or similar fields, you should be able to combine them to reach the 4-year degree requirement for EB2. You should have a good chance of qualifying for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"I have 7 years of experience and a 3 year bachelor's degree plus 2 year master's degree from India. Is this enough to qualify for EB2 or EB3?\",\n", - "\"_answer\": \"It is possible that you could combine your bachelor's and master's degrees to meet the requirements for EB2, since they are in the same or similar fields.\"}\n", + "{\"_question\": \"What is the eligibility for EB2 or EB3 if I have 7 years of experience with a 3-year bachelor's degree and a 2-year master's degree from India? The position for which my green card is being filed requires a bachelor's degree and 6 years of experience.\",\n", + "\"_answer\": \"In most cases, if the bachelor's and master's degrees are in the same or similar fields, you should be able to combine them to reach the 4-year degree requirement for EB2. You should have a good chance of being eligible for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3 year bachelor's degree and a 2 year master's degree from India, plus 7 years of experience. Does this qualify me for EB2 or EB3?\",\n", - "\"_answer\": \"You may be able to use your bachelor's and master's degrees together to meet the requirements for EB2, since they are in the same or similar fields.\"} \n", + "{\"_question\": \"What is the eligibility for EB2 or EB3 if I have 7 years of experience with a 3-year bachelor's degree and a 2-year master's degree from India? The job for which my green card is being filed requires a bachelor's degree and 6 years of experience.\",\n", + "\"_answer\": \"Generally, if the bachelor's and master's degrees are in the same or similar fields, you should be able to combine them to get the 4-year degree requirement for EB2. You should have a good chance of qualifying for EB2.\"} \n", "\n", "\n", "\n", @@ -1875,16 +1724,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the estimated timeline for green card processing and EB2 if I initiate it now?\",\n", - "\"_answer\": \"The length of time for green card processing and EB2 for those born in countries with a backlog can range from 3-4 years or longer, depending on a variety of factors. However, getting to the I-140 approved stage can be beneficial as it allows you to transfer your priority date to another employer and get an H-1 extension beyond six years.\"}\n", + "{\"_question\": \"What is the estimated time frame for green card processing if I initiate it now?\",\n", + "\"_answer\": \"The duration of the process can range from 3-4 years or more, depending on the backlog of the country of birth. However, having the I-140 approved can be beneficial as it allows you to transfer your priority date to the next employer and extend your H-1 beyond 6 years.\"}\n", "\n", "######\n", - "{\"_question\": \"If I begin the green card process and EB2 now, how long will it take?\",\n", - "\"_answer\": \"The duration of the green card process and EB2 for individuals from countries with a backlog can be anywhere from 3-4 years or longer, depending on a number of variables. One advantage of reaching the I-140 approved stage is that you can transfer your priority date to a different employer and obtain an H-1 extension beyond six years.\"}\n", + "{\"_question\": \"How long will it take to get a green card if I start the process now?\",\n", + "\"_answer\": \"The timeline for green card processing can vary from 3-4 years or more, depending on the backlog of the country of birth. An advantage of getting the I-140 approved is that you can transfer your priority date to the next employer and extend your H-1 beyond 6 years.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the expected time frame for green card processing and EB2 if I start it now?\",\n", - "\"_answer\": \"For those born in countries with a backlog, the timeline for green card processing and EB2 can range from 3-4 years or longer, depending on various factors. A major benefit of getting to the I-140 approved stage is that you can transfer your priority date to another employer and get an H-1 extension beyond six years.\"} \n", + "{\"_question\": \"What is the expected duration of green card processing if I initiate it now?\",\n", + "\"_answer\": \"The length of the process can range from 3-4 years or more, depending on the backlog of the country of birth. Getting the I-140 approved can be advantageous as it allows you to transfer your priority date to the next employer and extend your H-1 beyond 6 years.\"} \n", "\n", "\n", "\n", @@ -1894,15 +1743,15 @@ "\n", "######\n", "{\"_question\": \"Can my current employer sponsor me for EB2 after they promote me to Clinical Specialist?\",\n", - "\"_answer\": \"It is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. Only a competent lawyer can help you assess the chances.\"}\n", + "\"_answer\": \"The law allows for experience gained with the same employer to be used if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To assess the chances, it is best to consult a competent lawyer.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am promoted to Clinical Specialist, can my current employer sponsor me for EB2?\",\n", - "\"_answer\": \"The law allows for the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To determine the likelihood of success, it is best to consult with a qualified lawyer.\"}\n", + "{\"_question\": \"If I am promoted to Clinical Specialist by my current employer, can they sponsor me for EB2?\",\n", + "\"_answer\": \"It is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To determine the chances, it is recommended to seek the advice of a qualified lawyer.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I use my experience with my current employer for EB2 if I am promoted to Clinical Specialist?\",\n", - "\"_answer\": \"The law permits the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To get a better understanding of the chances of success, it is recommended to seek the advice of a competent lawyer.\"} \n", + "{\"_question\": \"If I am promoted to Clinical Specialist, can my current employer sponsor me for EB2?\",\n", + "\"_answer\": \"Under the current law, it is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To assess the chances, it is advisable to consult a competent lawyer.\"} \n", "\n", "\n", "\n", @@ -1911,16 +1760,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in Electronics from India in 2004 and a combined experience of 6 years (3 years in India and 3 years in the US). Is it a requirement to have 5 years of experience outside of the US?\",\n", - "\"_answer\": \"Given your four-year degree and more than five years of post-degree experience, you should have a good chance of qualifying for EB2.\"}\n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in Electronics from India in 2004 and 6 years of experience (3 in India and 3 in the US). Is it necessary to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"Given your four-year degree and more than five years of post-degree experience, you should have a chance at EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Tech in Electronics from India in 2004 and a combined experience of 6 years (3 years in India and 3 years in the US). Is it necessary to have 5 years of experience outside of the US?\",\n", - "\"_answer\": \"With your four-year degree and more than five years of post-degree experience, you should have a good chance of being eligible for EB2.\"}\n", + "{\"_question\": \"Can I qualify for EB2? I have a B.Tech in Electronics from India in 2004 and 6 years of experience (3 in India and 3 in the US). Do I need to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"With your four-year degree and more than five years of post-degree experience, you should be able to pursue EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2? I have a B.Tech in Electronics from India in 2004 and a combined experience of 6 years (3 years in India and 3 years in the US). Is it mandatory to have 5 years of experience outside of the US?\",\n", - "\"_answer\": \"Given your four-year degree and more than five years of post-degree experience, you should have a good chance of being approved for EB2.\"} \n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in Electronics from India in 2004 and 6 years of experience (3 in India and 3 in the US). Is it a requirement to have 5 years of experience outside of the US?\",\n", + "\"_answer\": \"You should have a shot at EB2 with your four-year bach. degree and more than five years of post bach experience.\"} \n", "\n", "\n", "\n", @@ -1929,16 +1778,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I use volunteer work to satisfy the experience requirement for EB2?\", \n", - "\"_answer\": \"In general, there is no requirement that paid experience is necessary for EB2; volunteer work could be taken into consideration.\"}\n", + "{\"_question\": \"Can volunteer work be counted as an experience for EB2? I am an OT practitioner in the US who graduated with a BSOT and had two years of volunteer work in an adult setting in my home country. Would that count as part of the five years experience? During the first six months, I was not yet licensed as an OT.\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that requires paid experience. Volunteer experience could be taken into consideration.\"}\n", "\n", "######\n", - "{\"_question\": \"Does volunteer work count towards the 5 years of experience for EB2?\", \n", - "\"_answer\": \"No specific rule requires paid experience for EB2; volunteer work may be considered.\"}\n", + "{\"_question\": \"Does volunteer work count as an experience for EB2? I am an OT practitioner in the US who graduated with a BSOT and had two years of volunteer work in an adult setting in my home country. Would that count as part of the five years experience? During the first six months, I was not yet licensed as an OT.\",\n", + "\"_answer\": \"Generally, for EB2, there is no rule that I am aware of that necessitates paid experience. Volunteer experience could be taken into account.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I use my volunteer OT work to meet the 5 year experience requirement for EB2?\", \n", - "\"_answer\": \"No specific regulation mandates that paid experience is necessary for EB2; volunteer work could be taken into account.\"} \n", + "{\"_question\": \"Is volunteer work considered an experience for EB2? I am an OT practitioner in the US who graduated with a BSOT and had two years of volunteer work in an adult setting in my home country. Would that count as part of the five years experience? During the first six months, I was not yet licensed as an OT.\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that demands paid experience. Volunteer experience could be taken into account.\"} \n", "\n", "\n", "\n", @@ -1947,12 +1796,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB2? I have a Bachelor's degree in Computer Science Engineering (4 years) and I am currently working as a Subject Matter Expert in the US on an L1B visa with 4 years of experience. I have also completed two Microsoft certifications and AICPCU certifications. Can I apply for a Green Card under the EB2 category?\",\n", - "\"_answer\": \"You must have 5 years of experience after your Bachelor's degree to be eligible. Certifications do not usually count towards this requirement.\"}\n", + "{\"_question\": \"Am I eligible for an EB2 green card? I have a Bachelor's degree in Computer Science Engineering, 4 years of work experience as a Subject Matter Expert in the US on an L1B visa, and 2 Microsoft certifications and AICPCU certifications.\",\n", + "\"_answer\": \"You will need 5 years of post-bachelor's experience. Certifications do not usually count towards eligibility.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Do I meet the requirements for an EB2 green card? I have a Bachelor's degree in Computer Science Engineering, 4 years of work experience as a Subject Matter Expert in the US on an L1B visa, and 2 Microsoft certifications and AICPCU certifications.\",\n", + "\"_answer\": \"You must have 5 years of post-bachelor's experience. Certifications are not typically considered.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for EB2? I have a Bachelor's degree in Computer Science Engineering (4 years) and I am currently employed as a Subject Matter Expert in the US on an L1B visa with 4 years of experience. I have also obtained two Microsoft certifications and AICPCU certifications. Can I apply for a Green Card under the EB2 category?\",\n", - "\"_answer\": \"You must have 5 years of experience following your Bachelor's degree to be eligible. Certifications are not usually taken into account.\"} \n", + "{\"_question\": \"Can I apply for an EB2 green card? I have a Bachelor's degree in Computer Science Engineering, 4 years of work experience as a Subject Matter Expert in the US on an L1B visa, and 2 Microsoft certifications and AICPCU certifications.\",\n", + "\"_answer\": \"You must have 5 years of post-bachelor's experience. Certifications do not usually factor in.\"} \n", "\n", "\n", "\n", @@ -1961,16 +1814,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"If one has an approved I-140, is it necessary to switch to a similar job to preserve the priority date?\", \n", - "\"_answer\": \"No, the job does not need to be similar. The green card process must be restarted, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"}\n", + "{\"_question\": \"If one has an approved I-140, is it necessary to switch to a similar job to preserve the priority date?\",\n", + "\"_answer\": \"No, the job does not need to be the same. The green card process must be restarted, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"}\n", "\n", "######\n", - "{\"_question\": \"If an individual has an approved I-140, is it a requirement to move to a comparable job to keep the priority date?\", \n", - "\"_answer\": \"No, the job does not have to be comparable. The green card application must be restarted, but the priority date can be moved to any job and classification (EB1, EB2, EB3).\"}\n", + "{\"_question\": \"If someone has an approved I-140, do they need to transition to a comparable job to keep the priority date?\",\n", + "\"_answer\": \"No, the job does not have to be the same. The green card application must be restarted, but the priority date can be shifted to any job and category (EB1, EB2, EB3).\"}\n", "\n", "######\n", - "{\"_question\": \"If someone has an approved I-140, do they need to switch to a similar job to maintain the priority date?\", \n", - "\"_answer\": \"No, the job does not have to be similar. The green card must be filed again, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"} \n", + "{\"_question\": \"If an individual has an approved I-140, is it necessary to move to a similar job to maintain the priority date?\",\n", + "\"_answer\": \"No, the job does not need to be the same. The green card filing must be restarted, but the priority date can be transferred to any job and category (EB1, EB2, EB3).\"} \n", "\n", "\n", "\n", @@ -1979,16 +1832,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2 if the job requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is the concept of 'cross chargeability' applicable to my Green Card application? If so, how can I take advantage of it?\",\n", - "\"_answer\": \"Yes, you can apply for EB2 if the job requires a Bachelor's degree with 5 years of post-Bachelor's experience. Yes, you can use cross chargeability. Consult with your lawyers to discuss the details.\"}\n", + "{\"_question\": \"Can I apply for EB2 if the job requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is the concept of 'cross chargeability' applicable to my green card application? If so, how can I take advantage of it?\",\n", + "\"_answer\": \"Yes, you can submit an EB2 application if the role requires a Bachelor's degree and 5 years of post-Bachelor's experience. Cross chargeability is applicable to your green card application, and you can benefit from it by discussing the details with your lawyers.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have a Bachelor's degree and 5 years of post-Bachelor's experience, am I eligible to file an EB2 application? Is the concept of 'cross chargeability' applicable to my Green Card application? How can I benefit from it?\",\n", - "\"_answer\": \"Yes, you can apply for EB2 if the job requires a Bachelor's degree with 5 years of post-Bachelor's experience. Yes, you can use cross chargeability. Talk to your lawyers to find out more about it.\"}\n", + "{\"_question\": \"Is it possible for me to apply for EB2 if the job requires a Bachelor's degree and 5 years of post-Bachelor's experience? Can I use cross chargeability for my green card application? How can I make use of it?\",\n", + "\"_answer\": \"Yes, you can submit an EB2 application if the role requires a Bachelor's degree and 5 years of post-Bachelor's experience. Cross chargeability is applicable to your green card application, and you can take advantage of it by consulting with your lawyers.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a MS degree from the US and 5 years of work experience. If I am moved to a role that requires a Bachelor's degree and 5 years of post-Bachelor's experience, can I apply for EB2? Is cross chargeability applicable to my Green Card application? How can I make use of it?\",\n", - "\"_answer\": \"Yes, you can apply for EB2 if the job requires a Bachelor's degree with 5 years of post-Bachelor's experience. Yes, you can use cross chargeability. Speak to your lawyers to learn more about it.\"} \n", + "{\"_question\": \"Am I eligible to file an EB2 application if the role requires a Bachelor's degree and 5 years of post-Bachelor's experience? Is cross chargeability applicable to my green card application? How can I benefit from it?\",\n", + "\"_answer\": \"Yes, you can apply for EB2 if the job requires a Bachelor's degree and 5 years of post-Bachelor's experience. Cross chargeability is applicable to your green card application, and you can take advantage of it by talking to your lawyers.\"} \n", "\n", "\n", "\n", @@ -1997,16 +1850,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I be eligible for an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT taken online in the US?\",\n", - "\"_answer\": \"In my opinion, if your job requires an advanced degree, you can apply for EB-2.\"}\n", + "{\"_question\": \"Can I be eligible for an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT online in the US?\",\n", + "\"_answer\": \"In my opinion, if your job necessitates an advanced degree, you can apply for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT taken online in the US?\",\n", - "\"_answer\": \"My view is that if your job necessitates an advanced degree, you can apply for EB-2.\"}\n", + "{\"_question\": \"Am I eligible for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT online in the US?\",\n", + "\"_answer\": \"In my opinion, if your occupation requires an advanced degree, you can apply for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT taken online in the US?\",\n", - "\"_answer\": \"From my perspective, if your job requires an advanced degree, you can apply for EB-2.\"} \n", + "{\"_question\": \"Can I apply for an EB2 visa if I have a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT online in the US?\",\n", + "\"_answer\": \"In my opinion, if your job necessitates an advanced degree, you can be eligible for EB-2.\"} \n", "\n", "\n", "\n", @@ -2019,12 +1872,12 @@ "\"_answer\": \"Yes, that is accurate. This is known as 'cross changeability'.\"}\n", "\n", "######\n", - "{\"_question\": \"I am an Indian national and my wife is a Russian citizen, born in Russia. We are applying for a green card and I read on some online forums that I can use her country's priority date (\"current\" as of today) for the green card. Is this true?\",\n", - "\"_answer\": \"Yes, that is true. This is referred to as 'cross changeability'.\"}\n", + "{\"_question\": \"I would like to thank you for providing guidance to hundreds of us with your valuable advice. I have a query regarding the interchangeability of EB2 priority dates. As an Indian citizen, can I use my wife's Russian priority date (\"current\" as of today) for the green card application?\",\n", + "\"_answer\": \"Yes, that is possible. This is referred to as 'cross changeability'.\"}\n", "\n", "######\n", - "{\"_question\": \"I am an Indian citizen and my wife is a Russian citizen, born in Russia. We are filing for a green card and I read on some online forums that I can use her country's priority date (\"current\" as of today) for the green card. Is this correct?\",\n", - "\"_answer\": \"Yes, that is correct. This is called 'cross changeability'.\"} \n", + "{\"_question\": \"I am grateful for your assistance to many of us with your helpful advice. I have a question about the interchangeability of EB2 priority dates. As an Indian citizen, can I use my wife's Russian priority date (\"current\" as of today) for the green card application?\",\n", + "\"_answer\": \"Yes, that is correct. This is known as 'cross changeability'.\"} \n", "\n", "\n", "\n", @@ -2033,16 +1886,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I be eligible for an EB2 if my employer hires me in a different position and advertises the new job requirements (master's) after I'm hired?\", \n", - "\"_answer\": \"No, you will not be eligible for an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"}\n", + "{\"_question\": \"Can I be eligible for an EB2 visa if I have a US-based master's degree and my employer is willing to help me?\",\n", + "\"_answer\": \"No, you will not be eligible for an EB2 visa unless the job requires a post graduate degree or bachelor's degree with five years of experience at a minimum.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am offered a state job that requires a bachelor's degree with one year of experience, but I have a US-based master's degree, can I request my employer to hire me in another position and advertise the new job requirements (master's) after I'm hired to be eligible for EB2?\", \n", - "\"_answer\": \"No, you will not qualify for an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"}\n", + "{\"_question\": \"If I am offered a state job that requires a bachelor's degree with one year of experience, but I have a US-based master's degree, can I be eligible for an EB2 visa?\",\n", + "\"_answer\": \"No, you will not qualify for an EB2 unless the job also legitimately requires a post graduate degree or bachelor's degree with five years of experience at a minimum.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am offered a state job that requires a bachelor's degree with one year of experience, but I have a US-based master's degree, can I ask my employer to hire me in another position and list the new job requirements (master's) after I'm hired to be eligible for EB2?\", \n", - "\"_answer\": \"No, you will not be able to get an EB2 unless the job also legitimately requires a post graduate degree or bach. with five years of experience at a minimum.\"} \n", + "{\"_question\": \"If I am offered a state job that requires a bachelor's degree with one year of experience, but I have a US-based master's degree, can my employer help me to be eligible for an EB2 visa?\",\n", + "\"_answer\": \"No, you will not be able to qualify for an EB2 unless the job also legitimately requires a post graduate degree or bachelor's degree with five years of experience at a minimum.\"} \n", "\n", "\n", "\n", @@ -2051,16 +1904,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2 with my online master's degree? I have a 5 year bachelor's degree from a traditional school in the US and a 2 year MBA from an accredited university in the US through distance education. My employer is questioning if my master's degree is recognized.\",\n", - "\"_answer\": \"The most important factor is to determine if the degree is accredited. You should contact the school for more information.\"}\n", + "{\"_question\": \"Do I qualify for EB2 with an online masters degree?\",\n", + "\"_answer\": \"The most important factor is to determine if the degree is accredited. You should contact the school to find out.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2 with my online master's degree? I have a 5 year bachelor's degree from a US school and a 2 year MBA from an accredited university in the US through distance education. My employer is unsure if my master's degree is valid.\",\n", - "\"_answer\": \"The key is to check if the degree is accredited. You should reach out to the school for more information.\"}\n", + "{\"_question\": \"Can I get an EB2 visa with a distance learning masters degree?\",\n", + "\"_answer\": \"The key is to check if the degree is accredited. You should talk to the school to find out.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I qualify for EB2 with my online master's degree? I have a 5 year bachelor's degree from a US school and a 2 year MBA from an accredited university in the US through distance education. My employer is questioning if my master's degree is accepted.\",\n", - "\"_answer\": \"The most important step is to verify if the degree is accredited. You should contact the school for more details.\"} \n", + "{\"_question\": \"Am I eligible for EB2 with a masters degree obtained online?\",\n", + "\"_answer\": \"The main thing to consider is if the degree is accredited. You should consult the school to find out.\"} \n", "\n", "\n", "\n", @@ -2069,16 +1922,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"To be eligible for EB2 under advanced degrees, is it enough to have a Master's degree from a US university or must the job description specify it?\",\n", - "\"_answer\": \"The job must also necessitate EB2 level qualifications.\"}\n", + "{\"_question\": \"To be eligible for EB2 with advanced degrees, is it enough to have a Master's from a US university or must the job description specify it?\",\n", + "\"_answer\": \"The job must also genuinely require EB2 qualifications.\"}\n", "\n", "######\n", - "{\"_question\": \"To qualify for EB2 under advanced degrees, is a MS degree from a US university enough or must the job requirement state so?\",\n", - "\"_answer\": \"The job must also necessitate EB2 level qualifications.\"}\n", + "{\"_question\": \"To qualify for EB2 with advanced degrees, is a Master's from a US university sufficient or must the job require it?\",\n", + "\"_answer\": \"The job must also genuinely necessitate EB2 qualifications.\"}\n", "\n", "######\n", - "{\"_question\": \"To be eligible for EB2 under advanced degrees, is a MS degree from a US university sufficient or must the job requirement indicate it?\",\n", - "\"_answer\": \"The job must also demand EB2 level qualifications.\"} \n", + "{\"_question\": \"To be eligible for EB2 with advanced degrees, is a Master's from a US university enough or must the job listing state so?\",\n", + "\"_answer\": \"The job must also genuinely demand EB2 qualifications.\"} \n", "\n", "\n", "\n", @@ -2087,16 +1940,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is there any issue with my educational background for the I-140 considering my PERM is approved under EB2? I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech and 8 years of experience at the time of PERM, and all my education is from India.\",\n", - "\"_answer\": \"Generally, if the B.Tech is supposed to be a 4-year degree and you got it in three due to your diploma, you should be okay.\"}\n", + "{\"_question\": \"Is there any issue with my educational background for the I-140, given that my PERM is approved under EB2? My qualifications include a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM, and all my education is from India.\",\n", + "\"_answer\": \"There are some variables to consider. Generally, if the B.Tech is supposed to be a 4-year degree and you completed it in three due to your diploma, you should be alright.\"}\n", "\n", "######\n", - "{\"_question\": \"I have been approved for PERM under EB2 and my education is from India. It consists of a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech and 8 years of experience at the time of PERM. Could there be any issues with my educational background for the I-140?\",\n", - "\"_answer\": \"Generally, if the B.Tech is intended to be a 4-year degree and you obtained it in three due to your diploma, you should be in the clear.\"}\n", + "{\"_question\": \"Given that my PERM is approved under EB2 and my educational background is from India (3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM), do you think there will be any problems with my I-140?\",\n", + "\"_answer\": \"There are some factors to consider. Generally, if the B.Tech is supposed to be a 4-year degree and you achieved it in three because of your diploma, you should be okay.\"}\n", "\n", "######\n", - "{\"_question\": \"My PERM is approved under EB2 and my education is from India. It includes a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech and 8 years of experience at the time of PERM. Is there any problem with my educational background for the I-140?\",\n", - "\"_answer\": \"Generally, if the B.Tech is supposed to be a 4-year degree and you achieved it in three because of your diploma, you should be fine.\"} \n", + "{\"_question\": \"My PERM is approved under EB2 and my educational background is from India (3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience at the time of PERM). Is there any issue with my educational background for the I-140?\",\n", + "\"_answer\": \"There are some variables to take into account. Generally, if the B.Tech is supposed to be a 4-year degree and you attained it in three due to your diploma, you should be fine.\"} \n", "\n", "\n", "\n", @@ -2105,16 +1958,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the typical wait time for a Green Card through the EB2 category? I have a Master's in International Business and 7 years of experience in the USA and EU. I have a job offer from the US and I would like to file the petition.\",\n", - "\"_answer\": \"The biggest hold up for most people is the priority date movement. Have a look at the Visa Bulletin and the Permanent Processing Times. That should give you a good indication.\"}\n", + "{\"_question\": \"What is the typical duration for getting a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to submit the petition.\",\n", + "\"_answer\": \"The biggest hold up for most people is the movement of the priority date. Have a look at the Visa Bulletin and the Permanent Processing Times to get an idea of the timeline.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the average time it takes to get a Green Card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I want to submit the petition.\",\n", - "\"_answer\": \"The main delay for most people is the priority date movement. Check out the Visa Bulletin and the Permanent Processing Times. That should give you a good idea.\"}\n", + "{\"_question\": \"How long does it usually take to get a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to file the petition.\",\n", + "\"_answer\": \"The biggest delay for most people is the progress of the priority date. Check out the Visa Bulletin and the Permanent Processing Times to get an understanding of the timeline.\"}\n", "\n", "######\n", - "{\"_question\": \"How long does it usually take to obtain a Green Card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I am looking to file the petition.\",\n", - "\"_answer\": \"The biggest impediment for most people is the priority date movement. Have a look at the Visa Bulletin and the Permanent Processing Times. That should give you a good idea of what to expect.\"} \n", + "{\"_question\": \"What is the average time to obtain a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I would like to submit the petition.\",\n", + "\"_answer\": \"The biggest obstacle for most people is the movement of the priority date. Have a look at the Visa Bulletin and the Permanent Processing Times to get an idea of the timeframe.\"} \n", "\n", "\n", "\n", @@ -2123,16 +1976,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the EB-2 criteria? I have a Bachelor's degree in Computing from the UK, which was a 3 year course, and a Master's degree from the UK in Computing, which was a 1 year course. Will this be enough to qualify for the EB-2 category?\",\n", - "\"_answer\": \"It is impossible to predict. It all depends on the type of degrees and the language used in the Form I-9089.\"}\n", + "{\"_question\": \"Do my qualifications meet the EB-2 criteria?\", \n", + "\"_answer\": \"It is not possible to predict if your qualifications meet the EB-2 criteria. It depends on the type of degrees and the language used in the formeta9089.\"}\n", "\n", "######\n", - "{\"_question\": \"Will I be eligible for EB-2? I have a Bachelor's degree in Computing from the UK, which was a 3 year course, and a Master's degree from the UK in Computing, which was a 1 year course. Is this enough to qualify for the EB-2 category?\",\n", - "\"_answer\": \"It is impossible to tell. It all depends on the type of degrees and the language used in the Form I-9089.\"}\n", + "{\"_question\": \"Will my education be accepted for the EB-2 category?\", \n", + "\"_answer\": \"It is not possible to anticipate if your education will be accepted for the EB-2 category. It depends on the type of degrees and the language used in the formeta9089.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB-2? I have a Bachelor's degree in Computing from the UK, which was a 3 year course, and a Master's degree from the UK in Computing, which was a 1 year course. Is this enough to meet the EB-2 criteria?\",\n", - "\"_answer\": \"It is not possible to determine. It all depends on the type of degrees and the language used in the Form I-9089.\"} \n", + "{\"_question\": \"Can I be sure that my degrees will qualify for the EB-2?\", \n", + "\"_answer\": \"It is impossible to guarantee that your degrees will qualify for the EB-2. It all depends on the type of degrees and the language used in the formeta9089.\"} \n", "\n", "\n", "\n", @@ -2141,16 +1994,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I use cross chargeability if I was born in India, have an approved EB2 I-140, but cannot apply for I-485 due to my Priority Date being November 2008? Is it possible if my fiancée was born in a country other than India or China, even if she is not in the US or on another visa category than H1B? Would marriage enable us to submit I-485 applications immediately?\",\n", - "\"_answer\": \"Cross chargeability is an option if your partner was born in a different country than you. She can only file her I-485 if she is in the US.\"}\n", + "{\"_question\": \"Can I use cross chargeability if I was born in India and have an approved EB2 I-140, but my priority date is too old to file for I-485? If I marry someone from a different country, will that enable us to file for I-485 right away?\",\n", + "\"_answer\": \"Cross chargeability is an option if your spouse was born in a country other than India or China. Your spouse can only file for I-485 if they are currently in the US.\"}\n", "\n", "######\n", - "{\"_question\": \"I was born in India, have an approved EB2 I-140, but cannot apply for I-485 due to my Priority Date being November 2008. Is cross chargeability applicable in this case if I marry someone who was born in a country other than India or China? Does it matter if she is not in the US or on another visa category than H1B? Will tying the knot allow us to file for I-485 right away?\",\n", - "\"_answer\": \"Cross chargeability is a possibility if your spouse was born in a different country than you. She can only submit her I-485 if she is in America.\"}\n", + "{\"_question\": \"I was born in India and have an approved EB2 I-140, but my priority date is too old to file for I-485. Is cross chargeability applicable in this case? If I marry someone from a different country, will that allow us to submit I-485 applications immediately?\",\n", + "\"_answer\": \"Cross chargeability is a possibility if your partner was born in a country other than India or China. Your partner can only file for I-485 if they are in the US at the moment.\"}\n", "\n", "######\n", - "{\"_question\": \"I am an H1B holder born in India and have an approved EB2 I-140, but cannot apply for I-485 since my Priority Date is November 2008. Is cross chargeability an option if I marry someone who was born in a country other than India or China? Does it matter if my partner is not in the US or on another visa category than H1B? Would marriage enable us to apply for I-485 immediately?\",\n", - "\"_answer\": \"Cross chargeability is feasible if your partner was born in a different country than you. She can only file her I-485 if she is in the US.\"} \n", + "{\"_question\": \"I am an H1B holder born in India with an approved EB2 I-140, but my priority date is too old to file for I-485. Is cross chargeability an option if I marry someone from a different country? Will that enable us to apply for I-485 right away?\",\n", + "\"_answer\": \"Cross chargeability is a viable option if your spouse was born in a country other than India or China. Your spouse can only file for I-485 if they are currently in the US.\"} \n", "\n", "\n", "\n", @@ -2159,16 +2012,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I be refused by the US Embassy despite my EB2 being approved by USCIS?\",\n", + "{\"_question\": \"Can I be refused by the US Embassy despite my EB2 approval from USCIS?\", \n", "\"_answer\": \"It is not probable, but it is a possibility.\"}\n", "\n", "######\n", - "{\"_question\": \"Is there a chance of being denied by the US Embassy after my EB2 was accepted by USCIS?\",\n", + "{\"_question\": \"What are the chances of the US Embassy denying me despite my EB2 approval from USCIS?\", \n", "\"_answer\": \"It is not likely, but it could happen.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the probability of being rejected by the US Embassy even though my EB2 was approved by USCIS?\",\n", - "\"_answer\": \"It is unlikely, but still possible.\"} \n", + "{\"_question\": \"Can I still be denied by the US Embassy even after my EB2 approval from USCIS?\", \n", + "\"_answer\": \"It is not probable, but it is a possibility.\"} \n", "\n", "\n", "\n", @@ -2177,16 +2030,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the eligibility criteria for EB-2 US Masters Degree for a technology professional with nearly 9 years of work experience?\",\n", - "\"_answer\": \"If you have earned a master's degree and plan to apply for permanent residency next year, you should be able to get EB-2.\"}\n", + "{\"_question\": \"Can I apply for EB2 Permanent Classification? I am a technology professional with almost 9 years of work experience. I am currently employed as a software consultant in a trading company in the US and will be graduating from a part-time MBA program (concentration in finance) this December. If I plan to apply for permanent residency next year, will I be eligible to apply under EB-2 US Masters Degree, considering my MBA in finance will assist in understanding complex financial principles and writing algorithms that support daily trading? In this case, will my prior experience be taken into account?\",\n", + "\"_answer\": \"If you have earned your master's degree by the time you submit your permanent residency application, you should be able to qualify for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB-2 US Masters Degree with my MBA in finance and 9 years of work experience?\",\n", - "\"_answer\": \"Yes, as long as you have earned the degree by the time you file for permanent residency, you should be eligible for EB-2.\"}\n", - "\n", - "######\n", - "{\"_question\": \"What is the requirement for EB-2 US Masters Degree for a technology professional with nearly 9 years of work experience?\",\n", - "\"_answer\": \"If you have obtained a master's degree and plan to apply for permanent residency next year, you should be able to get EB-2.\"} \n", + "{\"_question\": \"What about EB2 Permanent Classification? I have been a technology professional for almost 9 years and am currently working as a software consultant in a trading firm in the US. I am due to graduate from a part-time MBA program (finance concentration) this December. If I apply for permanent residency next year, will I be eligible to apply under EB-2 US Masters Degree, given that my MBA in finance will help me comprehend complex financial principles and write algorithms that support daily trading? Will my past experience be considered in this case?\",\n", + "\"_answer\": \"If you have obtained your master's degree by the time you file your permanent residency application, you should be able to get EB-2.\"} \n", "\n", "\n", "\n", @@ -2195,16 +2044,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can company B refile an I-140 using the labor certificate from company A?\",\n", - "\"_answer\": \"It is possible to start a new PERM under EB2 and transfer the priority date from company A.\"}\n", + "{\"_question\": \"Can company B use company A's labor certificate and refile the I-140 again?\",\n", + "\"_answer\": \"In my opinion, this is a great chance to initiate a new PERM under EB2 and transfer the priority date. Consult with your attorneys.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to use the labor certificate from company A to refile the I-140 with company B?\",\n", - "\"_answer\": \"Yes, it is possible to initiate a new PERM under EB2 and transfer the priority date from company A.\"}\n", + "{\"_question\": \"Is it possible for company B to use company A's labor certificate and resubmit the I-140?\",\n", + "\"_answer\": \"From my perspective, this is a great opportunity to initiate a fresh PERM under EB2 and transfer the priority date. Speak with your legal advisors.\"}\n", "\n", "######\n", - "{\"_question\": \"Can company B use the labor certificate from company A to refile the I-140?\",\n", - "\"_answer\": \"Yes, it is a viable option to start a new PERM under EB2 and transfer the priority date from company A.\"} \n", + "{\"_question\": \"Can company B utilize company A's labor certificate and file the I-140 again?\",\n", + "\"_answer\": \"In my view, this is a great opportunity to start a new PERM under EB2 and transfer the priority date. Consult with your lawyers.\"} \n", "\n", "\n", "\n", @@ -2213,16 +2062,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"I have a 10+3.5 years diploma and 3 years bs. I studied computer engineering for 3.5 years and information systems (bits) for 3 years. My labor is in process under the eb2 catageory. I am concerned that my i-140 will be denied due to my education. Mr. Khanna, do you have any approval cases with a diploma and bs?\",\n", - "\"_answer\": \"I understand your apprehension. These types of cases are hard to get approved. I cannot comment on your specific case since I do not have all the details. Speak to your lawyer about your worries and see if you can get a written response.\"}\n", - "\n", - "######\n", - "{\"_question\": \"I have a 10+3.5 years diploma and 3 years bs. I did 3.5 years in computer engineering and 3 years in information systems (bits). My labor is in process under the eb2 catageory. I am worried that my i-140 will be denied because of my education. Mr. Khanna, do you have any approval cases with a diploma and bs?\",\n", - "\"_answer\": \"I can understand your fear. These kinds of cases are difficult to get approved. I cannot comment on your particular situation since I do not have all the facts. Talk to your lawyer about your worries and if possible, get a written answer.\"}\n", + "{\"_question\": \"I have a 10+3.5 years diploma and 3 years of a bs. I studied computer engineering for 3.5 years and information systems (bits) for 3 years. My labor is in process under the eb2 category. I'm worried that my i-140 will be denied due to my education. Mr. Khanna, do you have any cases that have been approved with a diploma and a bs?\",\n", + "\"_answer\": \"I believe your concern is valid. These types of cases are hard to get approved. I'm not able to give you a definite answer since I'm not aware of the specifics. Speak to your lawyers about your worries and if possible, get a written response.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 10+3.5 years diploma and 3 years bs. I studied computer engineering for 3.5 years and information systems (bits) for 3 years. My labor is in process under the eb2 catageory. I am afraid that my i-140 will be denied due to my education. Mr. Khanna, do you have any approval cases with a diploma and bs?\",\n", - "\"_answer\": \"I sympathize with your worry. These types of cases are hard to get approved. I cannot comment on your specific case since I do not have all the details. Consult your lawyer about your concerns and see if you can get a written response.\"} \n", + "{\"_question\": \"I have a 10+3.5 years diploma and 3 years of a bs. I studied computer engineering for 3.5 years and information systems (bits) for 3 years. My labor is in process under the eb2 category. I'm anxious that my i-140 will be rejected due to my education. Mr. Khanna, do you have any cases that have been approved with a diploma and a bs?\",\n", + "\"_answer\": \"I think your fear is justified. These types of cases are hard to get approved. I'm not able to give you a definite answer since I'm not aware of the details. Converse with your lawyers about your worries and if possible, get a written reply.\"} \n", "\n", "\n", "\n", @@ -2231,16 +2076,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the odds of my EB1 extraordinary ability application being approved on the second filing?\",\n", - "\"_answer\": \"It is impossible to determine without knowing the specifics of your case.\"}\n", + "{\"_question\": \"What are the odds of my EB1 extraordinary ability petition being approved on the second filing?\",\n", + "\"_answer\": \"It is impossible to tell without knowing the specifics of your case.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of my EB1 extraordinary ability application being accepted on the second attempt?\",\n", - "\"_answer\": \"It is not possible to give an accurate prediction without having access to the details of your case.\"}\n", + "{\"_question\": \"What is the likelihood of my EB1 extraordinary ability petition being accepted if I refiled it?\",\n", + "\"_answer\": \"It is not possible to determine without more information about your case.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the probability of my EB1 extraordinary ability application being approved on the second submission?\",\n", - "\"_answer\": \"It is impossible to provide an accurate assessment without having the full information of your case.\"} \n", + "{\"_question\": \"What are the chances of my EB1 extraordinary ability petition being granted if I resubmitted it?\",\n", + "\"_answer\": \"It is impossible to say without more details about your situation.\"} \n", "\n", "\n", "\n", @@ -2249,16 +2094,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for an EB2 visa? I have a BSN, completed a medical degree equivalent to a master's degree, and have been a faculty member/administrator at a top nursing school in Manila for five years. I am also a PhD student in biology at a top university in Manila. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB2 is available for individuals who have postgraduate degrees (by US standards) or a four-year bachelor's degree with five years of progressively responsible experience. You should consult with your lawyer about applying for an EB2 and transferring your priority date.\"}\n", + "{\"_question\": \"Can I apply for an EB2 visa given my qualifications? I have a Bachelor's degree, a Master's equivalent in academia, and 5 years of experience in a top nursing school. I am also a PhD student in a top university. Is EB2 a family-based petition? My parents live in New Jersey.\",\n", + "\"_answer\": \"EB stands for Employment-Based. EB-2 is available for people with postgraduate degrees (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You should consult with your lawyers about applying for an EB-2 and transferring your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB2 visa? I have a Bachelor of Science in Nursing, completed a medical degree equivalent to a Master's degree, and have been a faculty member/administrator at a top nursing school in Manila for five years. I am also a PhD student in biology at a top university in Manila. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB2 is open to those who possess postgraduate degrees (by US standards) or a four-year bachelor's degree with five years of progressively responsible experience. You should speak to your attorney about applying for an EB2 and transferring your priority date.\"}\n", + "{\"_question\": \"Am I eligible for an EB2 visa given my qualifications? I have a Bachelor's degree, a Master's equivalent in academia, and 5 years of experience in a top nursing school. I am also a PhD student in a top university. Is EB2 a family-based petition? My parents live in New Jersey.\",\n", + "\"_answer\": \"EB stands for Employment-Based. EB-2 is available for individuals with postgraduate degrees (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You should speak with your lawyers about applying for an EB-2 and transferring your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for an EB2 visa? I have a BSN, completed a medical degree equivalent to a master's degree, and have been a faculty member/administrator at a top nursing school in Manila for five years. I am also a PhD student in biology at a top university in Manila. Is EB2 a family-based petition? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB2 is available for people with post graduate degrees (by US standards) or a 4 years bach. degree with five years of progressively responsible experience. You should consult with your lawyer about applying for an EB2 and transferring your priority date.\"} \n", + "{\"_question\": \"Do I qualify for an EB2 visa given my qualifications? I have a Bachelor's degree, a Master's equivalent in academia, and 5 years of experience in a top nursing school. I am also a PhD student in a top university. Is EB2 a family-based petition? My parents live in New Jersey.\",\n", + "\"_answer\": \"EB stands for Employment-Based. EB-2 is available for people with postgraduate degrees (by US standards) or a 4-year Bachelor's degree with five years of progressively responsible experience. You need to consult with your lawyers about applying for an EB-2 and transferring your priority date.\"} \n", "\n", "\n", "\n", @@ -2267,16 +2112,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the legal focus when it comes to immigration law regarding a degree?\",\n", - "\"_answer\": \"The focus is on when the degree was finished, not when the diploma was given.\"}\n", + "{\"_question\": \"Do I need to wait for my diploma to apply for EB2?\",\n", + "\"_answer\": \"Generally, immigration law looks at when the degree was finished, not when the diploma was given. Consult your attorneys.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I need to wait until I get the diploma to apply for EB2?\",\n", - "\"_answer\": \"No, the law focuses on when the degree was completed, not when the diploma was conferred.\"}\n", + "{\"_question\": \"Can I use my official transcript to apply for EB2 or do I have to wait for my diploma?\",\n", + "\"_answer\": \"Generally, immigration regulations consider when the degree was completed, not when the diploma was presented. Speak to your lawyers.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I use my official transcript to apply for EB2?\",\n", - "\"_answer\": \"Yes, as long as you have completed all the requirements of the master degree, you can use the transcript to apply for EB2.\"} \n", + "{\"_question\": \"Do I need to wait for my diploma to apply for EB2 or can I use my official transcript?\",\n", + "\"_answer\": \"Generally, immigration law focuses on when the degree was finished, not when the diploma was conferred. Consult your attorneys.\"} \n", "\n", "\n", "\n", @@ -2285,16 +2130,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the risk of being denied due to educational qualifications when filing for EB-2?\", \n", - "\"_answer\": \"Your educational background is usually examined closely when submitting an I-140. However, USCIS has the right to question any of these matters at any stage, and I have seen approved I-140s being reopened and denied at the I-485 stage.\"}\n", + "{\"_question\": \"What is the risk of having my educational qualifications denied when filing under EB-2?\",\n", + "\"_answer\": \"Your educational background may be scrutinized closely during the I-140 stage, but USCIS may raise questions about it at any point. I have seen approved I-140s reopened and denied at the I-485 stage.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of being refused due to educational qualifications when applying for EB-2?\", \n", - "\"_answer\": \"Your educational credentials are usually scrutinized thoroughly when submitting an I-140. Nevertheless, USCIS has the authority to query any of these matters at any stage, and I have seen approved I-140s being reopened and denied at the I-485 stage.\"}\n", + "{\"_question\": \"What is the likelihood of my educational qualifications being rejected when I apply for EB-2?\",\n", + "\"_answer\": \"Your educational background may be carefully examined during the I-140 phase, but USCIS can raise issues about it at any time. I have observed I-140s that were approved and then denied at the I-485 stage.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the chance of being rejected due to educational qualifications when filing for EB-2?\", \n", - "\"_answer\": \"Your educational qualifications are usually examined in depth when submitting an I-140. However, USCIS can question any of these matters at any stage, and I have seen approved I-140s being reopened and denied at the I-485 stage.\"} \n", + "{\"_question\": \"What is the risk of my educational credentials being denied when I file for EB-2?\",\n", + "\"_answer\": \"Your educational background may be thoroughly evaluated during the I-140 stage, but USCIS may bring up concerns about it at any point. I have seen I-140s that were approved and then denied at the I-485 stage.\"} \n", "\n", "\n", "\n", @@ -2303,16 +2148,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Science in Physics from India (3 years) and a Master of Computer Science (3 years). Can I apply for a green card through an IT-based company?\",\n", - "\"_answer\": \"It is possible, but make sure your lawyers prepare the PERM application carefully so that if EB2 is denied, EB3 will still be accepted.\"}\n", + "{\"_question\": \"Do I qualify for EB2? I have a B.Sc in Physics from India and a MCA in IT from India. Can I apply for a green card through an IT-based company?\",\n", + "\"_answer\": \"It is possible, however, your lawyers should be sure to draft the PERM application carefully so that if EB2 is denied, EB3 should still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2? I have a Bachelor's degree in Science (Physics) from India (3 years) and a Master's in Computer Science (3 years). Is it possible to apply for a green card through an IT-based company?\",\n", - "\"_answer\": \"It is a possibility, but ensure your attorneys craft the PERM application carefully so that if EB2 is denied, EB3 will still be approved.\"}\n", + "{\"_question\": \"Am I eligible for EB2? I have a Bachelor's in Science from India with a focus in Physics, and a Master's in Computer Science from India. Can I apply for a green card through an IT-based company?\",\n", + "\"_answer\": \"It is possible, however, your legal team should be sure to craft the PERM application carefully so that if EB2 is denied, EB3 should still be accepted.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get an EB2? I have a B.Sc. in Physics from India (3 years) and an MCA in IT (3 years). Is it feasible to file for a green card through an IT-based company?\",\n", - "\"_answer\": \"It is doable, but make sure your lawyers create the PERM application cautiously so that if EB2 is refused, EB3 will still be accepted.\"} \n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Sc in Physics from India and a MCA in IT from India. Can I file for a green card through an IT-based company?\",\n", + "\"_answer\": \"It is possible, however, your lawyers should be sure to compose the PERM application carefully so that if EB2 is rejected, EB3 should still be approved.\"} \n", "\n", "\n", "\n", @@ -2321,16 +2166,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB2 green card if I have a B.Sc in Physics from India and an MCA in IT from India?\",\n", - "\"_answer\": \"It is possible, but make sure your attorneys prepare the PERM application carefully so that if EB2 is denied, EB3 is still approved.\"}\n", + "{\"_question\": \"Do I qualify for EB2? I have a B.Sc in Physics from India and a Masters in Computer Science from India. Can I apply for a green card in the IT field under EB2?\",\n", + "\"_answer\": \"Yes, it is possible, but make sure your lawyers prepare the PERM application carefully so that if EB2 is denied, EB3 will still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB2 green card if I have a B.Sc in Physics from India and an MCA in IT from India?\",\n", - "\"_answer\": \"It is a possibility, but your lawyers should craft the PERM application cautiously so that if EB2 is rejected, EB3 is still accepted.\"}\n", + "{\"_question\": \"Am I eligible for EB2? I have a Bachelor of Science in Physics from India and a Masters in Computer Science from India. Can I apply for a green card in the IT sector under EB2?\",\n", + "\"_answer\": \"Yes, it is possible, but ensure your lawyers craft the PERM application carefully so that if EB2 is denied, EB3 can still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for an EB2 green card if I have a B.Sc in Physics from India and an MCA in IT from India?\",\n", - "\"_answer\": \"It is feasible, but have your attorneys construct the PERM application prudently so that if EB2 is declined, EB3 is still approved.\"} \n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Sc in Physics from India and a Masters in Computer Science from India. Can I apply for a green card in the IT industry under EB2?\",\n", + "\"_answer\": \"Yes, it is feasible, but make sure your lawyers design the PERM application carefully so that if EB2 is rejected, EB3 will still be accepted.\"} \n", "\n", "\n", "\n", @@ -2339,16 +2184,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Does my wife qualify for EB2 processing with her post-professional degree in occupational therapy?\",\n", - "\"_answer\": \"OTs do not have a special category like physical therapists, but EB-2 may be possible. It is best to consult with her lawyers.\"}\n", + "{\"_question\": \"Does my wife qualify for EB2 processing with her post professional degree in occupational therapy?\",\n", + "\"_answer\": \"OTs do not have a special category like physical therapists, but it is possible to file for EB2. Consult with her lawyers for more information.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of my wife's post-professional degree in occupational therapy qualifying for EB2 processing?\",\n", - "\"_answer\": \"OTs do not have a special category like physical therapists, but EB-2 may still be a possibility. It is best to speak with her lawyers for more information.\"}\n", + "{\"_question\": \"What is the process for my wife to get EB2 with her OT degree?\",\n", + "\"_answer\": \"OTs do not have a special category like physical therapists, but EB2 may be an option. She should speak to her lawyers to find out more.\"}\n", "\n", "######\n", - "{\"_question\": \"Does my wife's post-professional degree in occupational therapy provide any special consideration for EB2 processing?\",\n", - "\"_answer\": \"No, OTs do not have a special category like physical therapists. However, EB-2 may still be an option. It is best to consult with her lawyers for more information.\"} \n", + "{\"_question\": \"Can my wife use her OT degree to get EB2?\",\n", + "\"_answer\": \"OTs do not have a special category like physical therapists, but it is possible to apply for EB2. She should consult with her lawyers for more information.\"} \n", "\n", "\n", "\n", @@ -2357,16 +2202,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB2 green card with 3 years of IT experience and a master's degree?\",\n", - "\"_answer\": \"Yes, you can apply for an EB2 green card if you have 3 years of IT experience and a master's degree.\"}\n", + "{\"_question\": \"Do I qualify for an EB-2 green card with 3 years of IT experience and a master's degree?\",\n", + "\"_answer\": \"Yes, you can apply for an EB-2 green card once you have completed your master's degree and have a job that requires such a degree or a bachelor's degree plus five years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB2 green card if I have 3 years of IT experience and a master's degree?\",\n", - "\"_answer\": \"Yes, you meet the requirements to submit an EB2 green card application with 3 years of IT experience and a master's degree.\"}\n", + "{\"_question\": \"Can I apply for an EB-2 green card with 3 years of IT experience and a master's degree?\",\n", + "\"_answer\": \"Yes, you are eligible to apply for an EB-2 green card once you have finished your master's degree and have a job that requires such a degree or a bachelor's degree plus five years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Will I be eligible for an EB2 green card if I have 3 years of IT experience and a master's degree?\",\n", - "\"_answer\": \"Yes, you are qualified to apply for an EB2 green card with 3 years of IT experience and a master's degree.\"} \n", + "{\"_question\": \"If I have 3 years of IT experience and a master's degree, can I get an EB-2 green card?\",\n", + "\"_answer\": \"Yes, you can submit an application for an EB-2 green card once you have earned your master's degree and have a job that requires such a degree or a bachelor's degree plus five years of experience.\"} \n", "\n", "\n", "\n" @@ -2374,15 +2219,14 @@ } ], "source": [ - "client = OpenAI()\n", "for id, batch_inputs_string in enumerate(qaa_list_encoded):\n", " print(id, \"\\n\") # \"\\n\\n\\n\", \"input:\\n\", batch_inputs_string, \"\\n\"\n", - " completion_batch = client.completions.create(\n", - " prompt=batch_inputs_string,\n", + " completion_batch = openai.Completion.create(\n", + " prompt=batch_inputs_string, \n", " model=\"text-davinci-003\",\n", " temperature = 0.2,\n", " max_tokens = 1000 # The maximum number of tokens to generate in the completion\n", - " ).model_dump()\n", + " )\n", " results_string = completion_batch['choices'][0]['text']\n", " print(results_string, \"\\n\\n\\n\")\n", " qaa_augmented_raw.append(results_string)" @@ -2398,7 +2242,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 124, "id": "6085d004-14b5-48b2-b343-4b0f17112137", "metadata": {}, "outputs": [ @@ -2411,16 +2255,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I begin the green card process if my H-1B is picked in the lottery and I have a master's degree in engineering management?\",\n", - "\"_answer\": \"Yes, your employer can initiate the green card process even before you start working. You can check the salary requirements for EB-2 advanced degree holders by county and profession by visiting this website - https://www.flcdatacenter.com/\"}\n", + "{\"_question\": \"Do I need to wait before beginning the green card process if my employer files an H-1B and the lottery is picked?\",\n", + "\"_answer\": \"No, the employer can initiate the green card process prior to your joining. You can review the salary figures by county and profession at this link -https://www.flcdatacenter.com/\"}\n", "\n", "######\n", - "{\"_question\": \"If I have a master's degree in engineering management and my employer files my H-1B, can I start the green card process if it is selected in the lottery?\",\n", - "\"_answer\": \"Yes, the green card process can be initiated by the employer before you join. You can view the salary cap for EB-2 advanced degree holders by county and profession by using this link - https://www.flcdatacenter.com/\"}\n", + "{\"_question\": \"Can I start the green card process if my employer has filed an H-1B and it has been selected in the lottery?\",\n", + "\"_answer\": \"Yes, the employer can begin the green card process even before you join. Check out this link -https://www.flcdatacenter.com/ to view the salary figures by county and profession.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have a master's degree in engineering management and my employer submits my H-1B, can I initiate the green card process if it is chosen in the lottery?\",\n", - "\"_answer\": \"Yes, the employer can begin the green card process even before you join. You can see the salary figures for EB-2 advanced degree holders by county and profession by consulting this website - https://www.flcdatacenter.com/\"} \n", + "{\"_question\": \"If my employer files an H-1B and it is selected in the lottery, when can I start the green card process?\",\n", + "\"_answer\": \"The employer can initiate the green card process prior to your joining. You can examine the salary figures by county and profession at this link -https://www.flcdatacenter.com/\"} \n", "\n", "\n", "\n", @@ -2429,16 +2273,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the eligibility and process for upgrading from EB-3 to EB-2 status for an I-485 application?\",\n", - "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 status if the PERM was filed as an EB-2. Downgrading to EB-3 is also possible if the PERM was initially filed as an EB-2. For more information, please refer to the detailed FAQ.\"}\n", + "{\"_question\": \"What is the process for upgrading from EB-3 to EB-2 for a pending I-485 application?\",\n", + "\"_answer\": \"It is possible to upgrade from EB-3 to EB-2 as long as the PERM was initially filed as an EB-2. If the PERM was originally filed as an EB-3, it is not possible to upgrade. If the PERM was filed as an EB-2, you can downgrade the I-140 to EB-3 and then upgrade to EB-2 if you have an EB-2 approval. You can then file a second case as EB-3 with the same PERM. For more information, please refer to the FAQs.\"}\n", "\n", "######\n", - "{\"_question\": \"Can you explain the process for changing from EB-3 to EB-2 for pending I-485s?\",\n", - "\"_answer\": \"If the PERM was originally filed as an EB-2, it is possible to upgrade or downgrade the I-140. If the PERM was filed as an EB-3, then upgrading to EB-2 is not an option. Further details can be found in the FAQs.\"}\n", + "{\"_question\": \"What is involved in the EB-3 to EB-2 porting process for someone with a pending I-485?\",\n", + "\"_answer\": \"If the PERM was submitted as an EB-2, you can downgrade the I-140 to EB-3 and then upgrade to EB-2 if you have an EB-2 approval. It is also possible to file a second case as EB-3 with the same PERM. However, if the PERM was initially filed as an EB-3, you will not be able to upgrade to EB-2. For more details, please refer to the FAQs.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the procedure for switching from EB-3 to EB-2 for an I-485 that is in progress?\",\n", - "\"_answer\": \"It is possible to move up or down from EB-2 to EB-3, provided the PERM was filed as an EB-2. If the PERM was filed as an EB-3, then upgrading to EB-2 is not possible. Additional information can be found in the FAQs.\"} \n", + "{\"_question\": \"Can you explain the upgrade process from EB-3 to EB-2 for a pending I-485?\",\n", + "\"_answer\": \"It is possible to move up to EB-2 from EB-3 as long as the PERM was initially filed as an EB-2. If the PERM was originally filed as an EB-3, it is not possible to upgrade. If the PERM was filed as an EB-2, you can downgrade the I-140 to EB-3 and then upgrade to EB-2 if you have an EB-2 approval. You can then file a second case as EB-3 with the same PERM. For further information, please refer to the FAQs.\"} \n", "\n", "\n", "\n", @@ -2447,30 +2291,31 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are my chances of receiving an L1A visa? I was in the US on an H1B visa for 11 years until August 2019, when I transferred to Canada as a software development manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I was recently promoted to director of software development projects support and maintenance, before completing one year as manager. My I-140 has been approved and my priority date is July 2012. Do I need to be in the US to apply for an EB-1C green card, and can I get an L1A and move to the US if my EB-1C I-140 is approved? Is now the right time to apply for an EB-1C in the next couple of months, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"Please discuss your desired job role outside of the US with your lawyer. It is important to plan ahead for this, as trying to plan a year down the line is unlikely to be successful.\"}\n", + "{\"_question\": \"What are the chances of me being approved for an L1A visa? I had an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager, managing five direct reports and four second-level reports with the same company in both countries. I have since been promoted to Director of Software Development Projects Support and Maintenance, and I have an approved I-140 with a priority date of July 2012. Should I apply for an EB-1C/International Managers or Executives now, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"It is important to discuss your job description and plans for working outside the US with a lawyer from the outset. If you wait until a year down the line, the chances of success will be much lower.\"}\n", "\n", "######\n", - "{\"_question\": \"What are my prospects of obtaining an L1A visa? I was in the US on an H1B visa for 11 years until August 2019, when I transferred to Canada as a software development manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I was recently promoted to director of software development projects support and maintenance, before completing one year as manager. My I-140 has been approved and my priority date is July 2012. Do I need to be in the US to file for an EB-1C green card, and can I get an L1A and move to the US if my EB-1C I-140 is accepted? Is now the appropriate time to apply for an EB-1C in the next couple of months, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"Discuss the intended job role outside of the US with your lawyer. Planning ahead is essential, as attempting to plan a year down the line is unlikely to be successful.\"}\n", + "{\"_question\": \"What are my chances of getting an L1A visa? I was in the US on an H1B for 11 years until August 2019, when I transferred to Canada as a Software Development Manager. I am managing five direct reports and four second-level reports with the same company in both countries, and I have been promoted to Director of Software Development Projects Support and Maintenance. My I-140 has been approved and my priority date is July 2012. Should I submit an EB-1C/International Managers or Executives application now, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"It is advisable to discuss your job description and plans for working outside the US with a lawyer from the beginning. Waiting until a year down the line will significantly decrease your chances of success.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me getting an L1A visa? I was in the US on an H1B visa for 11 years until August 2019, when I transferred to Canada as a software development manager, managing 5 direct reports and 4 second level reports with the same company in both the US and Canada. I was recently promoted to director of software development projects support and maintenance, before completing one year as manager. My I-140 has been approved and my priority date is July 2012. Do I need to be in the US to apply for an EB-1C green card, and can I get an L1A and move to the US if my EB-1C I-140 is approved? Is now the right time to apply for an EB-1C in the next couple of months, or should I wait for the visa ban to end?\",\n", - "\"_answer\": \"Consult with your lawyer regarding the job role you intend to have outside of the US. It is important to plan ahead for this, as attempting to plan a year down the line is unlikely to be successful.\"} \n", + "{\"_question\": \"What is the likelihood of me being granted an L1A visa? I had an H1B visa for 11 years until August 2019, when I transferred to Canada as a Software Development Manager. I am managing five direct reports and four second-level reports with the same company in both countries, and I have been recently promoted to Director of Software Development Projects Support and Maintenance. My I-140 has been approved and my priority date is July 2012. Should I apply for an EB-1C/International Managers or Executives now, or should I wait until the visa ban is over?\",\n", + "\"_answer\": \"It is important to consult with a lawyer concerning your job description and plans for working outside the US from the start. If you wait until a year down the line, your chances of approval will be much lower.\"} \n", "\n", "\n", "\n", "3 \n", "\n", "\n", - "\n", "######\n", - "{\"_question\": \"Would it be a good idea to switch from EB-2 to EB-3 for my wife and I? We have been on EADs since 2012 and have had our cards renewed every two years. The EB-3 category is now ahead of EB-2, so would it make sense for my wife to downgrade and apply for an I-140 under EB-3?\",\n", - "\"_answer\": \"I think it would be a good idea to apply for EB-3 and then use whichever one is faster when the time comes.\"}\n", - "\n", + "{\"_question\": \"Is it a good idea to downgrade from eb-2 to eb-3?\",\n", + "\"_answer\": \"It could be a wise decision to apply for eb-3 and then use whichever option is quicker when the time comes.\"}\n", "######\n", - "{\"_question\": \"My wife and I have been on EADs since 2012 and have been renewing our cards every two years. The EB-3 category is now ahead of EB-2. Would it be a good move for my wife to switch to EB-3 and apply for an I-140 under that category?\",\n", - "\"_answer\": \"It would be a good idea to submit an application for EB-3 and then decide which one is faster when the time comes.\"} \n", + "{\"_question\": \"Should my wife and I switch from eb-2 to eb-3?\",\n", + "\"_answer\": \"It could be beneficial to submit an application for eb-3 and then use whichever one is faster when the time arrives.\"}\n", + "######\n", + "{\"_question\": \"What would be the best course of action for my wife and I to take regarding eb-2 and eb-3?\",\n", + "\"_answer\": \"It may be advantageous to apply for eb-3 and then select whichever one is faster when the time comes.\"} \n", "\n", "\n", "\n", @@ -2479,12 +2324,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"What measures can I take to receive a three year H-1B approval instead of a shorter duration? I received my H-1B approval for one year and it expires on October 27th, 2019. I am employed through a consultancy. Is there anything I can do to help secure a three year extension after October 27th, 2019?\", \n", - "\"_answer\": \"The only way to get a three year extension is to demonstrate that the project will continue for that amount of time.\"}\n", + "{\"_question\": \"What are the requirements for getting an H-1B visa for three years, not a shorter duration? I got my H1B approved for one year, expiring on October 27th, 2019. I work through a consultancy. What steps can I take to ensure I get the H1B approved for three years when I apply for an extension after October 27th, 2019? Are there any particular documents I need? If I go for stamping, do I need to be careful with social media at the port of entry? Are there any tips or recommendations you can give with reference to social media during port of entry? My EB2 priority date is February 4th, 2015 and I'm planning to marry a girl who is a Nepal citizen and she's on OPT right now. Can I move my priority date to EB2 Nepal category after marriage? If yes, what would be my next steps and how soon can I file for I-485 interview?\", \n", + "\"_answer\": \"Typically the only way you can get three year extension is if you can prove that the project will go on for three years.\"}\n", "\n", "######\n", - "{\"_question\": \"What can I do to ensure that my H-1B extension is approved for three years, not just one? My current H-1B was approved for a single year and will expire on October 27th, 2019. I am employed by a consultancy. Are there any steps I can take to help ensure that I receive a three year extension after October 27th, 2019?\",\n", - "\"_answer\": \"The only way to guarantee a three year extension is to prove that the project will last for that duration.\"} \n", + "{\"_question\": \"What do I need to do to be approved for an H-1B visa for three years, not a shorter duration? I have an H1B that was approved for one year, expiring on October 27th, 2019. I am employed through a consultancy. What can I do to ensure I get the H1B approved for three years when I apply for an extension after October 27th, 2019? Are there any documents I should prepare? If I go for stamping, should I be careful with my social media at the port of entry? Are there any tips or recommendations you can give me regarding social media during port of entry? My EB2 priority date is February 4th, 2015 and I'm planning to marry a girl who is a Nepal citizen and she's on OPT right now. Can I move my priority date to EB2 Nepal category after marriage? If yes, what would be my next steps and how quickly can I file for I-485 interview?\",\n", + "\"_answer\": \"Generally the only way you can get three year extension is if you can demonstrate that the project will go on for three years.\"} \n", "\n", "\n", "\n", @@ -2493,16 +2338,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are my options for remaining in the United States after my H-1B and I-94 expire in mid-August 2019?\",\n", - "\"_answer\": \"I don't think you would be able to obtain a tourist visa or tourist status, but you can apply for it.\"}\n", + "{\"_question\": \"what other choices do i have if i am unable to find a job before my h1-b and i-94 expire in mid-august 2019?\", \n", + "\"_answer\": \"You can look into applying for a tourist visa or tourist status, although I don't think you will get it.\"}\n", "\n", "######\n", - "{\"_question\": \"What can I do to legally stay in the USA after my H-1B and I-94 end in mid-August 2019?\",\n", - "\"_answer\": \"You may not be able to get a tourist visa or tourist status, however, you can try to apply for one.\"}\n", + "{\"_question\": \"what are my options if I don't secure a job before my h1-b and i-94 end in the middle of August 2019?\", \n", + "\"_answer\": \"You may be able to apply for a tourist visa or tourist status, although there is no guarantee you will receive it.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the possibilities for me to remain in the USA following the expiration of my H-1B and I-94 in mid-August 2019?\",\n", - "\"_answer\": \"It is unlikely that you will be able to acquire a tourist visa or tourist status, but you can attempt to apply for it.\"} \n", + "{\"_question\": \"what are the possibilities if I don't get a job before my h1-b and i-94 terminate in mid-August 2019?\", \n", + "\"_answer\": \"You could try applying for a tourist visa or tourist status, though it is unlikely that you will be successful.\"} \n", "\n", "\n", "\n", @@ -2511,16 +2356,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can my employer submit a concurrent application for me in EB-3 without impacting my existing EB-2 filing?\",\n", - "\"_answer\": \"Your EB-2 will not be affected. You can file an EB-3/I-140 and if your dates are current, you may be able to file an I-485 as well.\"}\n", + "{\"_question\": \"Is it possible to downgrade my case from EB-2 to EB-3 in order to take advantage of an earlier priority date, while still keeping my existing EB-2 filing intact? If so, what is the process for doing so? Do I need to complete the labor and I-140 again?\",\n", + "\"_answer\": \"Your EB-2 will remain unaffected. You can file an EB-3/I-140 and, if your dates are current, you may be able to file an I-485 as well.\"}\n", "\n", "######\n", - "{\"_question\": \"Would it be possible for my employer to submit a concurrent application in EB-3, without affecting my current EB-2 filing?\",\n", - "\"_answer\": \"Your EB-2 would remain unaffected. You can file an EB-3/I-140 and if your dates are current, you may be able to file an I-485 too.\"}\n", + "{\"_question\": \"Can I switch my EB-2 case to an EB-3, taking advantage of an earlier priority date, without having to abandon my existing EB-2 filing? What is the process for doing this? Do I need to redo my labor and I-140?\",\n", + "\"_answer\": \"Your EB-2 will remain unaffected. You may submit an EB-3/I-140 and, if your dates are current, you could also file an I-485.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to have my employer submit a concurrent application in EB-3 without affecting my current EB-2 filing?\",\n", - "\"_answer\": \"Your EB-2 will stay the same. You can submit an EB-3/I-140 and if your dates are current, you may be able to file an I-485 as well.\"} \n", + "{\"_question\": \"Is it feasible to downgrade from EB-2 to EB-3 to gain priority date advantage without compromising my existing EB-2 filing? How do I go about doing this? Is it necessary to redo the labor and I-140?\",\n", + "\"_answer\": \"Your EB-2 will stay intact. You can file an EB-3/I-140 and, if your dates are current, you can also submit an I-485.\"} \n", "\n", "\n", "\n", @@ -2529,31 +2374,30 @@ "\n", "\n", "######\n", - "{\"_question\": \"I already have an EB-2 approval and I switched to EB-3 in 2011. The EB-3 dates are now advancing and if they reach my priority date, can I still apply for EB-3 or do I have to downgrade to EB-3? Will there be any issues that arise?\",\n", - "\"_answer\": \"This is mainly a question of protocol and rules. The USCIS has been indicating that if you have one I-140 approval under EB-2, but you want to apply for EB-3, you must file a new I-140 using the same labor certification - PERM application and get an EB-3 approval first.\"}\n", + "{\"_question\": \"Will I still be eligible for EB-3 if the priority date reaches my date of application, even though I originally applied for EB-2?\",\n", + "\"_answer\": \"This is largely a matter of policy and procedure. USCIS has suggested that if you have an I-140 approved under EB-2 but wish to file under EB-3, you must submit another I-140 with a copy of the same labor certification and get an EB-3 approval first.\"}\n", "\n", "######\n", - "{\"_question\": \"I have an EB-2 approval and I changed to EB-3 back in 2011. The EB-3 dates are now progressing and if they reach my priority date, am I allowed to still apply for EB-3 or do I have to lower it to EB-3? Would there be any queries raised?\",\n", - "\"_answer\": \"This is mostly a question regarding process and policy. The USCIS has been indicating that if you have a single I-140 approved under EB-2 but you desire to submit under EB-3, you have to file another I-140 using the same labor certification - PERM application and get an EB-3 approval first.\"}\n", + "{\"_question\": \"If the EB-3 priority date reaches my date of application, am I still able to use the EB-3 category even though I initially applied for EB-2?\",\n", + "\"_answer\": \"This is mostly a matter of rules and regulations. The USCIS has indicated that if you have one I-140 approved for EB-2 but desire to use EB-3, you must submit a new I-140 with a duplicate of the same labor certification and get an EB-3 approval first.\"}\n", "\n", "######\n", - "{\"_question\": \"I have an EB-2 approval and I switched to EB-3 in 2011. The EB-3 dates are now moving forward and if it reaches my priority date, am I still allowed to apply for EB-3 or do I need to lower it to EB-3? Would there be any questions asked?\",\n", - "\"_answer\": \"This is mostly a question of procedure and policy. The USCIS has been indicating that if you have a single I-140 approved under EB-2 but you want to file under EB-3, you must file another I-140 using the same labor certification - PERM application and get an EB-3 approval first.\"} \n", + "{\"_question\": \"If the EB-3 priority date reaches the date I applied, can I still use EB-3 even though I initially applied for EB-2?\",\n", + "\"_answer\": \"This is mostly a question of procedure and policy. The USCIS has stated that if you have an I-140 approved under EB-2 but want to use EB-3, you have to submit another I-140 with a copy of the same labor certification and receive an EB-3 approval first.\"} \n", "\n", "\n", "\n", "8 \n", "\n", "\n", + "\n", "######\n", - "{\"_question\": \"Will my case be marked as fraud if I have not worked for the green card sponsoring company after receiving my green card and have been working in a job with the same job description that my green card was filed for instead?\",\n", - "\"_answer\": \"This is a difficult situation. It could be argued that this is acceptable as you took the job after receiving the green card and are only working for the company's operations outside the US temporarily. It may be a bit of a risk, but that is what I would suggest. You should definitely seek legal advice.\"}\n", - "######\n", - "{\"_question\": \"What are the chances of my green card being revoked and me being deported if I have not continued to work for the company that sponsored my green card after receiving it?\",\n", - "\"_answer\": \"This is a difficult situation. I would suggest that there is a chance that this is acceptable as you got the green card and took the job and are now only temporarily working for the company's operations outside the US. It may be a bit of a gamble, but that is what I would suggest. You should strongly consider consulting a lawyer.\"}\n", + "{\"_question\": \"What are the implications for my naturalization/citizenship if I have not worked for the green card sponsoring company? To summarize, I worked for the same company from 2004 to 2014 (2004 - 2011 in the US on H1B, and 2011-2014 in India). After receiving my green card, I did not work for the same company in the US and I do not have a single paycheck from a US company after receiving the green card. Since then, I have been working in a job with the same job description that my green card was filed for. All other history is clean - I have two US-born children, always paid taxes on time, and no legal cases. I heard from reliable sources that under current circumstances, my case will be marked as fraud and there is a 99% chance that they will revoke my green card and deport me, as I did not stay with the employer that sponsored my green card. What should I be concerned about? What are my options? I have the option of going back to the same employer now. Does that help? If my wife applies for naturalization instead of me, is that going to be any different?\",\n", + "\"_answer\": \"This is a tricky situation. I would argue that this is acceptable since you received the green card and took the job, and you are just temporarily working for the company's operations outside the US. It could go either way, so I suggest consulting with a lawyer. You should consider your options, and if going back to the same employer now would help. Additionally, if your wife applies for naturalization instead of you, that could make a difference.\"}\n", + "\n", "######\n", - "{\"_question\": \"If my wife applies for naturalization instead of me, will this situation be any different?\",\n", - "\"_answer\": \"This is a tricky situation. I would argue that this is acceptable as you went and got the green card and took the job and are now just working for the company's operations outside the US temporarily. It may be a bit of a risk, but that is what I would suggest. You should definitely get legal advice.\"} \n", + "{\"_question\": \"What are the consequences for my naturalization/citizenship if I have not worked for the green card sponsoring company? To give a brief overview, I worked for the same company from 2004 to 2014 (2004 - 2011 in the US on H1B, and 2011-2014 in India). After getting my green card, I did not work for the same company in the US and I do not have a single paycheck from a US company after receiving the green card. Since then, I have been working in a job with the same job description that my green card was filed for. All other history is clean - I have two US-born children, always paid taxes on time, and no legal cases. I heard from reliable sources that under current circumstances, my case will be marked as fraud and there is a 99% chance that they will revoke my green card and deport me, as I did not stay with the employer that sponsored my green card. What should I be worried about? What are my choices? I have the option of going back to the same employer now. Does that help? If my wife applies for naturalization instead of me, is that going to be any different?\",\n", + "\"_answer\": \"This is a difficult situation. I would suggest that this is acceptable since you obtained the green card and took the job, and you are just temporarily working for the company's operations outside the US. It is uncertain, so I recommend consulting with a lawyer. You should contemplate your options, and if returning to the same employer now would help. Furthermore, if your wife applies for naturalization instead of you, that could make a difference.\"} \n", "\n", "\n", "\n", @@ -2562,16 +2406,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What will happen if I attempt to downgrade from an EB2 to an EB3 and my newly filed I-140 is denied? Can I still use my previously approved I-140?\",\n", - "\"_answer\": \"If you have an EB-2 approved I-140, you can apply for an EB-3 approval on the same form or you can file an EB-3 I-140 and I-485 concurrently if the dates are current. If the I-485 is prematurely filed when the priority date of EB-2 is not current and the EB-3 is denied, the I-485 will also be denied. It is recommended that you have your lawyers review your case carefully to ensure there are no other issues. If the second EB-3 filing is denied, it should not have an impact on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", + "{\"_question\": \"What will happen if I downgrade from EB-2 to EB-3 and my newly filed I-140 is denied? Will my already approved I-140 in EB-2 be affected?\",\n", + "\"_answer\": \"If you file a I-485 that is prematurely filed when the priority date of EB-2 is not current, and the EB-3 filing gets denied, then the I-485 will also be denied. It is important to have your lawyer review your case carefully to make sure that there are no other issues. If the second EB-3 filing is denied, it should not have any impact on the previously approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", "\n", "######\n", - "{\"_question\": \"What will be the outcome if I attempt to change my status from EB-2 to EB-3 and my new I-140 is rejected? Can I still utilize my previously approved I-140?\",\n", - "\"_answer\": \"If you have an EB-2 approved I-140, you can apply for an EB-3 approval on the same form or you can file an EB-3 I-140 and I-485 concurrently if the dates are current. If the I-485 is submitted prematurely when the priority date of EB-2 is not current and the EB-3 is rejected, the I-485 will also be denied. It is recommended that you have your lawyers review your case thoroughly to make sure there are no other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"}\n", + "{\"_question\": \"What are the consequences if I refile for an EB-3 approval and my I-140 is denied? Will my approved I-140 in EB-2 be impacted?\",\n", + "\"_answer\": \"If an I-485 is filed before the priority date of the EB-2 is current, and the EB-3 filing is denied, then the I-485 will also be denied. It is important to have your lawyer carefully review your case to ensure that there are no other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing brings to light a problem with the case that was not previously addressed.\"}\n", "\n", "######\n", - "{\"_question\": \"What will happen if I try to downgrade from EB-2 to EB-3 and my new I-140 is refused? Can I still use my previously approved I-140?\",\n", - "\"_answer\": \"If you have an EB-2 approved I-140, you can apply for an EB-3 approval on the same form or you can file an EB-3 I-140 and I-485 concurrently if the dates are current. If the I-485 is submitted prematurely when the priority date of EB-2 is not current and the EB-3 is refused, the I-485 will also be denied. It is recommended that you have your lawyers review your case carefully to ensure there are no other issues. If the second EB-3 filing is denied, it should not have an impact on the already approved I-140 unless the second filing reveals a problem with the case that was not addressed earlier.\"} \n", + "{\"_question\": \"What happens if I apply for an EB-3 and my I-140 is denied? Will my previously approved I-140 in EB-2 be impacted?\",\n", + "\"_answer\": \"If an I-485 is submitted before the priority date of the EB-2 is current, and the EB-3 filing is denied, then the I-485 will also be denied. It is important to have your lawyer examine your case thoroughly to ensure that there are no other issues. If the second EB-3 filing is denied, it should not affect the already approved I-140 unless the second filing reveals a problem with the case that was not previously addressed.\"} \n", "\n", "\n", "\n", @@ -2580,16 +2424,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is necessary to get an EB-2 green card with a master's degree?\",\n", - "\"_answer\": \"You must obtain your degree from an accredited university in order for the educational evaluation to be completed and approved for an EB-2 green card.\"}\n", + "{\"_question\": \"What do I need to do to get a master's degree from an accredited university to process an EB-2 green card?\",\n", + "\"_answer\": \"To obtain an EB-2 green card, you must obtain a master's degree from an accredited university. You can check with your university to find out which state-level agency has accredited their programs.\"}\n", "\n", "######\n", - "{\"_question\": \"What do I need to do to get an EB-2 green card with a master's degree?\",\n", - "\"_answer\": \"You must have your master's degree from an accredited university in order for the educational evaluation to be accepted for an EB-2 green card.\"}\n", + "{\"_question\": \"What is the requirement to obtain an EB-2 green card?\",\n", + "\"_answer\": \"To get an EB-2 green card, you must have a master's degree from an accredited university. Your university should be able to provide you with information on the state-level agency that has accredited their programs.\"}\n", "\n", "######\n", - "{\"_question\": \"How can I get an EB-2 green card with a master's degree?\",\n", - "\"_answer\": \"In order to be approved for an EB-2 green card, you must have your master's degree from an accredited university and have the educational evaluation completed.\"} \n", + "{\"_question\": \"What do I need to do to be eligible for an EB-2 green card?\",\n", + "\"_answer\": \"In order to be eligible for an EB-2 green card, you must have a master's degree from an accredited university. Your university can provide you with information on the state-level agency that has accredited their programs.\"} \n", "\n", "\n", "\n", @@ -2598,16 +2442,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I begin the green card process while on F-1 status? I am on F1 OPT status and employed by Company A, and my employer has filed for H1B status this year. I am currently waiting for my H1B approval. Is it possible to start the green card process while I am in F1 status?\",\n", - "\"_answer\": \"For people from countries with extremely backlogged priority dates, such as India, China, the Philippines, and Mexico, it is risky to begin the green card process while on F-1 status, as this status does not permit dual intent. This means that filing for a green card while in such a status could result in difficulty receiving extensions, visa stamping, or re-entry into the United States. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or anywhere in Europe, where priority dates are not backlogged, it may be possible to complete the green card process within a year in the EB-1, EB-2, or EB-3 category.\"}\n", + "{\"_question\": \"Can an individual with F-1 status begin a green card process?\", \n", + "\"_answer\": \"Individuals from countries with backlogged priority dates like India, China, Philippines, and Mexico may not be able to start a green card process while on F-1 status, as this status does not permit dual intent. However, those from countries with non-backlogged priority dates such as Saudi Arabia, Pakistan, Nepal, or Europe may be able to complete the green card process within a year in an EB-1, EB-2, or EB-3 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to initiate a green card application while on F-1 status? I am currently on F1 OPT and employed by Company A, and my employer has applied for H1B status this year. I am waiting for H1B approval. Can I start the green card process while I am on F1 status?\",\n", - "\"_answer\": \"Individuals from countries with extremely backlogged priority dates, such as India, China, the Philippines, and Mexico, should be wary of beginning the green card process while on F-1 status, as this status does not allow for dual intent. This could lead to complications when applying for extensions, visa stamping, or re-entry into the United States. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or anywhere in Europe, where priority dates are not backlogged, it may be possible to complete the green card process in the EB-1, EB-2, or EB-3 category within a year.\"}\n", + "{\"_question\": \"Is it possible to initiate a green card application while on F-1 status?\", \n", + "\"_answer\": \"For individuals from countries with backlogged priority dates like India, China, Philippines, and Mexico, beginning a green card process while on F-1 status is not recommended, as this status does not allow for dual intent. However, those from countries with non-backlogged priority dates like Saudi Arabia, Pakistan, Nepal, or Europe may be able to finish the green card process within a year under an EB-1, EB-2, or EB-3 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I start the green card process while on F-1 status? I am currently on F1 OPT and working for Company A, and my employer has filed for H1B status this year. I am awaiting my H1B approval. Is it possible to initiate the green card process while I am in F1 status?\",\n", - "\"_answer\": \"For individuals from countries with extremely backlogged priority dates, such as India, China, the Philippines, and Mexico, it is not advisable to initiate the green card process while on F-1 status, as this status does not permit dual intent. This could result in difficulty when applying for extensions, visa stamping, or re-entry into the United States. However, for those from countries such as Saudi Arabia, Pakistan, Nepal, or anywhere in Europe, where priority dates are not backlogged, it may be possible to complete the green card process within a year in the EB-1, EB-2, or EB-3 category.\"} \n", + "{\"_question\": \"Can someone on F-1 visa status begin the green card process?\", \n", + "\"_answer\": \"Individuals from countries with delayed priority dates such as India, China, Philippines, and Mexico should not start a green card process while on F-1 visa status, as this status does not permit dual intent. However, those from countries with non-delayed priority dates like Saudi Arabia, Pakistan, Nepal, or Europe may be able to complete the green card process within a year in an EB-1, EB-2, or EB-3 category.\"} \n", "\n", "\n", "\n", @@ -2616,16 +2460,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I submit multiple green card applications at the same time? What are the potential repercussions of doing so? My employer has already filed for my green card in the EB-2 category and I-140 has been approved with a priority date of 2013. If I decide to apply for the EB-1 category myself, will it have any impact on my EB-2 green card? Is the job description required to be the same for both categories? What are the possible problems that may arise?\",\n", - "\"_answer\": \"Yes, you can submit multiple green card applications simultaneously. This can be done through employment, family or investment. As long as the applications are filed honestly, there should be no issues. If you decide to apply for the EB-1 category yourself and it is not approved, it will not affect your EB-2 green card. The job description does not need to be the same for both categories. However, there may be potential problems that could arise.\"}\n", - "\n", - "######\n", - "{\"_question\": \"Is it feasible to submit multiple green card applications at the same time? What are the risks of doing so? My employer has already filed for my green card in the EB-2 category and I-140 has been approved with a priority date of 2013. If I attempt to apply for the EB-1 category myself, will it have an effect on my EB-2 green card? Should the job description be similar for both categories? What are the possible issues that could arise?\",\n", - "\"_answer\": \"Yes, it is possible to submit multiple green card applications simultaneously. This can be done through employment, family or investment. As long as the applications are filed honestly, there should be no issues. If you attempt to apply for the EB-1 category yourself and it is not approved, it will not affect your EB-2 green card. The job description does not need to be the same for both categories. However, there may be potential issues that could arise.\"}\n", + "{\"_question\": \"Can I submit several green card applications simultaneously? What would be the consequences? My employer filed for an EB-2 green card with a priority date of 2013. Could I try to get an EB-1 green card personally? Would the EB-1 status affect the EB-2 green card? Would the job description have to match in both EB-1 and EB-2? What potential issues might arise?\",\n", + "\"_answer\": \"Yes, you can submit multiple green card applications at the same time, including a combination of employment and family or investment applications. As long as the applications are filed honestly, any number of green cards can be filed. Trying for an EB-1 green card will not affect the EB-2 green card, but the job description should match for both EB-1 and EB-2. Potential issues may arise, so it is important to be aware of them.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I file multiple green card applications at the same time? What are the potential consequences of doing so? My employer has already filed for my green card in the EB-2 category and I-140 has been approved with a priority date of 2013. If I attempt to apply for the EB-1 category myself, will it have an impact on my EB-2 green card? Must the job description be identical for both categories? What are the possible problems that may occur?\",\n", - "\"_answer\": \"Yes, you can file multiple green card applications simultaneously. This can be done through employment, family or investment. As long as the applications are filed honestly, there should be no issues. If you attempt to apply for the EB-1 category yourself and it is not approved, it will not affect your EB-2 green card. The job description does not need to be the same for both categories. However, there may be possible problems that could arise.\"} \n", + "{\"_question\": \"Can I apply for multiple green cards at once? What are the repercussions? My employer has filed an EB-2 green card with a 2013 priority date. Is it possible for me to attempt to get an EB-1 green card independently? Will the EB-1 status have any effect on the EB-2 green card? Must the job description be the same for EB-1 and EB-2? What could possibly go wrong?\",\n", + "\"_answer\": \"Yes, you can file for various green cards at the same time, including both employment and family or investment applications. You can file as many green cards as you like as long as they are filed truthfully. Trying for an EB-1 green card will not interfere with the EB-2 green card, but the job description must match for both EB-1 and EB-2. It is important to be aware of the potential issues that may arise.\"} \n", "\n", "\n", "\n", @@ -2634,16 +2474,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"How long will the NIW processing take? I'm in the EB-2 category and I'm wondering if it will take a while before I get my EAD card and can switch employers. Is there any risk associated with changing employers during the process? I'd rather switch before starting the process.\",\n", - "\"_answer\": \"There are no risks associated with changing employers if you are a self-applicant and will continue to work in your stated area of national interest. However, the NIW priority date will take the same amount of time to process as a normal EB-2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", + "{\"_question\": \"What is the duration of the NIW process? Does it take as long as the EB2 application? Can I change employers during the process?\",\n", + "\"_answer\": \"If you are a self-applicant and will continue to work in your stated area of national interest, you can change employers any time. The NIW priority date will take the same time as a normal EB-2 application does. See: http://www.immigration.com/visa-bulletinunder employment-based category 2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can you tell me about the time frame for NIW processing? I'm in the EB-2 category and I'm wondering if it will take a while before I can get my EAD card and switch employers. Is there any danger involved in changing employers during the process? I'd rather switch before starting the process.\",\n", - "\"_answer\": \"There is no danger associated with changing employers if you are a self-applicant and will keep working in your declared area of national interest. Nevertheless, the NIW priority date will take the same length of time to process as a regular EB-2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"}\n", + "{\"_question\": \"How long does the NIW application take? Is it the same as the EB2 filing? Is it okay to change employers during the process?\",\n", + "\"_answer\": \"Switching employers is permissible if you are a self-applicant and will continue to work in your stated area of national interest. The NIW timeline is the same as the EB2 application timeline. See: http://www.immigration.com/visa-bulletinunder employment-based category 2.\"}\n", "\n", "######\n", - "{\"_question\": \"How long will the NIW processing take? I'm in the EB-2 category and I'm concerned that it might take a while before I get my EAD card and can switch employers. Is there any hazard associated with changing employers during the process? I'd rather switch before starting the process.\",\n", - "\"_answer\": \"There are no hazards associated with changing employers if you are a self-applicant and will keep working in your specified area of national interest. However, the NIW priority date will take the same amount of time to process as a usual EB-2 application. See http://www.immigration.com/visa-bulletin under the Employment-Based Category 2.\"} \n", + "{\"_question\": \"What is the processing time for NIW? Is it the same as the EB2 filing? Can I switch employers while the application is being processed?\",\n", + "\"_answer\": \"If you are a self-applicant and will work in your stated area of national interest, you can switch employers at any time. The NIW processing time is the same as the EB2 filing. See: http://www.immigration.com/visa-bulletinunder employment-based category 2.\"} \n", "\n", "\n", "\n", @@ -2652,12 +2492,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"what is the purpose of form g-884 (returns of original documents)? i received my i-140 approval and ead with eb2 category in april 2012. my employer did not provide me with a copy of my green card documents like i-140 approval, labor certification, etc. i only have the receipt copies of i-140 and i-485. i heard that i can use g-884 to retrieve all my green card documents from uscis. can i do this without knowing my employer's information?\",\n", - "\"_answer\": \"form g-884 is used to request the return of documents you had sent to uscis (e.g., your college degrees and diplomas). use foia for the purpose you are considering.\"}\n", + "{\"_question\": \"I got my I-140 approved and EAD with the EB2 category in April 2012. My employer did not provide me with the green card documents such as my I-140 approval copy, labor code, etc. Is it possible to get the original documents from USCIS using form G-884 (returns of original documents) without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to request the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). FOIA should be used for the purpose you are considering.\"}\n", "\n", "######\n", - "{\"_question\": \"what is the goal of form g-884 (returns of original documents)? i got my i-140 approved and ead with eb2 category in april 2012. my employer did not provide me with a copy of my green card documents like i-140 approval, labor certification, etc. i only have the receipt copies of i-140 and i-485. i heard that i can use g-884 to get all my green card documents from uscis. can i do this without knowing my employer's details?\",\n", - "\"_answer\": \"form g-884 is intended to request the return of documents you had sent to uscis (e.g., your college degrees and diplomas). use foia for the purpose you are considering.\"} \n", + "{\"_question\": \"I was approved for my I-140 and EAD with the EB2 category in April 2012, but my employer did not give me the green card documents like the I-140 approval copy, labor code, etc. Is it possible to retrieve the original documents from USCIS with form G-884 (returns of original documents) without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to ask for the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). FOIA should be used for the purpose you are looking for.\"}\n", + "\n", + "######\n", + "{\"_question\": \"I obtained my I-140 approval and EAD with EB2 category in April 2012, but my employer did not give me the green card documents such as the I-140 approval copy, labor code, etc. Can I get the original documents from USCIS using form G-884 (returns of original documents) without knowing my employer?\",\n", + "\"_answer\": \"Form G-884 is used to request the return of documents you had sent to USCIS (e.g., your college degrees and diplomas). FOIA should be used for the purpose you are considering.\"} \n", "\n", "\n", "\n", @@ -2666,16 +2510,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I submit an adjustment of status application if my EB-2 physical therapist application falls under the Schedule A category?\", \n", - "\"_answer\": \"Yes, you may be able to file concurrently if the priority date for EB-2 is not backlogged.\"}\n", + "{\"_question\": \"Can I submit an adjustment of status application concurrently with the form I-140 if my 'Schedule A' application falls into the EB-2 or Employment Based Second Preference category?\",\n", + "\"_answer\": \"Submitting an adjustment of status concurrently with the form I-140 is only possible if your priority date for EB-2 is current and not backlogged.\"}\n", "\n", "######\n", - "{\"_question\": \"If I'm applying for an EB-2 physical therapist under the Schedule A category, can I submit an adjustment of status application?\", \n", - "\"_answer\": \"Yes, if the priority date for EB-2 is not delayed, you can file concurrently.\"}\n", + "{\"_question\": \"If my 'Schedule A' application is classified as EB-2 or Employment Based Second Preference, can I file an adjustment of status application at the same time as the form I-140?\",\n", + "\"_answer\": \"Concurrent filing is allowed only if your EB-2 priority date is current and not backlogged.\"}\n", "\n", "######\n", - "{\"_question\": \"If I'm applying for an EB-2 physical therapist under the Schedule A category, can I simultaneously file an adjustment of status application?\", \n", - "\"_answer\": \"Yes, you may be able to do so if the priority date for EB-2 is not delayed.\"} \n", + "{\"_question\": \"If I qualify for EB-2 or Employment Based Second Preference under 'Schedule A', can I simultaneously file an adjustment of status application with the form I-140?\",\n", + "\"_answer\": \"Submitting an adjustment of status concurrently is only possible if your EB-2 priority date is current and not delayed.\"} \n", "\n", "\n", "\n", @@ -2684,16 +2528,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the status of Obama's immigration action EAD at the I-140 stage? I'm on an H-1B visa and have had my I-140 approved in the EB-2 category, but I'm still waiting for the dates to become current. Will I be granted any EAD or other forms of authorization based on the executive action?\",\n", - "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without needing to wait for the priority dates to become current. If this is implemented, it would get you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government documents yet.\"}\n", + "{\"_question\": \"With regards to Obama's immigration action, if I am on an H-1B visa and my I-140 has been approved in the EB-2 category, but I am waiting for the dates to become current, will I get an Employment Authorization Document?\",\n", + "\"_answer\": \"I have heard that there is a suggestion to allow for the filing of I-485 at the I-140 stage, without needing the priority dates to be current. This, if put into practice, would provide you with an EAD as well as the ability to switch jobs under AC21. Unfortunately, there is no clear evidence of this proposal in any government document as of now.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the current status of Obama's immigration EAD at the I-140 stage? I'm on an H-1B visa and have gotten my I-140 approved in the EB-2 category, but I'm still waiting for the dates to be updated. Could I be given an EAD or other forms of authorization based on the executive action?\",\n", - "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without needing to wait for the priority dates to be updated. If this is implemented, it would get you an EAD as well as the right to change jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government documents yet.\"}\n", + "{\"_question\": \"In regards to Obama's immigration action, if I am on a H-1B visa and my I-140 has been approved in the EB-2 category, but I am waiting for the dates to get current, will I get an Employment Authorization Document?\",\n", + "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without requiring the priority dates to be current. This, if implemented, would give you an EAD as well as the freedom to change jobs under AC21. Unfortunately, there is no definite proof of this proposal in any government document as of now.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the present situation of Obama's immigration action EAD at the I-140 stage? I'm on an H-1B visa and have had my I-140 approved in the EB-2 category, but I'm still waiting for the dates to be current. Will I be provided any EAD or other forms of authorization based on the executive action?\",\n", - "\"_answer\": \"I have heard that there is a proposal to allow filing of I-485 at the I-140 stage, without needing to wait for the priority dates to be current. If this is implemented, it would get you an EAD as well as the right to alter jobs under AC21. Unfortunately, there is no clear indication about this proposal in any government documents yet.\"} \n", + "{\"_question\": \"Regarding Obama's immigration action, if I am on an H-1B visa and my I-140 has been approved in the EB-2 category, but I am waiting for the dates to be current, will I get an Employment Authorization Document?\",\n", + "\"_answer\": \"I have heard that there is a suggestion to permit the filing of I-485 at the I-140 stage, without needing the priority dates to be current. This, if carried out, would provide you with an EAD as well as the right to switch jobs under AC21. Unfortunately, there is no definite indication of this proposal in any government document up to this point.\"} \n", "\n", "\n", "\n", @@ -2702,15 +2546,15 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the options for expediting a government delay in the EB-2 category with a priority date of June 2008 and an I-485 application filed in January 2012, which became current in July 2014, with background checks still pending?\", \n", + "{\"_question\": \"What can I do to expedite my background checks for my I-485 application? I am an EB-2 with priority date of June 2008 and have already provided fingerprints 2.5 years ago.\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", "\n", "######\n", - "{\"_question\": \"What can be done to speed up the government process for an EB-2 with a priority date of June 2008 and an I-485 application filed in January 2012, which became current in July 2014, with background checks still not completed?\", \n", + "{\"_question\": \"How can I hasten the background checks for my I-485 application? My priority date is June 2008 and I have already submitted fingerprints 2.5 years ago.\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"}\n", "\n", "######\n", - "{\"_question\": \"What are the options available to an EB-2 with a priority date of June 2008 and an I-485 application filed in January 2012, which became current in July 2014, with background checks still in progress for expediting the process?\", \n", + "{\"_question\": \"What steps can I take to speed up the background checks for my I-485 application? I have a priority date of June 2008 and already gave fingerprints 2.5 years ago.\", \n", "\"_answer\": \"see the marked clip below from rajiv's video recording for the answer to this question.https://www.youtube.com/watch?feature=player_detailpage&list=uum4s1qwos\"} \n", "\n", "\n", @@ -2720,16 +2564,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I use my experience with my current employer in India while filing for permanent residency?\",\n", - "\"_answer\": \"Yes, it is generally permissible to use experience gained with an employer who has a different tax ID number than the petitioning employer.\"}\n", + "{\"_question\": \"Can I present my experience with my current employer in India while filing for permanent residency?\",\n", + "\"_answer\": \"Generally, you are able to use the experience gained from an employer who has a different tax identification number than the one filing the petition.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it allowed to include my Indian experience with my current employer while applying for permanent residency?\",\n", - "\"_answer\": \"Yes, you can usually utilize the experience you gained with an employer with a different tax ID number than the petitioning employer.\"}\n", + "{\"_question\": \"Can I include my experience with my current employer in India while applying for green card?\",\n", + "\"_answer\": \"In general, you can use the experience you gained with an employer who has a different tax ID number than the petitioner.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I utilize my experience with my current employer in India to apply for permanent residency?\",\n", - "\"_answer\": \"Yes, you can typically use the experience gained with an employer who has a different tax ID number than the petitioning employer.\"} \n", + "{\"_question\": \"Can I use my experience with my current employer in India while filing for a green card?\",\n", + "\"_answer\": \"Generally, it is possible to utilize the experience acquired from an employer who has a different tax identification number than the one filing the petition.\"} \n", "\n", "\n", "\n", @@ -2738,16 +2582,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the AACRAO EDGE standard and does it account for internships?\", \n", - "\"_answer\": \"Yes, internships do qualify as experience when evaluating your degrees under AACRAO EDGE standards.\"}\n", + "{\"_question\": \"Do internships count towards the number of years of work after school? I have two US bachelor's degrees - a 3-year bachelor degree in science and a 2-year bachelor's degree in engineering - and am considering applying for an EB-2 visa. If I don't qualify for the EB-2, I have worked for around four years in my current job. Should I wait another year and then apply for the EB-2 or should I just file for the EB-3 visa now?\",\n", + "\"_answer\": \"Internships do count as experience. You will need to have your degrees evaluated under AACRAO Edge standards first.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the AACRAO EDGE standard with regards to internships?\", \n", - "\"_answer\": \"AACRAO EDGE standards take into account internships when evaluating your degrees.\"}\n", + "{\"_question\": \"I have two US bachelor's degrees - a 3-year bachelor degree in science and a 2-year bachelor's degree in engineering - and am thinking of submitting an EB-2 visa application. In the event that I don't qualify for the EB-2, I've worked for about four years in my current job. Should I wait a further year and then apply for the EB-2 or should I just file for the EB-3 visa now?\",\n", + "\"_answer\": \"Internships are factored in when counting the number of years of work after school. You must have your degrees assessed under AACRAO Edge standards first.\"}\n", "\n", "######\n", - "{\"_question\": \"Do internships count when evaluating degrees under AACRAO EDGE standards?\", \n", - "\"_answer\": \"Yes, internships are taken into consideration when evaluating your degrees under AACRAO EDGE standards.\"} \n", + "{\"_question\": \"I have two US bachelor's degrees - a 3-year bachelor degree in science and a 2-year bachelor's degree in engineering - and am considering applying for an EB-2 visa. If I don't qualify for the EB-2, I have been at my current job for about four years. Should I wait another year before applying for the EB-2 or should I just file for the EB-3 visa now?\",\n", + "\"_answer\": \"Internships are taken into account when calculating the number of years of work after school. You should get your degrees evaluated under AACRAO Edge standards first.\"} \n", "\n", "\n", "\n", @@ -2756,16 +2600,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"How soon can I start the green card process? Do I have a choice between EB-1 and EB-2? Do I need a degree to apply for the green card? Is it necessary for my employer to apply for me?\",\n", - "\"_answer\": \"You can begin the green card process right away. Yes, you have the option of selecting between EB-1 and EB-2. No, a degree is not necessary. Your employer needs to apply for you.\"}\n", + "{\"_question\": \"How long do I have to wait to begin the green card process? Do I have the choice of selecting either EB-1 or EB-2? I don't have a bachelor's or master's degree - will that be a problem for applying for a green card? Should I only apply through my employer or can I do it myself?\",\n", + "\"_answer\": \"You can start the green card process without any delay. Yes, you can choose between EB-1 and EB-2. Not having a degree is not a barrier for international managers/executives. Your employer must apply for the green card on your behalf.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the timeline for starting the green card process? Can I choose between EB-1 and EB-2? Is a degree required for applying for the green card? Do I need my employer to file for me?\",\n", - "\"_answer\": \"You can apply for green card without any wait. Yes, but eb-1 is a gazillion times faster for indian-born people. Degree is not a requirement for international managers/execs. Your employer needs to apply.\"}\n", + "{\"_question\": \"What is the timeframe to start the green card process? Is it possible to pick between EB-1 or EB-2? If I don't have a bachelor's or master's degree, will that be an issue for applying for a green card? Must I only go through my employer or can I do it by myself?\",\n", + "\"_answer\": \"You can start the green card process immediately. Yes, you can choose between EB-1 and EB-2. Not having a degree is not a problem for international managers/executives. Your employer needs to submit the green card application on your behalf.\"}\n", "\n", "######\n", - "{\"_question\": \"When can I start the green card process? Is there an option to select between EB-1 and EB-2? Do I need a degree to be eligible for the green card? Should my employer file for me?\",\n", - "\"_answer\": \"You can begin the green card process right away. Yes, you have the option of selecting between EB-1 and EB-2. No, a degree is not necessary. Your employer needs to apply for you.\"} \n", + "{\"_question\": \"How long should I wait to initiate the green card process? Can I select either EB-1 or EB-2? Do I need a bachelor's or master's degree to apply for a green card? Should I only apply through my employer or can I do it myself?\",\n", + "\"_answer\": \"You can begin the green card process without any wait. Yes, you can choose between EB-1 and EB-2. Not having a degree is not a hindrance for international managers/execs. Your employer must apply for the green card on your behalf.\"} \n", "\n", "\n", "\n", @@ -2774,16 +2618,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"if I obtain an accredited master's degree, would I be able to qualify for the eb-2 visa without needing to demonstrate progressive experience since graduating?\",\n", - "\"_answer\": \"Yes, if the master's degree is accredited, you would not need to demonstrate post-master's experience for the eb-2 visa. There could be some issue about the 3+2 pattern of education, but an accredited master's should resolve that.\"}\n", + "{\"_question\": \"I have a 3-year bachelor's degree from India and 16 years of experience in the US. My EB-3 has a PD of 10/2006. Will I be able to qualify for an EB-2 if I pursue an MS degree here (online or executive)? Do I need to demonstrate progressive experience since I obtained my MS?\",\n", + "\"_answer\": \"As long as the master's degree is accredited, you won't need to provide any post-master's experience for EB-2. There might be some difficulty due to the 3+2 pattern of education, but an accredited master's should solve that problem.\"}\n", "\n", "######\n", - "{\"_question\": \"if I complete a master's program that is accredited, can I qualify for the eb-2 visa without having to show progressive experience since I graduated?\",\n", - "\"_answer\": \"Yes, if the master's degree is accredited, you do not need to prove post-master's experience for the eb-2 visa. There may be an issue with the 3+2 pattern of education, but an accredited master's should fix that.\"}\n", + "{\"_question\": \"I have a 3-year bachelor's degree from India and 16 years of experience in the US. My EB-3 has a PD of 10/2006. Will I be able to qualify for an EB-2 if I get a master's degree here (online or executive)? Do I have to demonstrate progressive experience since I got my MS?\",\n", + "\"_answer\": \"If the master's degree is accredited, you won't need to demonstrate post-master's experience for EB-2. There could be an issue with the 3+2 pattern of education, but an accredited master's should resolve that.\"}\n", "\n", "######\n", - "{\"_question\": \"if I get a master's degree from an accredited school, would I be able to qualify for the eb-2 visa without needing to demonstrate progressive experience since getting the degree?\",\n", - "\"_answer\": \"Yes, if the master's degree is accredited, you do not need to present post-master's experience for the eb-2 visa. There could be a problem with the 3+2 pattern of education, but an accredited master's should solve that.\"} \n", + "{\"_question\": \"I have a 3-year bachelor's degree from India and 16 years of experience in the US. My EB-3 has a PD of 10/2006. Am I able to qualify for an EB-2 if I achieve an MS degree here (online or executive)? Do I need to show progressive experience since I earned my MS?\",\n", + "\"_answer\": \"Provided the master's degree is accredited, you don't need to present any post-master's experience for EB-2. There may be some difficulty due to the 3+2 pattern of education, but an accredited master's should address that issue.\"} \n", "\n", "\n", "\n", @@ -2792,16 +2636,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Does exhibiting immigrant intent while having a j-1 (for four more years, no hrr) put me at risk? If I don't get an eb-2, can airport officers tell I was denied and that I had immigration intent?\", \n", - "\"_answer\": \"There is a possibility that exhibiting immigrant intent can be a problem for j-1 holders. However, it is not guaranteed that you will have a problem.\"}\n", + "{\"_question\": \"I have a J-1 visa that is valid for four more years and am considering an EB2-NIW application. If my application is not accepted, will I experience issues when travelling on my J-1 visa?\", \n", + "\"_answer\": \"Immigration intent can be a problem for J-1 holders. It is uncertain if you will have a problem, but there is a potential for it.\"}\n", "\n", "######\n", - "{\"_question\": \"If I apply for an eb2-niw while I have a j-1 visa (for four more years, no hrr), could this be an issue? If I don't get the eb-2, will airport officers be aware that I was denied and had immigration intent?\", \n", - "\"_answer\": \"There is a chance that having immigration intent while having a j-1 visa could be a problem. It is not definite that you will have an issue, but the possibility does exist.\"}\n", + "{\"_question\": \"I possess a J-1 visa that is valid for four more years and am considering an EB2-NIW application. If the application is not approved, will I have difficulty when travelling with my J-1 visa?\", \n", + "\"_answer\": \"Showing immigration intent can be a concern for J-1 holders. It is not definite if you will have a problem, but it is possible.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a j-1 visa for four more years, no hrr. I am considering applying for an eb2-niw. If I don't get the eb-2, could this lead to difficulties when I travel with my j-1? Could airport officers tell I was denied and had immigration intent?\", \n", - "\"_answer\": \"Immigration intent could be an issue for j-1 holders. It is not certain that you will have a problem, but the potential does exist.\"} \n", + "{\"_question\": \"I have a J-1 visa that will be valid for four more years and am contemplating an EB2-NIW request. If the application is not successful, will I have trouble when travelling with my J-1 visa?\", \n", + "\"_answer\": \"Demonstrating immigration intent can be a concern for J-1 holders. It is not certain if you will have an issue, but there is a chance for it.\"} \n", "\n", "\n", "\n", @@ -2810,16 +2654,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I get an EB-2 visa if I have a Master's degree in Veterinary Medicine and work as a Veterinary Assistant in the USA?\",\n", - "\"_answer\": \"In order to qualify for an EB2 visa, you must meet two criteria: 1. Your degree must be equivalent to a US advanced degree (this must be evaluated by a credentials evaluation service under appropriate standards); and 2. The job must require an advanced degree or equivalent experience.\"}\n", + "{\"_question\": \"Can I get an EB-2 visa if I'm a veterinary assistant in the United States with a master's degree in veterinary medicine from Bulgaria?\",\n", + "\"_answer\": \"To be eligible for an EB-2 visa, two criteria must be met: 1) Your degree must be equivalent to a US advanced degree (this must be evaluated by a credentials evaluation service); and 2) The job must require an advanced degree or equivalent experience.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements to get an EB-2 visa if I am a Veterinary Assistant in the USA and I have a Master's degree in Veterinary Medicine from Bulgaria?\",\n", - "\"_answer\": \"In order to be eligible for an EB2 visa, you must fulfill two conditions: 1. Your degree must be comparable to a US advanced degree (this must be evaluated by a credentials evaluation service using applicable standards); and 2. The job must necessitate an advanced degree or equivalent experience.\"}\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 visa if I'm a veterinary assistant from Bulgaria with a master's degree in veterinary medicine and I want to work in the US?\",\n", + "\"_answer\": \"In order to obtain an EB-2 visa, two conditions must be fulfilled: 1) Your degree must be equal to a US advanced degree (this must be evaluated by a credential evaluation service); and 2) The job must necessitate a advanced degree or equivalent experience.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Master's degree in Veterinary Medicine from Bulgaria and I want to work as a Veterinary Assistant in the USA. Can I get an EB-2 visa?\",\n", - "\"_answer\": \"You can qualify for an EB2 visa only if you meet two conditions: 1. Your degree must be the same as a US advanced degree (this must be evaluated by a credentials evaluation service under proper standards); and 2. The job must require an advanced degree or equivalent experience.\"} \n", + "{\"_question\": \"I have a master's degree in veterinary medicine from Bulgaria and I want to work as a veterinary assistant in the US. Am I eligible for an EB-2 visa?\",\n", + "\"_answer\": \"You may qualify for an EB-2 visa if two prerequisites are met: 1) Your degree must be comparable to a US advanced degree (this must be evaluated by a credentials evaluation service); and 2) The job must require an advanced degree or equivalent experience.\"} \n", "\n", "\n", "\n", @@ -2828,16 +2672,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the best way to reach out to the USCIS Service Centers to inform them that a priority date is current, that an EB case has been upgraded from EB-3 to EB-2, or that dependents have been separated from the principal applicant's petition?\", \n", - "\"_answer\": \"Send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "{\"_question\": \"How can I reach out to the USCIS Service Centers to inform them that a priority date is current, that an EB case has been upgraded from EB-3 to EB-2, or that dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"You can send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", "\n", "######\n", - "{\"_question\": \"How can I contact the USCIS Service Centers to provide information about a priority date becoming current, an EB case being upgraded from EB-3 to EB-2, or dependents being separated from the principal applicant's petition?\", \n", - "\"_answer\": \"You can send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"}\n", + "{\"_question\": \"How can I reach out to the USCIS Service Centers to notify them that the priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"You can email the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Be sure to include the case number and A# of the beneficiary(s). If necessary, attach scans of any notices for the USCIS to review.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the process for notifying the USCIS Service Centers that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\", \n", - "\"_answer\": \"You can reach out to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov via email. Be sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"} \n", + "{\"_question\": \"What is the best way to contact the USCIS Service Centers to inform them that a priority date is current, an EB case has been upgraded from EB-3 to EB-2, or dependents have been separated from the principal applicant's petition?\",\n", + "\"_answer\": \"The best way to contact them is to send an email to the Nebraska Service Center at ncscfollowup.nsc@dhs.gov or the Texas Service Center at tsc.ncscfollowup@uscis.dhs.gov. Make sure to include the case number and A# of the beneficiary(s). If applicable, attach scans of any notices for the USCIS to reference.\"} \n", "\n", "\n", "\n", @@ -2846,16 +2690,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"what do I need to know about accreditation when petitioning for a green card under eb-2 classification?\",\n", - "\"_answer\": \"When petitioning for a green card under the eb-2 classification, the beneficiary must possess a degree from an accredited university. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not sufficient to show accreditation for green card purposes. To determine the accreditation status of a university, you can visit the website http://ope.ed.gov/accreditation/ or watch the video “Accreditation of Distance Education for EB-2” and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "{\"_question\": \"Do individuals petitioned for a green card under the EB-2 classification need to have a degree from an accredited U.S. university?\",\n", + "\"_answer\": \"A degree from an accredited university is required for a beneficiary to be eligible for a green card under the EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirms that the university is a legitimate educational institution, is not enough to show accreditation for green card purposes. To determine a university's accreditation status, please refer to the following website: http://ope.ed.gov/accreditation/. Additionally, you may want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", "\n", "######\n", - "{\"_question\": \"what evidence is required to demonstrate accreditation for green card purposes under eb-2 classification?\",\n", - "\"_answer\": \"In order to demonstrate accreditation for green card purposes under eb-2 classification, the beneficiary must possess a degree from an accredited university. SEVIS certification or state board approval are not sufficient to show accreditation. To determine the accreditation status of a university, you can visit the website http://ope.ed.gov/accreditation/ or watch the video “Accreditation of Distance Education for EB-2” and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", + "{\"_question\": \"Must a beneficiary petitioned for a green card under EB-2 classification have a degree from an accredited U.S. university?\",\n", + "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirms that the university is a legitimate educational institution, is not sufficient to show accreditation for green card purposes. To verify a university's accreditation status, please refer to the following website: http://ope.ed.gov/accreditation/. Additionally, you may want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"}\n", "\n", "######\n", - "{\"_question\": \"what is necessary to show accreditation for green card eligibility under eb-2 classification?\",\n", - "\"_answer\": \"In order to be eligible for a green card under the eb-2 classification, the beneficiary must possess a degree from an accredited university. Evidence such as SEVIS certification or state board approval, which confirm that the university is a legitimate educational institution, is not sufficient to show accreditation for green card purposes. To determine the accreditation status of a university, you can visit the website http://ope.ed.gov/accreditation/ or watch the video “Accreditation of Distance Education for EB-2” and read the transcript at http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", + "{\"_question\": \"Is it mandatory for a beneficiary petitioned for a green card under EB-2 classification to possess a degree from an accredited U.S. university?\",\n", + "\"_answer\": \"Yes, a beneficiary must have a degree from an accredited university to be eligible for a green card under EB-2 classification. Evidence such as SEVIS certification or state board approval, which confirms that the university is a legitimate educational institution, is not adequate to show accreditation for green card purposes. To check a university's accreditation status, please refer to the following website: http://ope.ed.gov/accreditation/. Additionally, you may want to watch the video 'Accreditation of Distance Education for EB-2' and read the transcript: http://www.immigration.com/media/eb2-green-card/accreditation-distance-\"} \n", "\n", "\n", "\n", @@ -2864,16 +2708,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Did I finish my master's degree in one year? I have a master's degree in science and I have been given the final degree certificate by the university. I completed the regular 2 year program in just 1 year. Will USCIS recognize my M.Sc degree?\",\n", - "\"_answer\": \"In this case, the evaluators will have to assess the situation. We have experienced problems with USCIS in similar situations. Evaluation done through the Edge database should be able to convince USCIS.\"}\n", + "{\"_question\": \"Have I been given the final degree certificate after completing a master's degree in one year, even though I finished the conventional 2 year program in a single year?\",\n", + "\"_answer\": \"The evaluators must assess this matter. We have experienced problems with USCIS in similar cases. The evaluation done through the EDGE database should be sufficient to convince USCIS.\"}\n", "\n", "######\n", - "{\"_question\": \"Did I finish my master's program in one year? I have a master's degree in science and I have been given the final degree certificate by the university. I completed the regular 2 year program in just 1 year. Will the USCIS accept my M.Sc degree?\",\n", - "\"_answer\": \"This is where the evaluators come in. We have had difficulties with USCIS in these circumstances. Evaluation done through the Edge database should be able to persuade USCIS.\"}\n", + "{\"_question\": \"I completed a master's degree in science in just one year, although the program is usually two years long. I have been given the final degree certificate by the university. Will USCIS view my M.Sc. degree as incomplete?\",\n", + "\"_answer\": \"This is where the evaluators come in. We have encountered issues with USCIS in these scenarios. The evaluation done through the EDGE database should be enough to persuade USCIS.\"}\n", "\n", "######\n", - "{\"_question\": \"Did I complete my master's degree in one year? I have a master's degree in science and I have been given the final degree certificate by the university. I completed the regular 2 year program in just 1 year. Will USCIS acknowledge my M.Sc degree?\",\n", - "\"_answer\": \"At this point, the evaluators must intervene. We have had issues with USCIS in these situations. Evaluation done through the Edge database should be able to convince USCIS.\"} \n", + "{\"_question\": \"I have a master's degree in science and I have been given the final degree certificate by the university, although I finished the conventional 2 year program in a single year. Will USCIS consider my M.Sc. degree incomplete?\",\n", + "\"_answer\": \"This is where the evaluators need to assess the situation. We have had troubles with USCIS in these types of cases. The evaluation done with the EDGE database should be convincing enough for USCIS.\"} \n", "\n", "\n", "\n", @@ -2882,34 +2726,29 @@ "\n", "\n", "######\n", - "{\"_question\": \"What qualifications are necessary for EB-2 status?\",\n", - "\"_answer\": \"In June 2007, USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree plus one additional year of education. Therefore, the beneficiary would also need to have five years' progressive experience. If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree, it is possible that this would be considered the equivalent to a U.S. master's degree and there would be no need to establish five years' progressive experience. 5. Three-year bachelor's degree + two-year master's degree (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference (EB-2) category. 6. Three-year bachelor's degree + two-year master's degree (India) + five years' progressive, post-master's degree experience generally, the educational degrees would be determined to be the equivalent of a U.S. bachelor's + one year and the beneficiary would meet the statutory requirement. 7. Three-year bachelor's degree + two-year master's degree + one-year postgraduate diploma (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference category (EB-2). If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree or the two-year master's degree, it is possible that this would be considered the equivalent to a U.S. master's degree, and there would be no need to establish five years' progressive experience. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty. The post-baccalaureate experience should reflect increasing or advancing levels of responsibility and knowledge in the specialty. The profession should be an occupation for which a baccalaureate degree or its foreign equivalent is the minimum requirement for the entry in the field.\"}\n", - "\n", + "{\"_question\": \"What qualifications are needed to qualify for EB-2?\",\n", + "\"_answer\": \"In order to qualify for EB-2, the USCIS requires a U.S. Master's degree or its foreign equivalent. This can include a four-year Bachelor's degree plus two-year Master's degree in the same or related fields, a three-year Bachelor's degree plus three-year Master's degree in the same or related fields, a three-year Bachelor's degree plus one-year postgraduate diploma plus two-year Master's degree in the same or similar field, a three-year Bachelor's degree plus two-year Master's degree and five years' progressive post-Master's degree experience, or a three-year Bachelor's degree plus two-year Master's degree plus one-year postgraduate diploma. Evidence must be provided in the form of an official academic record and letters from current or former employers to demonstrate the required experience.\"}\n", "######\n", - "{\"_question\": \"What educational qualifications are needed for EB-2?\",\n", - "\"_answer\": \"In June 2007, USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree plus one additional year of education. Therefore, the beneficiary would also need to have five years' progressive experience. If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree, it is possible that this would be considered the equivalent to a U.S. master's degree and there would be no need to establish five years' progressive experience. 5. Three-year bachelor's degree + two-year master's degree (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference (EB-2) category. 6. Three-year bachelor's degree + two-year master's degree (India) + five years' progressive, post-master's degree experience generally, the educational degrees would be determined to be the equivalent of a U.S. bachelor's + one year and the beneficiary would meet the statutory requirement. 7. Three-year bachelor's degree + two-year master's degree + one-year postgraduate diploma (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference category (EB-2). If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree or the two-year master's degree, it is possible that this would be considered the equivalent to a U.S. master's degree, and there would be no need to establish five years' progressive experience. The petition must include documentation, such as an official academic record showing that the alien has a U.S. advanced degree or a foreign equivalent degree, or an official academic record showing that the alien has a U.S. baccalaureate degree or a foreign equivalent degree and letters from current or former employers showing that the alien has at least five years of progressive post-baccalaureate experience in the specialty. The post-baccalaureate experience should reflect increasing or advancing levels of responsibility and knowledge in the specialty. The profession should be an occupation for which a baccalaureate degree or its foreign equivalent is the minimum requirement for the entry in the field.\"}\n", - "\n", + "{\"_question\": \"What type of degree is needed to be eligible for EB-2?\",\n", + "\"_answer\": \"The USCIS requires a U.S. Master's degree or its foreign equivalent to be eligible for EB-2. This may include a four-year Bachelor's degree plus two-year Master's degree in the same or related fields, a three-year Bachelor's degree plus three-year Master's degree in the same or related fields, a three-year Bachelor's degree plus one-year postgraduate diploma plus two-year Master's degree in the same or similar field, a three-year Bachelor's degree plus two-year Master's degree and five years' progressive post-Master's degree experience, or a three-year Bachelor's degree plus two-year Master's degree plus one-year postgraduate diploma. Documentation must be provided in the form of an official academic record and letters from current or former employers to demonstrate the required experience.\"}\n", "######\n", - "{\"_question\": \"What is the educational criteria for EB-2?\",\n", - "\"_answer\": \"In June 2007, USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree plus one additional year of education. Therefore, the beneficiary would also need to have five years' progressive experience. If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree, it is possible that this would be considered the equivalent to a U.S. master's degree and there would be no need to establish five years' progressive experience. 5. Three-year bachelor's degree + two-year master's degree (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference (EB-2) category. 6. Three-year bachelor's degree + two-year master's degree (India) + five years' progressive, post-master's degree experience generally, the educational degrees would be determined to be the equivalent of a U.S. bachelor's + one year and the beneficiary would meet the statutory requirement. 7. Three-year bachelor's degree + two-year master's degree + one-year postgraduate diploma (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference category (EB-2). If the postgraduate diploma is determined to be \n", + "{\"_question\": \"What is the necessary degree to apply for EB-2?\",\n", + "\"_answer\": \"The USCIS requires a U.S. Master's degree or its foreign equivalent to apply for EB-2. This may comprise a four-year Bachelor's degree plus two-year Master's degree in the same or related fields, a three-year Bachelor's degree plus three-year Master's degree in the same or related fields, a three-year Bachelor's degree plus one-year postgraduate diploma plus two-year Master's degree in the same or similar field, a three-year Bachelor's degree plus two-year Master's degree and five years' progressive post-Master's degree experience, or a three-year Bachelor's degree plus two-year Master's degree plus one-year postgraduate diploma. Evidence must be presented in the form of an official academic record and letters from current or former employers to demonstrate the required experience.\"} \n", "\n", "\n", "\n", "28 \n", "\n", "\n", - "\n", "######\n", - "{\"_question\": \"Is it possible to qualify for EB-2 if the job requires a Bachelor's degree in engineering and 5 years of experience, but the applicant has a diploma, AMIE, and M.Tech degree and 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\",\n", - "\"_answer\": \"It's uncertain if the AMIE degree will be accepted. I remember a decision from the AAO that said they would not recognize the AMIE, but then a more recent decision was a bit more vague. Still, I think it's worth trying for EB-2 as the M.Tech will help.\"}\n", - "\n", + "{\"_question\": \"Is it possible to qualify for EB-2 with a diploma, AMIE and M.Tech, if the job requirement is a Bachelor's in Engineering and 5 years of experience? Would there be any issues with the I-140 if the applicant has 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\", \n", + "\"_answer\": \"It's uncertain if the AMIE will be accepted. I remember an AAO decision that said they wouldn't recognize the AMIE, but a more recent decision was less certain. I think it's worth trying for EB-2 with the M.Tech helping the cause. \"}\n", "######\n", - "{\"_question\": \"Can someone fulfill the requirements for EB-2 if the job demands a Bachelor's in engineering and 5 years of experience but they possess a diploma, AMIE, and M.Tech degree with 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\",\n", - "\"_answer\": \"The AMIE qualification is questionable. I recall an AAO decision that said they would not accept AMIE, but then a more recent decision was less clear. Nevertheless, I think attempting EB-2 is worth a try as the M.Tech should be beneficial.\"}\n", - "\n", + "{\"_question\": \"If the job requires a Bachelor's in Engineering and 5 years of experience, what are the chances of being approved for EB-2 with a diploma, AMIE and M.Tech? Will there be any problems with the I-140 if the individual has 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\", \n", + "\"_answer\": \"The AMIE is questionable. I recall an AAO decision that said they wouldn't accept the AMIE, but a more recent ruling was more uncertain. I believe it is worth attempting EB-2 with the M.Tech helping the cause.\"}\n", "######\n", - "{\"_question\": \"Is it feasible to qualify for EB-2 if the job requires a Bachelor's degree in engineering and 5 years of experience, but the applicant has a diploma, AMIE, and M.Tech degree and 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\",\n", - "\"_answer\": \"The AMIE degree is debatable. I remember an AAO decision that said they would not recognize the AMIE, but then a more recent decision was more ambiguous. Still, I think it's worth attempting EB-2 as the M.Tech will be useful.\"} \n", + "{\"_question\": \"Can an applicant qualify for EB-2 with a diploma, AMIE and M.Tech if the job requires a Bachelor's in Engineering and 5 years of experience? Is there any risk of the I-140 being denied if they have 7 years of experience post M.Tech from a previous employer and 5 years from the current employer?\", \n", + "\"_answer\": \"The AMIE is uncertain. I remember a AAO decision that said they wouldn't accept the AMIE, but a more recent ruling was less definite. I think it is worth trying for EB-2 with the M.Tech assisting the cause.\"} \n", "\n", "\n", "\n", @@ -2918,12 +2757,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB-2 considering I have a 4 year bachelor's degree from India and 7 years experience? My company has applied for GC in EB-3 and my I-140 is approved, with a priority date of September 2010. The company name has changed since then and they are saying the process needs to be restarted from the PERM, but I can keep my same priority date. The lawyers I asked said no, due to my job description stating a bachelor's degree and either 3 or 5 years of experience. Will USCIS deny my application because of this?\",\n", - "\"_answer\": \"Take into consideration the following points: first, a change in the employer's name does not mean the green card process must begin again; second, if the sponsoring employer ceases business operations, USCIS can take away your priority date; and third, the job must necessitate 5 years of experience for eligibility.\"}\n", + "{\"_question\": \"Do I meet the qualifications for EB-2? I have a 4 year bachelor's degree from India and 7 years of experience. My company has applied for a green card in EB-3 and my I-140 has already been approved. My priority date is September 2010. My company's name has changed and they are saying that the process needs to be restarted from the PERM, but I can keep my same priority date. I asked lawyers to see if I'm eligible for EB-2 and they said no. My job description says bachelor's degree and 3 or 5 years of experience, so the lawyers are saying no. Their argument is that the USCIS would deny the application, indicating that the job could be done by someone with 3 years of experience. Am I qualified for EB-2?\",\n", + "\"_answer\": \"Take these points into consideration. First, a change in the name of the employer does not necessitate starting the green card process over again. Second, if the sponsoring employer discontinues business operations, the USCIS may take away your priority date. And, third, the job must require 5 years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 4 year bachelor's degree from India and 7 years experience. My company applied for GC in EB-3 and my I-140 is approved, with a priority date of September 2010. The company name has since changed and they are saying the process needs to be restarted from the PERM, but I can keep my same priority date. The lawyers I asked said no, due to my job description requiring either 3 or 5 years of experience. Am I qualified for EB-2 and will USCIS deny my application for this reason?\",\n", - "\"_answer\": \"Remember these points: first, a change in the employer's name does not mean the green card process must start again; second, if the sponsoring employer stops business operations, USCIS can take away your priority date; and third, the job must necessitate 5 years of experience for qualification.\"} \n", + "{\"_question\": \"Do I qualify for EB-2? I have an Indian bachelor's degree that took 4 years to complete and 7 years of work experience. My employer has applied for a green card under EB-3 and my I-140 has been approved. My priority date is September 2010. My employer's name has been changed and they say the process must be restarted from the PERM, but I can keep the same priority date. I asked lawyers to determine if I am eligible for EB-2 and they said no. The job description states that a bachelor's degree and 3 or 5 years of experience is required, so the lawyers said no. They argue that USCIS would deny the application because the job can be done by someone with 3 years of experience. Am I eligible for EB-2?\",\n", + "\"_answer\": \"Take the following into account. First, a change in the employer's name does not mean the green card process must be restarted. Second, the USCIS may revoke your priority date if the sponsoring employer ceases operations. Lastly, the job must require 5 years of experience.\"} \n", "\n", "\n", "\n", @@ -2932,16 +2771,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Would I be able to start the green card process over again under the EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? What is the process if I decide to do this?\",\n", - "\"_answer\": \"If you have more than 5 years of experience after obtaining a 4-year degree, you may be able to restart the green card process under the EB-2 category and port your priority date. This means you would need to go through the PERM and I-140 steps again for an EB-2 level job.\"}\n", - "\n", - "######\n", - "{\"_question\": \"Can I restart the green card process with an EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? What would the steps be if I decided to do this?\",\n", - "\"_answer\": \"If you have more than 5 years of experience after obtaining a 4-year degree, it may be possible to begin the green card process again with an EB-2 category and port your priority date. This would involve completing the PERM and I-140 again for an EB-2 level job.\"}\n", + "{\"_question\": \"Can I reapply for a green card under the EB-2 category if my labor was initially filed in EB-3 and my priority date is October 2003? I have a Bachelor's degree from India and 8 years of work experience in the US, 5 in India. What is the process for filing a new EB-2?\",\n", + "\"_answer\": \"Individuals with 5+ years of experience after a 4-year degree may be able to start the green card process anew under EB-2 and port their priority date. Essentially, you would need to submit a new PERM and I-140 for an EB-2 level job.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to restart the green card process under the EB-2 category if I have a Bachelor's degree from India and 8 years of work experience in the US? What would I need to do if I chose to do this?\",\n", - "\"_answer\": \"If you have more than 5 years of experience after getting a 4-year degree, it may be possible to restart the green card process under the EB-2 category and port your priority date. This would include going through the PERM and I-140 again for an EB-2 level job.\"} \n", + "{\"_question\": \"Is it possible for me to obtain a green card again using the EB-2 category if I initially applied for an EB-3 and my priority date is October 2003? I have a Bachelor's degree from India and 8 years of experience in the US, 5 in India. What would I need to do to file a new EB-2?\",\n", + "\"_answer\": \"People with more than 5 years of work history after a 4-year degree may be able to restart the green card process under EB-2 and port their priority date. Basically, you would need to submit a new PERM and I-140 for an EB-2 level job.\"} \n", "\n", "\n", "\n", @@ -2949,9 +2784,17 @@ "\n", "\n", "\n", - "######{\"_question\":\"Can you skip the perm requirement when you go through the eb-2 category?\", \"_answer\":\"You can avoid the need for perm if you are eligible for a national interest waiver under the eb-2 category.\"}\n", - "######{\"_question\":\"Is it possible to bypass the perm process when you use the eb-2 category?\", \"_answer\":\"If you are eligible for a national interest waiver under the eb-2 category, you can avoid the need for perm.\"}\n", - "######{\"_question\":\"Can you avoid the perm requirement if you use the eb-2 category?\", \"_answer\":\"You can bypass the perm process if you are eligible for a national interest waiver within the eb-2 category.\"} \n", + "######\n", + "{\"_question\": \"Can you bypass the perm requirement by applying through the EB-2 category?\",\n", + "\"_answer\": \"It is possible to avoid the perm if you are applying for a national interest waiver under the EB-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is there a way to bypass the perm requirement by filing under EB-2?\",\n", + "\"_answer\": \"It is possible to sidestep the perm if you are eligible for a national interest waiver in the EB-2 category.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Is there an alternative to the perm process by filing in the EB-2 category?\",\n", + "\"_answer\": \"You may be able to circumvent the perm if you meet the requirements for a national interest waiver in the EB-2 category.\"} \n", "\n", "\n", "\n", @@ -2960,12 +2803,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"what are the chances of success for an eb-2 application, taking into account a master's equivalency and 5 years progressive experience?\",\n", - "\"_answer\": \"it all depends on the lawyers. ensure that your legal counsel is thorough and has considered every possible outcome. make sure that the job description is accurate and honest.\"}\n", + "{\"_question\": \"what is the best approach to take when it comes to an EB-2 application? Is it more likely to be approved or faster to go with the master's equivalency (BS graduate evaluated in university to be master's equivalent) or the 5 years progressive experience?\",\n", + "\"_answer\": \"It is important to have a lawyer who is thorough and can plan for any potential issues that may arise. Make sure the job is accurately described in the application.\"}\n", + "\n", + "######\n", + "{\"_question\": \"what is the most successful way to submit an EB-2 application? Is it more advantageous to go with the master's equivalency (BS graduate evaluated in university to be master's equivalent) or the 5 years progressive experience?\",\n", + "\"_answer\": \"The lawyer's attention to detail is key. Ensure that the job is accurately represented in the application to the best of your ability.\"}\n", "\n", "######\n", - "{\"_question\": \"which is more likely to be approved faster for an eb-2 application, a master's equivalency or 5 years progressive experience?\",\n", - "\"_answer\": \"the accuracy of the job description and the level of preparation of your lawyers will be the deciding factors. make sure your counsel is very thorough and has covered all contingencies.\"} \n", + "{\"_question\": \"what would be the best way to approach an EB-2 application? Is it more likely to be approved if you go with the master's equivalency (BS graduate evaluated in university to be master's equivalent) or the 5 years progressive experience?\",\n", + "\"_answer\": \"Your lawyer's preparation is critical. Make sure that the job is accurately described in the application to the USCIS.\"} \n", "\n", "\n", "\n", @@ -2974,12 +2821,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to apply for an EB-2 visa with the same employer if I have been working for them for more than 10 years and my prior experience and education from India is equivalent to a US bachelor's degree?\",\n", - "\"_answer\": \"Yes, if the job you are applying for is more than 50% different than the job you were performing with the same employer.\"}\n", + "{\"_question\": \"Is it possible to move from EB-3 to EB-2 with the same employer given my PD is EB-3 from December 2007?\",\n", + "\"_answer\": \"Yes, if the job offered is more than 50% distinct from the job you have been doing with your current employer.\"}\n", + "\n", + "######\n", + "{\"_question\": \"If I have a PD of EB-3 from December 2007 and I have three years of experience with my current employer, can I apply for EB-2 with the same employer?\",\n", + "\"_answer\": \"Yes, it is possible as long as the job you are offered is significantly different from the job you have been doing with the same employer.\"}\n", "\n", "######\n", - "{\"_question\": \"I have been with the same employer for over a decade and I have a PD of December 2007 for EB-3. I have three years of experience from before joining this employer and three plus two years of education from India which is equivalent to a US bachelor's degree. Could I apply for an EB-2 visa with the same employer using the experience gained from them?\",\n", - "\"_answer\": \"Yes, you can if the role you are applying for is more than 50% different than the job you were doing with the same employer.\"} \n", + "{\"_question\": \"Can I switch from EB-3 to EB-2 with the same employer if I have a PD of EB-3 from December 2007 and I have been working for the same employer for three years?\",\n", + "\"_answer\": \"Yes, you can apply for the EB-2 position provided the job duties are more than 50% different than what you have been doing for the same employer.\"} \n", "\n", "\n", "\n", @@ -2988,12 +2839,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I be qualified for the EB-2 visa or is it too soon for green card eligibility? I am a professor at a large US university and have been here for nine months on an H1B. I have 16 years of professional experience in Europe, 20 papers, and one book. Am I eligible for EB2 or would it be too early to apply for the green card?\",\n", - "\"_answer\": \"You are eligible for the EB2 visa and you should submit your application as soon as possible. Professors can reuse existing advertisements if they file the PERM within 18 months of when the job was offered. You should also have your resume evaluated for a concurrent EB1 application.\"}\n", + "{\"_question\": \"Do I have the prerequisites for an EB-2 visa or is it too soon to apply for a green card? I'm currently a professor at a major US university and have been for nine months on an H1B. I have a physicianate and a PhD, sixteen years of professional experience in Europe, twenty papers, and one book. Am I qualified for EB-2 or is it too soon to apply for a green card?\",\n", + "\"_answer\": \"You absolutely qualify for EB-2 and you should submit your application as soon as you can. Professors can re-use existing postings if they filepermwithin eighteen months of when the job was offered to them. You should also have your resume evaluated for a concurrent EB1 application.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for the EB-2 visa or is it too soon to apply for a green card? I'm a professor at a major US university, and I've been here for nine months on an H1B. I have 16 years of professional experience in Europe, 20 papers, and one book. Am I eligible for the EB2 or would it be too early to apply for the green card?\",\n", - "\"_answer\": \"You are eligible for the EB2 visa and you should submit your application as soon as possible. Professors can reuse existing job postings if they file the PERM within 18 months of when the job was offered. Additionally, you should have your resume examined for a concurrent EB1 application.\"} \n", + "{\"_question\": \"Do I meet the criteria for an EB-2 visa or is it too soon to submit for a green card? I am currently a professor at a major US university and have been for nine months on an H1B. I have a doctorate and a PhD, sixteen years of professional experience in Europe, twenty papers, and one book. Am I qualified for EB-2 or is it too soon to file for a green card?\",\n", + "\"_answer\": \"You are definitely qualified for EB-2 and you should make your application as soon as possible. Professorial positions can reuse existing postings if they filepermwithin eighteen months of when the job was offered to them. You should also have your resume checked for a concurrent EB1 application.\"} \n", "\n", "\n", "\n", @@ -3002,11 +2853,15 @@ "\n", "\n", "######\n", - "{\"_question\": \"am i eligible for eb-2 ? i completed my 3 year bachelor of computer science degree in india in june 2005 and started a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while in the middle of my master's degree, i began a full time job in a software company in jan 2006 and got my master of computer applications (3 year degree) in 2008. i worked with the same company in a full time position until dec 2010 (5 years). after that, i moved to the US and have been employed at a US-based company for 7 months as a full time employee (total experience 5 years 7 months). do i meet the requirements for eb-2?\",\n", + "{\"_question\": \"am i eligible for eb-2 ? i finished a three-year bachelor's degree in computer science from india in june 2005. afterwards, i started a master's program in computer applications (m.c.a) in india in august 2005 (3 year program). while still in school, i took a full-time position in a software company in january 2006. i was given my master's degree in computer applications (3 year degree) in 2008, and remained employed with the same company in a full-time role until december 2010 (5 years). after that, i moved to the United States and have been working with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i meet the criteria for eb-2?\",\n", + "\"_answer\": \"you qualify.\"}\n", + "\n", + "######\n", + "{\"_question\": \"am i suitable for eb-2 ? i earned a three-year bachelor of computer science degree from india in june 2005. then i enrolled in a master of computer applications program (m.c.a) in india in august 2005 (3 year program). while still studying, i accepted a full-time job in a software company in january 2006. i was awarded my master of computer applications (3 year degree) in 2008, and worked with the same company in a full-time capacity until december 2010 (5 years). after that, i relocated to the US and am currently employed with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i qualify for eb-2?\",\n", "\"_answer\": \"you qualify.\"}\n", "\n", "######\n", - "{\"_question\": \"am i able to apply for eb-2 ? i earned my 3 year bachelor of computer science degree from india in june 2005 and then started a master of computer applications program (m.c.a) in india in aug 2005 (3 year program). while still doing my master's degree, i started a full time job in a software company in jan 2006. i was given my master of computer applications (3 year degree) in 2008, and stayed with the same company in a full time role until dec 2010 (5 years). after that, i moved to the US and have been employed at a US-based company for 7 months as a full time employee (total experience 5 years 7 months). do i satisfy the requirements for eb-2?\",\n", + "{\"_question\": \"am i eligible for eb-2 ? i attained a three-year bachelor of computer science degree from india in june 2005. then i joined a master of computer applications program (m.c.a) in india in august 2005 (3 year program). while still studying, i obtained a full-time job in a software company in january 2006. i was presented with my master of computer applications (3 year degree) in 2008, and stayed with the same company in a full-time job until december 2010 (5 years). after that, i moved to the US and have been working with a US-based company for 7 months as a full-time employee (total experience 5 years 7 months). do i meet the criteria for eb-2?\",\n", "\"_answer\": \"you qualify.\"} \n", "\n", "\n", @@ -3016,16 +2871,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the odds of me obtaining an EB2 visa with my qualifications? I have a B.Sc. from Israel (06/2002), and from 10/2002 I was working as a QA engineer at the same time I was studying for my M.Sc. I stopped my M.Sc. in the middle and joined the company I am currently working for. After three years, I was relocated to the US. I have been living in the US for four years and am now considering applying for a green card. The law firm my company works with believes I should apply for an EB3 visa. What are my chances of getting an EB2 visa with my B.Sc. from Israel, plus 1.5 years as a QA engineer in Israel, three years of development in Israel, and four years of development in the US?\",\n", - "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree in order to be eligible for an EB2 visa, and incomplete degrees are not accepted.\"}\n", + "{\"_question\": \"What are the odds of me obtaining an EB2 visa with my qualifications? I have a Bachelor's degree from Israel, which I obtained in 2002. At the same time, I started a Master's degree and was working as a QA Engineer for 1.5 years. I stopped my Master's degree and joined the company I am currently working for. After three years, I was relocated to the United States and have been here for four years. My company's legal team believes that I should apply for an EB3 visa. What are my chances of getting an EB2 visa with my qualifications?\", \n", + "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree. Unfinished degrees are not eligible for an EB2 visa.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the prospects of me being granted an EB2 visa with my educational background? I earned my B.Sc. from Israel in 06/2002, and at the same time I was working as a QA engineer and studying for my M.Sc. I abandoned my M.Sc. and joined the company I am still employed with. After three years, I was relocated to the US, and I have been living here for four years. I am now thinking of applying for a green card. The law firm that my company works with thinks I should apply for an EB3 visa. How likely is it that I will be given an EB2 visa with my B.Sc. from Israel, plus 1.5 years of QA engineering in Israel, three years of development in Israel, and four years of development in the US?\",\n", - "\"_answer\": \"Your degree must be equal to a US Bachelor's degree in order to get an EB2 visa, and incomplete degrees are not considered.\"}\n", - "\n", - "######\n", - "{\"_question\": \"What are the chances of me obtaining an EB2 visa given my educational background? I obtained a B.Sc. from Israel in 06/2002, and simultaneously I was working as a QA engineer and studying for my M.Sc. I gave up my M.Sc. and joined the company I am still working with. After three years, I was relocated to the US, and I have been living here for four years. I am now contemplating applying for a green card. The law firm that my company works with believes I should apply for an EB3 visa. What are the odds of me getting an EB2 visa with my B.Sc. from Israel, plus 1.5 years of QA engineering in Israel, three years of development in Israel, and four years of development in the US?\",\n", - "\"_answer\": \"Your degree must be equivalent to a US Bachelor's degree in order to be eligible for an EB2 visa, and incomplete degrees are not accepted.\"} \n", + "{\"_question\": \"What is the likelihood that I will receive an EB2 visa? I got my Bachelor's from Israel in 2002 and at the same time I began a Master's program and was employed as a QA Engineer for 1.5 years. I put a halt to my Master's and joined the firm I am currently employed with. After three years, I was relocated to the United States and have been here for four years. My company's legal team believes that I should go for an EB3 visa. What are the chances that I will get an EB2 visa with my qualifications?\", \n", + "\"_answer\": \"Your degree must be comparable to a US Bachelor's degree. Unfinished degrees do not qualify for an EB2 visa.\"} \n", "\n", "\n", "\n", @@ -3034,16 +2885,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can my past experience be used for an EB-2 qualification?\",\n", - "\"_answer\": \"It is not necessary to have continuous employment, but if the job you had before and the job you will have after the green card are more than 50% different, then the experience can be counted.\"}\n", + "{\"_question\": \"How does my prior experience factor in for EB-2?\", \n", + "\"_answer\": \"You can use the experience with the same employer only if the job you used to perform and the job you will perform after the green card are more than 50% different, but continuous employment is not a requirement.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible to use my previous work experience for an EB-2?\",\n", - "\"_answer\": \"Continuous employment is not a requirement, but if the job duties you had prior to and after the green card are more than 50% distinct, then the experience can be considered.\"}\n", + "{\"_question\": \"For EB-2, can I count the years of experience prior to rejoining my current employer?\", \n", + "\"_answer\": \"Yes, as long as the job you used to perform and the job you will perform after the green card are more than 50% different, you can use the experience with the same employer even if you have not been continuously employed.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to use my prior work experience for an EB-2?\",\n", - "\"_answer\": \"No need for continuous employment, but if the job you did before and the job you will do after the green card are more than 50% different, then the experience can be taken into account.\"} \n", + "{\"_question\": \"Do I need to have been continuously employed for my prior experience to count for EB-2?\", \n", + "\"_answer\": \"No, you can still use the experience with the same employer if the job you used to perform and the job you will perform after the green card are more than 50% different.\"} \n", "\n", "\n", "\n", @@ -3052,16 +2903,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to preserve my priority date if I switch to a new company (B) after the I-140 application was approved on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 is in its 8th year expiring on May 12th, 2021?\",\n", - "\"_answer\": \"Yes, you can retain your priority date as long as the sponsoring employer does not revoke your I-140, go out of business and USCIS does not revoke the I-140 or the I-140 for fraud.\"}\n", + "{\"_question\": \"Can I keep my priority date if I move to a new company after my I-140 application was approved on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 visa is in its 8th year expiring on May 12th, 2021?\",\n", + "\"_answer\": \"Yes, you can retain your priority date as long as the original sponsoring employer does not revoke your I-140, go out of business, and the USCIS does not revoke the I-140 for fraud.\"}\n", "\n", "######\n", - "{\"_question\": \"If I transition to a different company (B) after my I-140 application was accepted on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 is in its 8th year ending on May 12th, 2021, can I still keep my priority date from my current company (A)?\",\n", - "\"_answer\": \"Yes, you can maintain your priority date as long as the sponsoring employer does not cancel your I-140, go bankrupt and USCIS does not cancel the I-140 or the I-140 for fraud.\"}\n", + "{\"_question\": \"If I switch jobs after my I-140 approval on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 visa is in its 8th year expiring on May 12th, 2021, can I preserve my priority date from my current company?\",\n", + "\"_answer\": \"Yes, you may retain your priority date provided that the sponsoring employer does not revoke your I-140, the business does not close, and the USCIS does not revoke the I-140 for fraud.\"}\n", "\n", "######\n", - "{\"_question\": \"After I-140 approval on August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 in its 8th year expiring on May 12th, 2021, am I able to keep my priority date if I move to another company (B)?\",\n", - "\"_answer\": \"Yes, you can retain your priority date provided that the sponsoring employer does not revoke your I-140, go out of business and USCIS does not revoke the I-140 or the I-140 for fraud.\"} \n", + "{\"_question\": \"I have an I-140 approval from August 8th, 2008 with an EB2 priority date of March 7th, 2008 and my H-1 visa is in its 8th year expiring on May 12th, 2021. If I switch jobs, can I still keep my priority date from my current company?\",\n", + "\"_answer\": \"Yes, you can maintain your priority date as long as the sponsoring employer does not cancel your I-140, the business does not shut down, and the USCIS does not revoke the I-140 for fraudulent reasons.\"} \n", "\n", "\n", "\n", @@ -3070,16 +2921,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the costs associated with an employment-based green card application in the EB2 category?\",\n", - "\"_answer\": \"The employer is required by law to pay for all costs related to the PERM process, but not the remainder of the green card application.\"}\n", + "{\"_question\": \"What costs are the employer responsible for with regards to an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer is obligated to pay for all expenses related to the PERM process, such as attorney's fees, filing fees, advertising fees, EAD, and advance parole fees.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the responsibility of the employer with regards to expenses related to an EB2 green card application?\",\n", - "\"_answer\": \"The employer is obligated to cover all costs associated with the PERM process, but not the other parts of the green card application.\"}\n", + "{\"_question\": \"Is it permissible for the employee to cover the costs of the entire green card process, including attorney's fees, filing fees for all stages, advertising fees, EAD, and advance parole fees?\",\n", + "\"_answer\": \"No, the employer is responsible for paying for all costs associated with the PERM process, but not the rest of the green card process.\"}\n", "\n", "######\n", - "{\"_question\": \"My employer has agreed to make an EB2 green card application, but they want me to cover the expenses. What are the financial obligations of the employer in this situation?\",\n", - "\"_answer\": \"The employer is legally mandated to pay for all expenses related to the PERM process, but not the other stages of the green card application.\"} \n", + "{\"_question\": \"What expenses are the employer required to pay for in regards to an employment-based green card application in the EB2 category?\",\n", + "\"_answer\": \"The employer must cover all costs related to the PERM process, such as attorney's fees, filing fees, advertising fees, EAD, and advance parole fees.\"} \n", "\n", "\n", "\n", @@ -3088,12 +2939,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB-2 if I have a 3 year Bachelor's degree in Computer Science, 2 year Master's degree in Information Technology, and have been working since January 2000?\",\n", - "\"_answer\": \"Yes, you could qualify for EB-2 with a Bachelor's degree plus 5 years of progressive experience.\"}\n", + "{\"_question\": \"Do I meet the requirements for an EB-2 visa given my educational background and work experience?\",\n", + "\"_answer\": \"Yes, you may qualify for an EB-2 visa with a bachelor's degree plus five years of progressive experience.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3 year Bachelor's degree in Computer Science and a 2 year Master's degree in Information Technology, and I have been employed since January 2000. Am I eligible for EB-2?\",\n", - "\"_answer\": \"Yes, your qualifications would meet the criteria for EB-2 with a Bachelor's degree plus 5 years of progressive experience.\"} \n", + "{\"_question\": \"Do I have the qualifications for an EB-2 visa based on my education and professional history?\",\n", + "\"_answer\": \"You could be eligible for an EB-2 visa with a bachelor's degree and five years of progressive work.\"} \n", "\n", "\n", "\n", @@ -3102,12 +2953,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I include skills I acquired after working for the company sponsoring my green card in the job description for the EB-2? I have been with the company for 2.5 years and some of the requirements for the job were achieved while I was there.\",\n", - "\"_answer\": \"It is permissible to use these after-acquired abilities as long as the job before and the green card job are more than 50% different.\"}\n", + "{\"_question\": \"Can I include experiences/skills I've acquired while working with the company sponsoring my green card on the job description for the EB-2? Do I have to have already acquired the skills before?\",\n", + "\"_answer\": \"It is possible to use the skills you have acquired after starting your job if the two roles are more than 50% different.\"}\n", + "\n", + "######\n", + "{\"_question\": \"What if I want to use the skills I learned while working with the company sponsoring my green card for the job description of the EB-2? Do I need to have obtained the skills beforehand?\",\n", + "\"_answer\": \"You can utilize the skills you have obtained since beginning your job if the two positions differ by more than 50%.\"}\n", "\n", "######\n", - "{\"_question\": \"If I've been with the company sponsoring my green card for the past 2.5 years and some of the requirements of the job I'm applying for were acquired while I was there, can I include them in the job description for the EB-2?\",\n", - "\"_answer\": \"You may list these newly acquired skills as long as the job prior and the green card job are more than 50% dissimilar.\"} \n", + "{\"_question\": \"Can I include the experiences/skills I gained while working with the company sponsoring my green card on the job description for the EB-2? Must I have already acquired the skills before?\",\n", + "\"_answer\": \"It is possible to use the skills you have acquired after beginning your job if the two roles differ by more than 50%.\"} \n", "\n", "\n", "\n", @@ -3116,16 +2971,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible to commence the green card process with my current employer while I am on OPT status? Can I apply for EB2? I have two years of IT experience in India. If not, do I have to wait for H1B? Does the green card process depend on H1B?\",\n", - "\"_answer\": \"This inquiry necessitates your attorneys to evaluate the case. Generally, nothing hinders you from filing a PERM application while on OPT and an EB2 appears feasible.\"}\n", + "{\"_question\": \"Can I apply for a green card while on OPT status? I recently graduated with my master's degree and have been working at my current company for two months. Is it necessary for me to wait until I receive my H1B before I can file a green card application, or can I file now? I have two years of IT experience in India.\",\n", + "\"_answer\": \"This is something that needs to be evaluated by your lawyer. Generally, you can submit a PERM application while on OPT, and an EB2 is a possibility.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I begin the green card process with my present employer while I am in OPT status? Is it possible to file for EB2? I have two years of IT background in India. If not, do I have to wait until I get H1B? Is the green card process dependent on H1B?\",\n", - "\"_answer\": \"This query requires your lawyers to assess the case. In general, nothing stops you from submitting a PERM application while on OPT and an EB2 appears possible.\"}\n", + "{\"_question\": \"Am I eligible to apply for a green card with my current employer while I'm in OPT status? I finished my master's degree last summer and have been employed for two months. Do I need to wait until I get my H1B to start the green card process, or can I file now? I have two years of IT experience in India.\",\n", + "\"_answer\": \"This is something that your lawyer would need to assess. Generally speaking, you can submit a PERM application while on OPT and an EB2 is likely a possibility.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified to initiate the green card process with my current employer while I am on OPT status? Can I apply for EB2? I have two years of IT experience in India. If not, do I have to wait for H1B? Is the green card process contingent on H1B?\",\n", - "\"_answer\": \"This inquiry necessitates your attorneys to examine the case. Generally, nothing obstructs you from filing a PERM application while on OPT and an EB2 appears viable.\"} \n", + "{\"_question\": \"Can I file for a green card while I'm on OPT status? I recently graduated with my master's degree and have been with my current employer for two months. Is it necessary for me to wait until I receive my H1B before I can submit a green card application, or can I file now? I have two years of IT experience in India.\",\n", + "\"_answer\": \"This requires your lawyer to evaluate the case. Generally, you can put in a PERM application while on OPT and an EB2 is likely an option.\"} \n", "\n", "\n", "\n", @@ -3134,16 +2989,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch from EB3 to EB2 category?\",\n", - "\"_answer\": \"Yes, it is possible to transfer your green card status from EB3 to EB2, however, the process must be restarted from the beginning.\"}\n", + "{\"_question\": \"Can I change my green card category from EB3 to EB2?\",\n", + "\"_answer\": \"Yes, it is possible to switch your green card category from EB3 to EB2, however the process must start again from PERM.\"}\n", "\n", "######\n", - "{\"_question\": \"Is there a way to move from EB3 to EB2?\",\n", - "\"_answer\": \"Yes, it is achievable to change your green card status from EB3 to EB2, however, the application must be restarted from the start.\"}\n", + "{\"_question\": \"Is it feasible to switch my EB3 green card to EB2?\",\n", + "\"_answer\": \"Yes, it is achievable to alter your EB3 green card to EB2, but the process has to be initiated again from PERM.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I change my category from EB3 to EB2?\",\n", - "\"_answer\": \"Yes, it is possible to alter your green card status from EB3 to EB2, but the procedure must be restarted from perm.\"} \n", + "{\"_question\": \"Is it doable to alter my EB3 green card to EB2?\",\n", + "\"_answer\": \"Yes, it is possible to modify your EB3 green card to EB2, however the procedure must commence again from PERM.\"} \n", "\n", "\n", "\n", @@ -3152,16 +3007,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"is it possible to apply for a green card in the eb-2 category? i have a BSc from India and a two year diploma from NIIT, which is considered a master's degree in H1 and L1. I have ten years of experience. Can I apply for a green card in the eb-2 category?\",\n", - "\"_answer\": \"It's hard to say, diplomas can be tricky. It's unlikely you'll be able to get a green card in the eb-2 category.\"}\n", + "{\"_question\": \"is it possible to submit an application for green card under eb-2 category? i have a bsc degree from india and a 2 year diploma from niit (in h1 and l1 they treated my diploma as a master's degree). i also have 10 years of experience. can i submit a green card application under eb-2 category?\", \n", + "\"_answer\": \"it is difficult to tell with a diploma. i don't think eb-2 is likely.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for a green card in the eb-2 category? I have a Bachelor's from India and a two year diploma from NIIT, which is considered a master's degree in H1 and L1. I have ten years of experience. Am I able to get a green card in the eb-2 category?\",\n", - "\"_answer\": \"It's unpredictable with diplomas. It doesn't seem likely that you can get a green card in the eb-2 category.\"}\n", + "{\"_question\": \"am i able to apply for a green card in the eb-2 category? i have a bsc from india and a 2 year diploma from niit (in h1 and l1 they counted my diploma as a master's degree). i have 10 years of experience. am i able to apply for a green card in the eb-2 category?\", \n", + "\"_answer\": \"it is hard to say with a diploma. i don't think eb-2 is viable.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I get a green card in the eb-2 category? I have a Bachelor's from India and a two year diploma from NIIT, which is considered a master's degree in H1 and L1. I have ten years of experience. Is it possible to apply for a green card in the eb-2 category?\",\n", - "\"_answer\": \"It's hard to tell with diplomas. It's unlikely you'll be able to get a green card in the eb-2 category.\"} \n", + "{\"_question\": \"am i qualified to apply for a green card in eb-2 category? i possess a bsc from india and a 2 year diploma from niit (in h1 and l1 they considered my diploma as a master degree). i also have 10 years of experience. am i eligible to apply for a green card in eb-2 category?\", \n", + "\"_answer\": \"it is hard to predict with a diploma. i don't think eb-2 is feasible.\"} \n", "\n", "\n", "\n", @@ -3170,15 +3025,15 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Engineering (4 years) in Computer Science from India and 7.5 years of experience in the relevant field. Can I apply for a Green Card in the EB2 category?\",\n", - "\"_answer\": \"It looks like you are qualified for EB-2.\"}\n", + "{\"_question\":\"Can I be eligible for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Am I eligible to apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"It looks like you meet the requirements for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified to apply for EB2? I possess a Bachelor of Engineering (4 years) in Computer Science from India and have 7.5 years of experience in the related field. Can I submit an application for a Green Card in the EB2 group?\",\n", - "\"_answer\": \"It appears that you are eligible for EB-2.\"}\n", + "{\"_question\":\"Do I qualify for EB2? I possess a Bachelor's degree in Computer Science from India and 7.5 years of experience in the related field. Am I allowed to apply for a Green Card in the EB2 category?\",\n", + "\"_answer\": \"It appears you are eligible for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify to apply for EB2? I hold a Bachelor of Engineering (4 years) in Computer Science from India and have 7.5 years of experience in the related area. Am I able to apply for a Green Card in the EB2 category?\",\n", + "{\"_question\":\"Do I meet the criteria for EB2? I have a Bachelor's degree in Computer Science from India and 7.5 years of experience in the same field. Can I submit an application for a Green Card in the EB2 category?\",\n", "\"_answer\": \"You seem to be qualified for EB-2.\"} \n", "\n", "\n", @@ -3188,16 +3043,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for the EB-2 category? I am currently employed as a mechanical engineer for a large company and am transitioning to a product development engineer role within the same company. The job requires a BS degree plus two to five years of experience. I have a bachelor's degree that took four years to complete, a master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer. Is this sufficient to qualify for the EB-2 category?\",\n", - "\"_answer\": \"The minimum requirements for the job are two years of experience, so you do not qualify for EB-2.\"}\n", + "{\"_question\": \"Am I eligible for the EB-2 category? I am currently employed as a Mechanical Engineer at one of the largest companies and I am transitioning to a Product Development Engineer role within the same company. The job requirements are a Bachelor's degree plus 2-5 years of experience. I have a Bachelor's degree of 4 years, a Master's degree from the US, 1 year and 4 months of research assistant experience, 10 months of teaching assistant experience, and 3 years and 7 months of experience as a Mechanical Engineer. \",\n", + "\"_answer\": \"You meet the minimum requirements for the job which is 2 years of experience, so you are eligible for the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for the EB-2 category? I'm currently employed as a mechanical engineer at a large company and am transitioning to a product development engineer role within the same company. The job requires a Bachelor's degree plus two to five years of experience. I have a Bachelor's degree that took four years to complete, a Master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer. Am I eligible for the EB-2 category?\",\n", - "\"_answer\": \"The job has a minimum requirement of two years of experience, so you do not qualify for EB-2.\"}\n", + "{\"_question\": \"Do I qualify for the EB-2 category? I have been working as a Mechanical Engineer at one of the biggest companies and am now transitioning to a Product Development Engineer role with the same company. The job requirements are a Bachelor's degree and 2-5 years of experience. My educational background includes a Bachelor's degree of 4 years, a Master's degree from the US, 1 year and 4 months of research assistant experience, 10 months of teaching assistant experience, and 3 years and 7 months of experience as a Mechanical Engineer. \",\n", + "\"_answer\": \"You fulfill the minimum requirements for the job which is 2 years of experience, so you are eligible for the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB-2 category? I am currently employed as a mechanical engineer for a major company and am transitioning to a product development engineer role in the same company. The job requires a BS degree plus two to five years of experience. I have a bachelor's degree that took four years to complete, a master's degree from the US, one year and four months of research assistant experience, ten months of teaching assistant experience, and three years and seven months of experience as a mechanical engineer. Do I meet the criteria for the EB-2 category?\",\n", - "\"_answer\": \"The job has a minimum requirement of two years of experience, so you are not eligible for EB-2.\"} \n", + "{\"_question\": \"Am I qualified for the EB-2 category? I have been employed as a Mechanical Engineer at one of the largest companies and am now transitioning to a Product Development Engineer role in the same company. The job requires a Bachelor's degree and 2-5 years of experience. My educational background includes a Bachelor's degree of 4 years, a Master's degree from the US, 1 year and 4 months of research assistant experience, 10 months of teaching assistant experience, and 3 years and 7 months of experience as a Mechanical Engineer. \",\n", + "\"_answer\": \"You meet the minimum qualifications for the job which is 2 years of experience, so you are eligible for the EB-2 category.\"} \n", "\n", "\n", "\n", @@ -3206,16 +3061,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB-2 visa if I have a 3-year bachelor's degree in computer science and a 2-year master's degree in computer science from India?\",\n", - "\"_answer\": \"It is a possibility, however your lawyer must decide which option is best for you: assess the two qualifications to be equal to a bachelor's degree and use a bachelor's degree plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", + "{\"_question\": \"Can I apply for an EB-2 visa with a bachelor's degree in computer science and a master's degree in computer science from India?\",\n", + "\"_answer\": \"It is a possibility, however your legal representative must evaluate which approach is the best for you: appraise the two degrees to be equal to a bachelor's and use the bachelor's plus 5 years of experience for EB-2 or just use the master's degree (risky).\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3-year bachelor's degree in computer science and a 2-year master's degree in computer science from India. Is it possible to apply for an EB-2 visa?\",\n", - "\"_answer\": \"It is possible, but your attorney must determine which path is best for you: evaluate the two degrees to be equivalent to a bachelor's degree and use a bachelor's degree plus 5 years for EB-2 or just use the master's degree (risky).\"}\n", + "{\"_question\": \"If I have a 3 year bachelor's degree in computer science and a 2 year master's degree in computer science from India, is it feasible to apply for an EB-2 visa?\",\n", + "\"_answer\": \"It is possible, but your lawyer must assess which course is the ideal one for you: assess the two degrees to be equivalent to a bachelor's and use the bachelor's plus 5 years of experience for EB-2 or just use the master's degree (risky).\"}\n", "\n", "######\n", - "{\"_question\": \"I have a 3-year bachelor's degree in computer science and a 2-year master's degree in computer science from India. What are my options for an EB-2 visa?\",\n", - "\"_answer\": \"Your lawyer must decide which route is best for you: assess the two qualifications to be equal to a bachelor's degree and use a bachelor's degree plus 5 years for EB-2 or just use the master's degree (risky).\"} \n", + "{\"_question\": \"If I have a 3 year bachelor's degree in computer science and a 2 year master's degree in computer science from India, can I apply for an EB-2 visa?\",\n", + "\"_answer\": \"It is a possibility, however your legal representative must determine which route is the best for you: evaluate the two degrees to be equal to a bachelor's and use the bachelor's plus 5 years of experience for EB-2 or just use the master's degree (risky).\"} \n", "\n", "\n", "\n", @@ -3224,16 +3079,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB-2? I have a 4-year bachelor's degree in civil engineering and have documented experience in the IT industry for the past 13 years with progressive experience. Can I qualify for EB2 or EB3?\",\n", - "\"_answer\": \"It is possible to qualify for EB2\"}\n", + "{\"_question\": \"Do I fulfill the requirements for EB-2 eligibility with a four-year degree in civil engineering and 13 years of documented progressive experience in the IT industry?\",\n", + "\"_answer\": \"Yes, you can qualify for EB2\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB-2? I have a Bachelor's Degree in Civil Engineering and I have been working in the IT field for 13 years with a record of progressive experience. Can I be eligible for EB2 or EB3?\",\n", - "\"_answer\": \"You could be eligible for EB2\"}\n", + "{\"_question\": \"Does my educational background and professional experience meet the criteria for EB2 status?\",\n", + "\"_answer\": \"Yes, you meet the requirements for EB2\"}\n", "\n", "######\n", - "{\"_question\": \"Do I fit the criteria for EB-2? I have a Bachelor of Civil Engineering and have spent the last 13 years in the IT industry with a history of progressive experience. Could I qualify for EB2 or EB3?\",\n", - "\"_answer\": \"It is possible to qualify for EB2\"} \n", + "{\"_question\": \"Am I eligible for EB2 based on my four-year degree in civil engineering and 13 years of documented progress in IT?\",\n", + "\"_answer\": \"Yes, EB2 is possible\"} \n", "\n", "\n", "\n", @@ -3242,31 +3097,34 @@ "\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I have a two-year Bachelor of Commerce degree from my home country and a Chartered Accountant (CA) qualification. I have 10 years of accounting experience plus a Certified Public Accountant (CPA). My firm's lawyers refused to file for an EB-2 visa and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed for an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a Bachelor of Business Administration (Accounting and Finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS will not consider the CA.\",\n", - "\"_answer\": \"Your lawyers are right that the CA is not accepted as education by USCIS. Consult a credentials evaluation agency about potential master's degrees.\"}\n", + "{\"_question\": \"What kind of degree do I need for USCIS to accept my credentials? I have a two year B.Com from my home country, a Chartered Accountant certification, and ten years of accounting experience. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even from the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA.\", \n", + "\"_answer\": \"Your lawyers are correct that a CA is not accepted as education by USCIS. Speak with a credentials evaluation agency about master's degrees.\"}\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I possess a two-year Bachelor of Commerce from my home country and a Chartered Accountant (CA) certification. I have 10 years of accounting experience and a Certified Public Accountant (CPA). My firm's lawyers refused to file for an EB-2 visa and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed for an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a Bachelor of Business Administration (Accounting and Finance) based on my B.Com and CA. However, the lawyers asserted that for the green card process, USCIS will not consider the CA.\",\n", - "\"_answer\": \"Your lawyers are accurate that the CA is not accepted as education by USCIS. Speak to a credentials evaluation agency about potential master's degrees.\"}\n", + "{\"_question\": \"What qualifications do I need for USCIS to approve my credentials? I have a two year B.Com from my homeland, a Chartered Accountant certification, and ten years of accounting experience. My firm's lawyers declined to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even from the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA.\", \n", + "\"_answer\": \"Your lawyers are correct that a CA is not accepted as education by USCIS. Consult with a credentials evaluation agency about master's degrees.\"}\n", "\n", "######\n", - "{\"_question\": \"What about accredited degrees? I have a two-year Bachelor of Commerce from my home country and a Chartered Accountant (CA) qualification. I have 10 years of accounting experience plus a Certified Public Accountant (CPA). My firm's lawyers refused to file for an EB-2 visa and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even the same university) who filed for an EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a Bachelor of Business Administration (Accounting and Finance) based on my B.Com and CA. But the lawyers insisted that for the green card process, USCIS will not consider the CA.\",\n", - "\"_answer\": \"Your lawyers are correct that the CA is not accepted as education by USCIS. Consult a credentials evaluation agency about potential master's degrees.\"} \n", + "{\"_question\": \"What type of credentials do I need for USCIS to accept? I have a two year B.Com from my home country, a Chartered Accountant certification, and ten years of accounting experience. My firm's lawyers refused to file an EB-2 and insisted on an EB-3. I know two people from another accounting firm with the same credentials (even from the same university) who filed EB-2 and got their green cards. When I got my H1B, I got my foreign credentials evaluated and received equivalence to a BBA in Accounting and Finance based on my B.Com and CA.\", \n", + "\"_answer\": \"Your lawyers are correct that a CA is not accepted as education by USCIS. Speak to a credentials evaluation agency about master's degrees.\"} \n", "\n", "\n", "\n", "50 \n", "\n", "\n", + "\n", "######\n", - "{\"_question\": \"Can I switch jobs and submit the PERM and I-140 under EB-2? Can I instead file the PERM and I-140 under EB2 with a new employer, rather than EB3 with the current one? How risky is the situation? I can stay with my current employer, but it will take another three years to get my GC under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can submit the I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't see any issues with transferring the priority date if you file an EB-2 through a new employer. As far as the risk is concerned, that should be evaluated by your lawyers.\"}\n", + "{\"_question\": \"Is it possible to move to a new job and file for a green card through the EB-2 category? What potential risks are involved if I stay with my current employer and wait for the EB-3 process to finish, which could take another three years?\", \n", + "\"_answer\": \"It is possible to submit an I-485 when your priority date becomes current (and then receive an EAD). Priority dates are reported in the Visa Bulletin. There should be no problem transferring the priority date if you use the EB-2 category with a new employer. As far as risks, that should be evaluated by your legal advisors.\"}\n", + "\n", "######\n", - "{\"_question\": \"Is it possible to change jobs and submit the PERM and I-140 under EB-2? Can I instead file the PERM and I-140 under EB2 with a new employer, instead of EB3 with the current one? How dangerous is the situation? I can remain with my current employer, but it will take another three years to get my GC under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can file the I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't observe any problems with transferring the priority date if you file an EB-2 through a new employer. As for the risk, that should be evaluated by your lawyers.\"}\n", + "{\"_question\": \"Can I switch jobs and file the PERM and I-140 under EB-2? Is it risky to stay with my current employer and wait for my green card to be processed through EB-3, which could take three more years?\", \n", + "\"_answer\": \"You can submit the I-485 when your priority date becomes available (and then receive an EAD). Priority dates are reported in the Visa Bulletin. There should be no issue transferring the priority date if you file an EB-2 through a new employer. As far as the risk, that should be discussed with your lawyers.\"}\n", + "\n", "######\n", - "{\"_question\": \"Am I able to switch jobs and file the PERM and I-140 under EB-2? Can I file the PERM and I-140 under EB2 with a new employer, instead of EB3 with the current one? How hazardous is the situation? I can stay with my current employer, but it will take another three years to get my GC under EB3. My priority date is February 2007.\",\n", - "\"_answer\": \"You can submit the I-485 in the month when your priority date becomes current (and then get EAD). Priority dates are reported in the Visa Bulletin. I don't notice any issues with transferring the priority date if you file an EB-2 through a new employer. As for the risk, that should be evaluated by your lawyers.\"} \n", + "{\"_question\": \"Can I switch jobs and use the EB-2 category to file for a green card? What are the potential risks if I stay with my current employer and wait for the EB-3 process to finish, which could take another three years?\", \n", + "\"_answer\": \"It is possible to file an I-485 when your priority date becomes current (and then get an EAD). Priority dates are reported in the Visa Bulletin. There is no problem carrying the priority date forward if you use the EB-2 category with a new employer. As to the risk, that should be evaluated by your attorneys.\"} \n", "\n", "\n", "\n", @@ -3275,16 +3133,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Could I be eligible for an EB-2 visa with my qualifications and experience? If I decide to change employers during the application process, will I have to restart the GC process from the beginning?\",\n", - "\"_answer\": \"It is possible that you may qualify for EB-2 depending on your qualifications and job requirements. If you leave before the I-140 is approved, you will not receive any benefit from the process. However, if you leave after the I-140 is approved, you can transfer your priority date to the new employer.\"}\n", + "{\"_question\": \"Can I qualify for EB-2 if I have a Master's in Biomedical Engineering and work as a Senior Consultant in a company that implements EQMS for Biologics, Medical Device and Pharma companies?\",\n", + "\"_answer\": \"It depends on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not receive any benefit from the process. However, if you leave after the I-140 is approved, you will be able to keep your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Master's degree in Biomedical Engineering and I am working as a Senior Consultant in a company that implements EQMS for biologics, medical devices, and pharma companies. Could I get an EB-2 visa with this experience? If I move to a new employer, will I have to restart the Green Card process?\",\n", - "\"_answer\": \"You may be eligible for an EB-2 visa depending on your qualifications and job requirements. If you leave before the I-140 is approved, you will not benefit from the process. However, if you leave after the I-140 is approved, you can transfer your priority date to the new employer.\"}\n", + "{\"_question\": \"I have a Master's in Biomedical Engineering and I am a Senior Consultant for a firm that creates EQMS for Biologics, Medical Device and Pharma companies. Is it possible for me to get an EB-2 visa?\",\n", + "\"_answer\": \"It depends on your qualifications and the job requirements. If you depart before the I-140 is approved, you may not get anything from the process. But if you leave after the I-140 is approved, you can keep your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a Master's degree in Biomedical Engineering and I am employed as a Senior Consultant in a company that implements EQMS for biologics, medical devices, and pharma companies. If I apply for a Green Card, will I qualify for an EB-2 visa? If I switch employers during the application process, will I have to start the GC process over?\",\n", - "\"_answer\": \"You may be eligible for an EB-2 visa depending on your qualifications and job requirements. If you decide to leave before the I-140 is approved, you will not gain anything from the process. However, if you leave after the I-140 is approved, you can take your priority date to the new employer.\"} \n", + "{\"_question\": \"I have a Master's in Biomedical Engineering and I am a Senior Consultant for a firm that creates EQMS for Biologics, Medical Device and Pharma companies. If I apply for my green card, would it qualify for EB-2?\",\n", + "\"_answer\": \"It is possible for you to qualify for EB-2 depending on your qualifications and the job requirements. If you leave before the I-140 is approved, you may not gain anything from the process. However, if you leave after I-140 approval, you can keep your priority date.\"} \n", "\n", "\n", "\n", @@ -3293,16 +3151,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch jobs after my I-140 is approved? I am in the 5th year of my H1 visa. My current employer has filed for my PERM under EB-3 category since I didn't have 5 years experience before (EB-3 has 6 years backlog, but EB-2 queue is current for me). Can I wait for my I-140 approval, get a 3 year extension with my current employer and then change jobs? Will I be able to get 3 more years on H1 with a future employer?\",\n", - "\"_answer\": \"It is possible and common for a new employer to extend your H-1 visa based on the I-140 approval of your previous employer. You should discuss the details with a lawyer.\"}\n", + "{\"_question\": \"Can I change jobs after I-140 approval? I'm in my fifth year of H1. My employer has filed a PERM under the EB-3 category since I didn't have the five years of experience required (EB-3 has a six year backlog, while EB-2 is current for me). Can I wait for the I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a future employer?\",\n", + "\"_answer\": \"Yes, it is possible and common for a second employer (Employer B) to get an H1 extension based on the I-140 approval of the first employer (Employer A). You should speak to a lawyer to get more details.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I have the option to change jobs after my I-140 is approved? I am currently in my 5th year of my H1 visa. My current employer has filed for my PERM under EB-3 category since I didn't have 5 years experience before (EB-3 has 6 years backlog, but EB-2 queue is current for me). Can I wait for the I-140 approval, get a 3 year extension with my current employer and then move on to another job? Will I be able to get 3 more years on H1 with a future employer?\",\n", - "\"_answer\": \"Yes, it is possible and common for a new employer to extend your H-1 visa based on the I-140 approval of your previous employer. You should consult a lawyer to go over the details.\"}\n", + "{\"_question\": \"What happens if I change jobs after I-140 approval? I'm in my fifth year of H1 and my current employer has filed a PERM under the EB-3 category since I didn't have the five years of experience required (EB-3 has a six year backlog, while EB-2 is current for me). Is it possible to wait for the I-140 approval, get a three year extension with my current employer, and then switch jobs? Will I be able to get three more years on H1 with a future employer?\",\n", + "\"_answer\": \"Yes, it is feasible and common for a different employer (Employer B) to get an H1 extension based on the I-140 approval of the first employer (Employer A). You should consult with a lawyer to get more details.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to switch jobs after my I-140 is approved? I'm in the 5th year of my H1 visa. My current employer has filed for my PERM under EB-3 category since I didn't have 5 years experience before (EB-3 has 6 years backlog, but EB-2 queue is current for me). Can I wait for the I-140 approval, get a 3 year extension with my current employer and then transfer to another job? Will I be able to get 3 more years on H1 with a future employer?\",\n", - "\"_answer\": \"Yes, it is possible and common for a new employer to extend your H-1 visa based on the I-140 approval of your previous employer. You should talk to a lawyer about the specifics.\"} \n", + "{\"_question\": \"Can I switch jobs after I-140 approval? I'm in my fifth year of H1 and my current employer has submitted a PERM under the EB-3 category since I didn't have the five years of experience required (EB-3 has a six year backlog, while EB-2 is current for me). Can I wait for the I-140 approval, get a three year extension with my current employer, and then move jobs? Will I be able to get three more years on H1 with a future employer?\",\n", + "\"_answer\": \"Yes, it is doable and common for a different employer (Employer B) to get an H1 extension based on the I-140 approval of the first employer (Employer A). You ought to talk to a lawyer to get more information.\"} \n", "\n", "\n", "\n", @@ -3311,16 +3169,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I need to wait until I get a promotion before beginning the green card process to qualify for EB-2? Do I need a Bachelor's degree plus five years of post-Bachelor experience or a Master's degree plus two years of experience for a senior level position? Does the job description need to specify either one?\",\n", - "\"_answer\": \"You should consult with your legal advisors to decide when to file. For EB-2, you will need either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience to be eligible.\"}\n", + "{\"_question\": \"Do I need to wait for a promotion before beginning the green card process to qualify for EB-2? Is a Bachelor's degree plus 5 years of experience or a Master's degree plus 2 years experience necessary for a senior level job? Does the job description need to specify a Bachelor's plus 5 years or a Master's plus 2 years, or is either okay?\",\n", + "\"_answer\": \"You should consult with your attorneys to determine when you should file. For EB-2, either a Master's degree or a Bachelor's degree plus 5 years of post-Bachelor experience qualifies you for an EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Should I postpone the green card filing until I get a promotion to qualify for EB-2? Does my background of a Bachelor's degree and two years of experience plus two years of work experience qualify me for a senior level position? Does the job description need to state either a Bachelor's degree plus five years or a Master's degree plus two years?\",\n", - "\"_answer\": \"You should talk to your attorneys about the best timing for filing. For EB-2, you must have either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience to be qualified.\"}\n", + "{\"_question\": \"Should I delay filing for EB-2 until I get a promotion? Is a Bachelor's degree plus 5 years of experience or a Master's degree plus 2 years experience the requirement for a senior level position? Does the job description need to be explicit about the Bachelor's plus 5 years or the Master's plus 2 years, or is either acceptable?\",\n", + "\"_answer\": \"You should speak to your legal advisers about the timing of filing. For EB-2, either a Master's degree or a Bachelor's degree plus 5 years of post-Bachelor experience qualifies you for an EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Would it be better to wait for a promotion before beginning the green card process to meet the qualifications for EB-2? Is a Bachelor's degree plus five years of post-Bachelor experience or a Master's degree plus two years of experience enough for a senior level position? Does the job description have to specify either one?\",\n", - "\"_answer\": \"You should speak with your lawyers to decide when to file. For EB-2, you must have either a Master's degree or a Bachelor's degree plus five years of post-Bachelor experience to be eligible.\"} \n", + "{\"_question\": \"Should I wait for a promotion before submitting for EB-2? Is a Bachelor's degree with 5 years of experience or a Master's degree with 2 years experience necessary for a senior level job? Does the job description need to specify a Bachelor's plus 5 years or a Master's plus 2 years, or is either okay?\",\n", + "\"_answer\": \"You need to consult with your lawyers to decide when to file. For EB-2, either a Master's degree or a Bachelor's degree plus 5 years of post-Bachelor experience qualifies you for an EB-2.\"} \n", "\n", "\n", "\n", @@ -3329,16 +3187,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB2? I have a Bachelor of Business Administration degree (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which are in the necessary job description.\",\n", - "\"_answer\": \"It depends. If the higher diploma is a postgraduate program (not available to undergraduates) and is recognized, you might be eligible for EB-2.\"}\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) and 10 years of experience, with 7.5 years of experience in the required job description.\", \n", + "\"_answer\": \"It depends. If the diploma is post-graduate (not for undergraduates) and accepted, you may be eligible for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the qualifications for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, with 7.5 of those in the necessary job description.\",\n", - "\"_answer\": \"It depends. If the higher diploma is a postgraduate course (not available to undergraduates) and it is recognized, you could be eligible for EB-2.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2? I got my Bachelor of Business Administration (3 years) and Higher Diploma in Software Engineering (2 years) and have 10 years of experience, including 7.5 years of experience in the required job description.\", \n", + "\"_answer\": \"That depends. If the diploma is post-graduate (not for undergraduates) and accepted, you could be qualified for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) plus 10 years of experience, 7.5 of which are related to the job description.\",\n", - "\"_answer\": \"It depends. If the higher diploma is a postgraduate qualification (not available to undergraduates) and it is accepted, you may be eligible for EB-2.\"} \n", + "{\"_question\": \"Do I qualify for EB2? I have a Bachelor of Business Administration (3 years) and a Higher Diploma in Software Engineering (2 years) and 10 years of experience, with 7.5 years of experience in the required job description.\", \n", + "\"_answer\": \"It depends. If the diploma is post-graduate (not for undergraduates) and approved, you may be eligible for EB-2.\"} \n", "\n", "\n", "\n", @@ -3347,16 +3205,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for a green card under the EB2 category? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I have been working as a Technology Architect-Lead (managing 5-20 people) for 9 years. My M.Sc. has been evaluated as equivalent to a US Master's degree for the purpose of an H1 visa. Am I eligible?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and are pertinent to your job, the EB-2 should be viable.\"}\n", + "{\"_question\": \"Can I apply for a green card under the EB2 category? I have a B.Sc in Computer Science (3 years) and an M.Sc in Computer Science (2 years). I have 9 years of experience as a Tech Architect - Lead (managing 5-20 people) and my M.Sc has been evaluated as equivalent to a US MS for H1 visa approval. Am I eligible?\", \n", + "\"_answer\": \"If your B.Sc and M.Sc are in the same field and relevant to your job, then you should be able to apply for an EB2 green card.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible to apply for a green card under the EB2 category? I possess a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). I am currently employed as a Technology Architect-Lead (overseeing 5-20 people) and have been in this role for 9 years. My M.Sc. has been evaluated as equal to an American Master's degree for the H1 visa. Is this sufficient?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are related to your line of work and in the same field, then the EB-2 should be workable.\"}\n", + "{\"_question\": \"Do I qualify for an EB2 green card? I have a B.Sc in Computer Science (3 years) and an M.Sc in Computer Science (2 years). I have 9 years of experience as a Tech Architect - Lead (managing 5-20 people) and my M.Sc has been evaluated as equivalent to a US MS for H1 visa approval. Is this enough?\", \n", + "\"_answer\": \"If you have a B.Sc and M.Sc in the same area and related to your work, then you should be able to get an EB2 green card.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the requirements to apply for a green card under the EB2 category? I have a B.Sc. in Computer Science (3 years) and an M.Sc. in Computer Science (2 years). For the past 9 years, I have been employed as a Technology Architect-Lead (managing 5-20 people). My M.Sc. has been evaluated as equivalent to a US Master's degree for the purpose of an H1 visa. Do I meet the criteria?\",\n", - "\"_answer\": \"If your Bachelor's and Master's degrees are related to your job and in the same field, then the EB-2 should be viable.\"} \n", + "{\"_question\": \"Can I receive an EB2 green card? I have a B.Sc in Computer Science (3 years) and an M.Sc in Computer Science (2 years). I have 9 years of experience as a Tech Architect - Lead (managing 5-20 people) and my M.Sc has been evaluated as equivalent to a US MS for H1 visa approval. Will this work?\", \n", + "\"_answer\": \"If your Bachelor's and Master's degrees are in the same field and related to your occupation, then you should be able to get an EB2 green card.\"} \n", "\n", "\n", "\n", @@ -3365,16 +3223,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Will I be able to switch my EB3 I-485 that has a priority date of 06/2006 to an EB2 with my Indian equivalent Masters degree (3+3 years) and more experience? What is the minimum wage for EB2 category? Will my current company experience count for the new EB2 category? Do you have any suggestions on the job responsibilities for EB2?\",\n", - "\"_answer\": \"In theory, this is a possibility. As for the practical implications, you should consult with the lawyers who will be handling your second green card application.\"}\n", - "\n", - "######\n", - "{\"_question\": \"Is it feasible to transfer my EB3 I-485, which has a PD of 06/2006, to an EB2 with my Indian equivalent Masters (3+3 years) and more experience? What is the minimum wage for EB2 category? Will my current company experience be relevant for the new EB2 category? Could you give me advice on the job responsibilities for EB2?\",\n", - "\"_answer\": \"It is possible in principle. As to the practical aspects, you should speak with the attorneys who will represent you in the second green card process.\"}\n", + "{\"_question\": \"Can I move from an EB3 to an EB2 with portability? My EB3 I-485 is pending with a priority date of 06/2006. My employer is willing to file a new EB2 as I have Indian equivalent Masters (3+3 years) and more experience as well as increased job responsibilities. Is it possible to accept the offer and port my priority date? What is the minimum wage for EB2 category? Will my current employer's experience count for the new EB2? Any advice on the EB2 job responsibilities?\",\n", + "\"_answer\": \"In theory, this is possible. As to the practical implications, you should consult with the lawyers who will handle your second green card process.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I change my EB3 I-485 with PD 06/2006 to an EB2 considering my Indian equivalent Masters (3+3 years) and more experience? What is the minimum wage for EB2 category? Will my current company experience be applicable to the new EB2 category? Do you have any advice on the job responsibilities for EB2?\",\n", - "\"_answer\": \"It is theoretically possible. As for the practical implications, you must consult with the lawyers who will be handling your second green card application.\"} \n", + "{\"_question\": \"Can I transfer my EB3 to an EB2 with portability? My EB3 I-485 is pending with a priority date of 06/2006. My company is offering to file a new EB2 as I have Indian equivalent Masters (3+3 years) and more experience as well as increased job responsibilities. Is it permissible to accept this and take advantage of portability to use my EB3 priority date? What is the minimum wage for EB2 category? Will my current company experience be applicable for the new EB2? Any advice on the EB2 job responsibilities?\",\n", + "\"_answer\": \"In theory, this is feasible. As to the practical implications, you should speak to the lawyers who will represent you in the second green card process.\"} \n", "\n", "\n", "\n", @@ -3383,16 +3237,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB-2 with my Masters in Electrical Engineering and 3 years of experience?\",\n", - "\"_answer\": \"Yes, you meet the criteria for EB-2, unless the job has a lower requirement than a Bachelor's degree plus 5 years of experience.\"}\n", + "{\"_question\": \"Do I meet the standards for EB2 visa with my qualifications?\",\n", + "\"_answer\": \"Yes, you are eligible for EB2 visa, assuming you have a Master's degree in Electrical Engineering and 3 years of experience, which are the requirements for the job.\"}\n", "\n", "######\n", - "{\"_question\": \"Does my Master's in Electrical Engineering and 3 years of experience make me eligible for EB-2?\",\n", - "\"_answer\": \"Yes, you fulfill the requirements for EB-2, unless the job has a different standard that is less than a Bachelor's degree and 5 years of experience.\"}\n", + "{\"_question\": \"Am I eligible for an EB2 visa with my qualifications?\",\n", + "\"_answer\": \"Yes, you satisfy the criteria for EB2 visa, as long as you have a Master's degree in Electrical Engineering and 3 years of experience, which are the prerequisites for the job.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB-2 with a Master's in Electrical Engineering and 3 years of experience?\",\n", - "\"_answer\": \"Yes, you satisfy the qualifications for EB-2, unless the job has an alternate requirement that is lower than a Bachelor's degree plus 5 years of experience.\"} \n", + "{\"_question\": \"Do I qualify for an EB2 visa with my qualifications?\",\n", + "\"_answer\": \"Yes, you satisfy the requirements for EB2 visa, given that you have a Master's degree in Electrical Engineering and 3 years of experience, which are the conditions for the job.\"} \n", "\n", "\n", "\n", @@ -3401,16 +3255,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2 if I have a Master's in Computer Science from the US and six months of experience?\",\n", - "\"_answer\": \"It depends on the job requirements, but if a Master's degree is necessary then you should be eligible.\"}\n", + "{\"_question\": \"Do I qualify for EB2 if I have a Master of Computer Science from the US and 6 months of prior experience?\",\n", + "\"_answer\": \"It all depends if the job requires a master's degree or not.\"}\n", "\n", "######\n", - "{\"_question\": \"Is a Master's in Computer Science from the US and 6 months of experience enough for EB2?\",\n", - "\"_answer\": \"It is possible, depending on the job's criteria. If the job necessitates a Master's degree then you should be qualified.\"}\n", + "{\"_question\": \"Am I eligible for EB2 if I have a Master in Computer Science from the US with 6 months of experience?\",\n", + "\"_answer\": \"It depends on the job requirements for a master's degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I be eligible for EB2 if I have a Master's in Computer Science from the US and 6 months of experience?\",\n", - "\"_answer\": \"It depends on the job's requirements, but if a Master's is needed then you should be able to qualify.\"} \n", + "{\"_question\": \"Do I meet the criteria for EB2 with a Master of Computer Science from the US and 6 months of previous work?\",\n", + "\"_answer\": \"That would depend if the job requires a master's degree.\"} \n", "\n", "\n", "\n", @@ -3419,16 +3273,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"How likely is it that I will be able to get a green card when I finish my PhD program in semiconductor devices at a US university?\",\n", - "\"_answer\": \"Your chances for an EB-2 green card are quite good.\"}\n", + "{\"_question\": \"Are my chances of obtaining a green card under the EB-2 category high after I complete my PhD and get a job in the industry?\",\n", + "\"_answer\": \"It looks likely that you will be successful in obtaining a green card under the EB-2 category.\"}\n", "\n", "######\n", - "{\"_question\": \"Given my current situation, what are the prospects of me obtaining a green card after I complete my PhD in semiconductor devices from a US university?\",\n", - "\"_answer\": \"You should have a good chance of getting an EB-2 green card.\"}\n", + "{\"_question\": \"What is the likelihood of me getting a green card with the EB-2 category once I have finished my PhD and gotten a job in the industry?\",\n", + "\"_answer\": \"Your prospects of obtaining a green card with the EB-2 category are quite good.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the odds of me getting a green card after I finish my PhD in semiconductor devices from a US university?\",\n", - "\"_answer\": \"Your prospects for an EB-2 green card are quite favorable.\"} \n", + "{\"_question\": \"I have almost completed my PhD in semiconductor devices at a US university and have 5 first author publications. Will I have a good chance of getting a green card under the EB-2 category after I get a job in the industry?\",\n", + "\"_answer\": \"It looks like your chances of obtaining a green card with the EB-2 category are quite favorable.\"} \n", "\n", "\n", "\n", @@ -3437,16 +3291,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to transfer my PD from EB3 to EB2? I filed my PERM under the EB3 category on October 1, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is it possible for me to keep the EB3 file running in parallel and carry the PD from EB3 after the I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest to me if I should change my employer now to file for EB2?\", \n", - "\"_answer\": \"It is not possible to have two PERM applications from the same company for the same individual. However, if you have a valid, logical, and truthful explanation, there is no law that prevents you from having two PERM apps with the same employer for different jobs. You cannot transfer PD until the I-140 is approved. I believe you have enough time to change jobs right away.\"}\n", + "{\"_question\": \"Is it possible for me to keep my EB3 priority date if I file a new EB2 application?\",\n", + "\"_answer\": \"It is not possible to have two PERM applications from the same company for the same individual. However, if you have a valid, logical, and truthful explanation, nothing in the law states that it is not allowed. You cannot transfer your priority date until your I-140 is approved. I believe you have enough time to switch employers and file for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to take my PD from EB3 to EB2? I submitted my PERM under the EB3 category on October 1, 2008 and got an audit. According to the existing PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is it possible to keep the EB3 file running in parallel and bring the PD from EB3 after the I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest to me if I should switch my employer now to file for EB2?\", \n", - "\"_answer\": \"It is not possible to have two PERM applications from the same company for the same individual. But if you have a valid, logical, and truthful explanation, there is no law that prohibits you from having two PERM apps with the same employer for different jobs. You cannot move PD until the I-140 is approved. I think you have enough time to switch jobs right away.\"}\n", + "{\"_question\": \"Can I transfer my EB3 priority date to a new EB2 application?\",\n", + "\"_answer\": \"It is not permitted to have two PERM applications from the same employer for the same individual. But if you have a good, logical, and honest explanation, there is no law that says you cannot. Your priority date cannot be transferred until the I-140 is approved. I think you have enough time to change employers and file for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it achievable to move my PD from EB3 to EB2? I filed my PERM under the EB3 category on October 1, 2008 and received an audit. According to the current PERM dates, they are processing audits from August 2008. Can I file with the same employer under EB2? Is it possible to keep the EB3 file running in parallel and transport the PD from EB3 after the I-140 approval if I file a new EB2? I have already completed 4 years and 2 months on H1B. Can you suggest to me if I should change my employer now to file for EB2?\", \n", - "\"_answer\": \"It is not possible to have two PERM applications from the same company for the same individual. But if you have a valid, logical, and truthful explanation, there is no law that forbids you from having two PERM apps with the same employer for different jobs. You cannot transfer PD until the I-140 is approved. I believe you have enough time to change jobs right away.\"} \n", + "{\"_question\": \"Is it feasible to keep my EB3 priority date if I file a new EB2?\",\n", + "\"_answer\": \"Having two PERM applications from the same employer for the same individual is not allowed. But if you have a sound, logical, and truthful explanation, there is nothing in the law that says you cannot. You cannot transfer your priority date until the I-140 is approved. I believe you have enough time to switch employers and submit an EB2 application.\"} \n", "\n", "\n", "\n", @@ -3454,17 +3308,14 @@ "\n", "\n", "\n", - "######\n", - "{\"_question\": \"Am I qualified for EB2 green card with a 3-year bachelor's degree, certified software architect, 15+ years of experience (including current employer) and a salary of 100k+?\",\n", - "\"_answer\": \"It is unlikely that you would qualify for EB2 green card, but have your lawyers review.\"}\n", + "######{\"_question\":\"Do I meet the criteria for an EB2 visa based on my qualifications?\", \n", + "\"_answer\":\"It is unlikely that you would qualify for an EB2 visa given your 3-year bachelor's degree, certified software architect status, 15+ years of experience, and salary of over 100k.\"}\n", "\n", - "######\n", - "{\"_question\": \"Do I meet the requirements for an EB2 green card with my 3-year bachelor's degree, software architect certification, 15+ years of experience (including current employer) and salary of 100k+?\",\n", - "\"_answer\": \"Most likely not, however, have your lawyers review.\"}\n", + "######{\"_question\":\"Do I have a chance of obtaining an EB2 visa with my qualifications?\", \n", + "\"_answer\":\"It is unlikely that you would be able to acquire an EB2 visa given your 3-year bachelor's degree, certified software architect status, 15+ years of experience, and salary of over 100k.\"}\n", "\n", - "######\n", - "{\"_question\": \"Given my 3-year bachelor's degree, certified software architect, 15+ years of experience (including current employer) and 100k+ salary, am I eligible for an EB2 green card?\",\n", - "\"_answer\": \"It is improbable that you would qualify for EB2 green card, but have your lawyers review.\"} \n", + "######{\"_question\":\"Am I likely to get an EB2 visa with my qualifications?\", \n", + "\"_answer\":\"It is improbable that you would be able to get an EB2 visa given your 3-year bachelor's degree, certified software architect status, 15+ years of experience, and salary of over 100k.\"} \n", "\n", "\n", "\n", @@ -3473,16 +3324,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2 Schedule A despite the fact that my PERM application was denied due to recent layoffs in my company?\", \n", - "\"_answer\": \"There is no reason why you cannot submit a Schedule A application if you are qualified and the recent denial or layoff should not cause any issues. You do not need to wait to file.\"}\n", + "{\"_question\": \"Can I file for EB2 Schedule A despite the recent denial of my PERM application and layoff at my company?\", \n", + "\"_answer\": \"If you are eligible, you can submit a Schedule A application. I cannot think of any issues that the PERM denial or layoffs could cause, and there is no need to wait to submit it.\"}\n", "\n", "######\n", - "{\"_question\": \"Given the fact that my PERM application was denied due to the layoffs in my company, could I still apply for EB2 Schedule A?\", \n", - "\"_answer\": \"If you are eligible, you can submit the Schedule A application without delay, and the denial or layoffs should not create any problems.\"}\n", + "{\"_question\": \"Given the recent PERM denial and layoffs in my company, can I still apply for EB2 Schedule A to bypass labor certification?\", \n", + "\"_answer\": \"If you meet the qualifications, you can file for Schedule A. There should be no problems due to the PERM denial or layoffs, and you can submit the application right away.\"}\n", "\n", "######\n", - "{\"_question\": \"If my PERM application was denied due to my company's layoffs, could I still apply for EB2 Schedule A?\", \n", - "\"_answer\": \"Yes, you can apply for Schedule A if you are qualified, and the denial or layoffs should not be an issue. There is no need to wait before submitting the application.\"} \n", + "{\"_question\": \"Will the denial of my PERM application and layoffs in my company prevent me from filing for EB2 Schedule A to avoid labor certification?\", \n", + "\"_answer\": \"If you are eligible, you can go ahead and submit a Schedule A application. I can't think of any ways that the PERM denial or layoffs would cause any issues, and there is no need to wait to file it.\"} \n", "\n", "\n", "\n", @@ -3491,16 +3342,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for an EB2 green card if I have a Bachelor of Technology degree from India and 13 years of experience in IT, currently working as an IT Architect with a company that is willing to process my green card?\",\n", - "\"_answer\": \"If your Bachelor of Technology is a four year degree, it appears that you qualify for an EB2 green card.\"}\n", + "{\"_question\": \"Am I qualified for EB2? I have a Bachelor's degree in Engineering from India and I have been working in IT for more than 13 years, currently as an IT Architect. My employer is ready to begin the Green Card process. Is this enough to qualify for EB2?\",\n", + "\"_answer\": \"It appears that you meet the requirements for EB2, given that your Bachelor's degree is a 4-year degree.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for an EB2 green card if I possess a B.Tech in engineering from India, with 13 years of experience in IT and I am an IT Architect with a firm that is ready to process my green card?\",\n", - "\"_answer\": \"It appears that you would be eligible for EB2 if your B.Tech is a four year degree.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a Bachelor of Technology from India and 13+ years experience in IT, currently as an IT Architect. My employer is ready to start the Green Card process. Is this enough to be eligible for EB2?\",\n", + "\"_answer\": \"It appears that you are qualified for EB2, assuming that your Bachelor of Technology is a 4-year program.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for an EB2 green card if I have a Bachelor of Technology degree from India, 13 years of experience in IT, and I'm currently an IT Architect with a company that is willing to process my green card?\",\n", - "\"_answer\": \"It looks like you are eligible for an EB2 if your Bachelor of Technology is a four year degree.\"} \n", + "{\"_question\": \"Am I eligible to apply for EB2? I hold a BTech from India and have over 13 years of IT experience, currently as an IT Architect. My employer is ready to start the Green Card process. Would this be sufficient to qualify for EB2?\",\n", + "\"_answer\": \"It looks like you fulfill the requirements for EB2, given that your BTech is a 4-year degree.\"} \n", "\n", "\n", "\n", @@ -3509,16 +3360,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible for me to qualify for EB-2 given my educational background and two years of experience in the US working as a research associate?\",\n", - "\"_answer\": \"Yes, you are eligible for EB-2. Whether or not a promotion is necessary is something that your lawyer and employer will have to determine. Any position that requires a MS or BS and five years of progressively responsible experience can be filed for EB-2.\"}\n", + "{\"_question\": \"What qualifications do I need to meet to be eligible for an EB-2 visa if I have a Bachelor's Degree in Chemistry and a Master's Degree in Chemistry with two years of experience?\",\n", + "\"_answer\": \"You qualify for an EB-2 visa, however, whether or not a promotion is necessary is up to your lawyer and employer to decide. Any position that requires a Bachelor's or Master's Degree plus five years of progressively responsible experience is eligible for an EB-2 filing.\"}\n", "\n", "######\n", - "{\"_question\": \"Given my educational qualifications and two years of experience in the US working as a research associate, am I eligible for EB-2?\",\n", - "\"_answer\": \"Yes, you meet the criteria for EB-2. Whether or not a promotion is necessary is something that your lawyer and employer will have to decide. Any position that requires a MS or BS and five years of progressively responsible experience can be filed for EB-2.\"}\n", + "{\"_question\": \"What do I need to have in order to be able to apply for an EB-2 visa if I have a 4 year US Bachelor's Degree in Chemistry, a 2 year Master's Degree in Chemistry, and have been working on an H-1B visa for the same US university for two years?\",\n", + "\"_answer\": \"You are qualified for an EB-2 visa, but whether or not a promotion is necessary is up to your lawyer and employer to decide. Any job that requires a Bachelor's or Master's Degree and five years of progressively responsible experience is suitable for an EB-2 filing.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB-2 with my educational background and two years of experience in the US working as a research associate?\",\n", - "\"_answer\": \"Yes, you are eligible for EB-2. Whether or not a promotion is required is something that your lawyer and employer will have to assess. Any position that requires a MS or BS and five years of progressively responsible experience can be filed for EB-2.\"} \n", + "{\"_question\": \"I have a Bachelor's Degree in Chemistry from a four-year US university and a Master's Degree in Chemistry with two years of experience. I am currently working on an H-1B visa for the same US university as a research associate for two years, and my publications are still pending. What criteria do I need to meet to be eligible for an EB-2 visa?\",\n", + "\"_answer\": \"You are eligible for an EB-2 visa, however, whether or not a promotion is needed is up to your lawyer and employer to determine. Any position that requires a Bachelor's or Master's Degree and five years of progressively responsible experience is suitable for an EB-2 filing.\"} \n", "\n", "\n", "\n", @@ -3527,16 +3378,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I qualified for EB2 category? I obtained a BSc in Computer Science from St. Xavier's Mumbai and an MCA from REC Trichy, and I have 7 years of experience in the IT industry.\",\n", + "{\"_question\": \"Do I qualify for EB2 status? I studied Computer Science for three years at St. Xavier's Mumbai, then completed my MCA at REC Trichy with three years of experience in the IT industry. My employer is filing my Green Card application. Am I eligible for EB2?\",\n", "\"_answer\": \"Yes, you meet the requirements for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I have a 3 year BSc in Computer Science from St Xavier's Mumbai and a 3 year MCA from REC Trichy, and 7 years of work experience in the IT field.\",\n", - "\"_answer\": \"Yes, you are eligible for EB2.\"}\n", - "\n", - "######\n", - "{\"_question\": \"Do I fulfill the requirements for EB2? I completed a BSc in Computer Science from St Xavier's Mumbai over three years and later an MCA from REC Trichy over three years, and I have 7 years of experience in the IT industry.\",\n", - "\"_answer\": \"Yes, you are qualified for EB2.\"} \n", + "{\"_question\": \"Am I qualified for EB2? I earned my BSc in Computer Science from St. Xavier's Mumbai and then my MCA from REC Trichy. I have 7 years of work experience in the IT industry and my employer is filing my Green Card. Do I meet the criteria for EB2?\",\n", + "\"_answer\": \"Yes, you are eligible for EB2.\"} \n", "\n", "\n", "\n", @@ -3545,28 +3392,34 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for an EB-2 visa if I have a BSc and BTech in addition to 8 years of experience?\",\n", - "\"_answer\": \"It's unlikely that you will be able to combine two 3-year bachelor's degrees to qualify for an EB-2 visa.\"}\n", + "{\"_question\": \"Do I satisfy the requirements to apply for a green card under the EB-2 category if I have a 3-year bachelor's degree (BSC) and a 3-year bachelor's degree in technology (BTECH) from India, plus 8 years of experience, and the position requires an MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"It is generally not allowed to combine two 3-year bachelor's degrees, so it appears unlikely you would qualify for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB-2 green card if I have a BSc and BTech plus 8 years of experience?\",\n", - "\"_answer\": \"It is not typically possible to blend two 3-year bachelor's degrees, so it is unlikely that you will be eligible for an EB-2 green card.\"}\n", + "{\"_question\": \"Am I eligible to apply for a green card under the EB-2 category, if I possess a BSC and a BTECH from India, both of which are 3-year bachelor's degrees, and I have 8 years of experience, and the job requires an MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"Combining two 3-year bachelor's degrees is usually not allowed, so it appears that you would not be qualified for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the criteria for an EB-2 visa if I hold a BSc and BTech in addition to 8 years of experience?\",\n", - "\"_answer\": \"It appears unlikely that you will satisfy the requirements for an EB-2 visa since it is generally not possible to combine two 3-year bachelor's degrees.\"} \n", + "{\"_question\": \"Do I meet the criteria to apply for a green card under EB-2, if I have a 3-year BSC and a 3-year BTECH from India, plus 8 years of experience, and the job necessitates an MS or BS plus 5 years of experience?\", \n", + "\"_answer\": \"Combining two 3-year bachelor's degrees is usually not permitted, so it appears unlikely you would be eligible for EB-2.\"} \n", "\n", "\n", "\n", "67 \n", "\n", "\n", + "\n", + "######\n", + "{\"_question\": \"Do I qualify for EB2 with a 3-year Bachelor's degree from India and a 2-year Master's degree from India, plus 7 years of experience?\",\n", + "\"_answer\": \"It is likely that you can qualify for EB2 if your Bachelor's and Master's degrees are in the same or similar field, as this would be considered a 4-year degree.\"}\n", + "\n", "######\n", - "{\"_question\": \"Can I qualify for EB2 with a 3-year Bachelor's degree and a 2-year Master's degree from India, if the job I am applying for requires a Bachelor's degree and 6 years of experience?\",\n", - "\"_answer\": \"It is possible to qualify for EB2 under these circumstances, as long as the Bachelor's and Master's degrees are in the same or similar fields. Your lawyer should be able to help you determine if you are eligible.\"}\n", + "{\"_question\": \"What are the requirements for EB2 if I have a 3-year Bachelor's degree from India, a 2-year Master's degree from India, and 7 years of experience?\",\n", + "\"_answer\": \"The general rule is that if your Bachelor's and Master's degrees are in the same or similar field, they can be combined to be considered a 4-year degree, which would qualify you for EB2.\"}\n", + "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2 if I have a 3-year Bachelor's degree and a 2-year Master's degree from India, and the job I am applying for requires a Bachelor's degree and 6 years of experience?\",\n", - "\"_answer\": \"It is possible that you could meet the requirements for EB2 with a combination of your Bachelor's and Master's degrees, as long as they are in the same or similar fields. Your lawyer should be able to confirm if you are eligible.\"} \n", + "{\"_question\": \"Can I apply for EB2 if I have a 3-year Bachelor's degree from India, a 2-year Master's degree from India, and 7 years of experience?\",\n", + "\"_answer\": \"It is possible to qualify for EB2 if the Bachelor's and Master's degrees are in the same or similar field, as this would be considered a 4-year degree.\"} \n", "\n", "\n", "\n", @@ -3575,16 +3428,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the timeline for green card processing and EB2 category if I initiate it now? I have a Masters degree from the US and I'm currently working for Company A. I'm almost at the end of my fourth year of H1 and am considering my options.\",\n", - "\"_answer\": \"For people born in countries that have an EB2 backlog, the timeline can range from 3-4 years, or longer, depending on various factors. One of the advantages of reaching the I-140 approved stage is that you can transfer your priority date to the next employer and get an H-1 extension beyond six years.\"}\n", + "{\"_question\": \"What is the timeline for obtaining a green card if I initiate the process now?\",\n", + "\"_answer\": \"It depends on the country of birth and a number of other factors, but generally it could take anywhere from 3-4 years. One big advantage of the process is that you can transfer your priority date to a new employer and get an H-1 extension beyond 6 years.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the estimated duration of green card processing if I start it now and I'm in the EB2 category? I have a Masters degree from the US and I'm currently employed by Company A. I'm going to complete four years on H1 soon and I'm trying to make an informed decision.\",\n", - "\"_answer\": \"For those born in countries with an EB2 backlog, the time frame can range from three to four years, or even longer, depending on certain variables. An advantage of reaching the I-140 approved stage is that you can transfer your priority date to the next employer and get an H-1 extension beyond six years.\"}\n", + "{\"_question\": \"How long will it take to get a green card if I start the process now?\",\n", + "\"_answer\": \"The duration can range from 3-4 years, depending on the country of birth and other variables. An advantage of getting to the I-140 approved stage is that you can transfer your priority date to a new employer and get an H-1 extension beyond 6 years.\"}\n", "\n", "######\n", - "{\"_question\": \"What would be the expected length of green card processing if I started it now and I'm in the EB2 category? I have a Masters degree from the US and I'm currently employed by Company A. I'm nearing the end of my fourth year of H1 and am considering my options.\",\n", - "\"_answer\": \"For those from countries with an EB2 backlog, the duration can vary from three to four years, or even longer, depending on various factors. An advantage of reaching the I-140 approved stage is that you can take your priority date to the next employer and get an H-1 extension beyond six years.\"} \n", + "{\"_question\": \"What is the estimated time for obtaining a green card if I begin the process now?\",\n", + "\"_answer\": \"The timeline can vary from 3-4 years, depending on the country of birth and other factors. A benefit of getting to the I-140 approved stage is that you can take your priority date to a different employer and get an H-1 extension beyond 6 years.\"} \n", "\n", "\n", "\n", @@ -3593,16 +3446,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can my employer sponsor me for EB2 after they promote me to Clinical Specialist?\",\n", - "\"_answer\": \"It is possible to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. However, only a competent lawyer can help you assess the chances.\"}\n", + "{\"_question\": \"Can my current employer sponsor me for an EB2 visa if they promote me to a clinical specialist position after I complete my 5 years experience with them, even if I have only 1 year and 1/2 experience in a staff/lower position?\",\n", + "\"_answer\": \"It is possible under the current law to use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. Only a competent lawyer can help you assess the chances.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am promoted to Clinical Specialist, can my employer still sponsor me for EB2?\",\n", - "\"_answer\": \"The law allows for the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To find out if you have a chance, you should consult a competent lawyer.\"}\n", + "{\"_question\": \"If my current employer promotes me to a clinical specialist position after I finish 5 years experience with them, can they still sponsor me for an EB2 visa even if I have only 1 year and 1/2 experience in a staff/lower position?\",\n", + "\"_answer\": \"The law currently allows for the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To find out your chances, you should seek the advice of a qualified lawyer.\"}\n", "\n", "######\n", - "{\"_question\": \"Can my employer sponsor me for EB2 after they promote me to Clinical Specialist?\",\n", - "\"_answer\": \"The law permits the use of experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. A professional lawyer should be consulted to determine your chances.\"} \n", + "{\"_question\": \"If I complete my 5 years experience with my current employer and they promote me to a clinical specialist, can they still sponsor me for an EB2 visa even if I have only 1 year and 1/2 experience in a staff/lower position?\",\n", + "\"_answer\": \"The law states that you can use the experience gained with the same employer if the labor certain job is more than fifty percent different from the earlier positions held with the same employer. To get an accurate assessment of your chances, you should consult a competent lawyer.\"} \n", "\n", "\n", "\n", @@ -3611,12 +3464,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for an EB2 visa? I have a B.Tech in Electronics from India in 2004 and 6 years of experience (3 in India and 3 in the US). Does the experience have to be outside the US?\",\n", - "\"_answer\": \"Given your four-year degree and more than five years of post-grad experience, you should have a good chance at an EB2 visa.\"}\n", + "{\"_question\": \"Do I meet the requirements for EB2? I have a B.Tech in electronics from 2004 and a combined experience of 6 years (3 in India and 3 in the US). Is 5 years of experience outside the US necessary?\",\n", + "\"_answer\": \"Given that you have a four-year degree and more than five years of experience after that, you should be able to apply for EB2.\"}\n", + "\n", + "######\n", + "{\"_question\": \"Am I eligible for EB2? I have a B.Tech in electronics from 2004 and 6 years of experience (3 in India and 3 in the US). Do I need 5 years of experience outside the US?\",\n", + "\"_answer\": \"With a four-year degree and more than five years of experience after that, you should have a chance to apply for EB2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for an EB2 visa? I have a B.Tech in Electronics from India in 2004 and six years of experience (three in India and three in the US). Do I need to have five years of experience outside the US?\",\n", - "\"_answer\": \"With a four-year bach. degree and more than five years of post-bach experience, you should be able to have a shot at an EB2 visa.\"} \n", + "{\"_question\": \"Do I qualify for EB2? I have a B.Tech in electronics from 2004 and 6 years of experience (3 in India and 3 in the US). Is 5 years of experience outside the US a must?\",\n", + "\"_answer\": \"If you have a four-year degree and more than five years of experience after that, you should be able to pursue EB2.\"} \n", "\n", "\n", "\n", @@ -3625,16 +3482,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Does volunteer work count as experience for EB2? I am an OT originally from another country, and I have a BSOT and did volunteer OT work for two years in an adult setting back home. Would that count towards the five years of experience required?\",\n", - "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that demands paid experience. It is possible to use volunteer experience.\"}\n", + "{\"_question\": \"Does volunteer work count as an experience for EB2? I am an OT practitioner in the US and I graduated with a BSOT and had 2 years of OT volunteer work in an adult setting in my home country. Would that count towards the 5 years experience requirement? Additionally, for the first 6 months I was not yet licensed as an OT.\",\n", + "\"_answer\": \"Generally, for EB2, there is no requirement that I am aware of that necessitates paid experience. Volunteer experience may be applicable.\"}\n", "\n", "######\n", - "{\"_question\": \"Can volunteer experience be used to fulfill EB2 requirements? I have a BSOT and did volunteer OT work for two years in an adult setting back home, although I am originally from another country. Would that count towards the five years of experience?\",\n", - "\"_answer\": \"Generally, for EB2, no paid experience is required. It is possible to use volunteer experience.\"}\n", + "{\"_question\": \"Would volunteer work count as an experience for EB2? I am an OT practitioner in the US and obtained my BSOT in my home country. I had 2 years of volunteer OT work in an adult setting. Would this count towards the 5 years experience requirement? Also, I was not yet licensed as an OT for the first 6 months.\",\n", + "\"_answer\": \"Generally, there is no requirement that I know of for EB2 that requires paid experience. Volunteer work could be considered.\"}\n", "\n", "######\n", - "{\"_question\": \"Do volunteer hours count for EB2? I have a BSOT and I am from another country. I did volunteer OT work for two years in an adult setting back home. Will that be taken into consideration for the five years of experience requirement?\",\n", - "\"_answer\": \"Generally, no paid experience is necessary for EB2. Volunteer experience may be taken into account.\"} \n", + "{\"_question\": \"Would volunteer work be counted as an experience for EB2? I am an OT practitioner in the US and have a BSOT from my home country. I did 2 years of volunteer OT work in an adult setting. Would that be applicable towards the 5 years experience requirement? Additionally, I was not yet licensed as an OT for the first 6 months.\",\n", + "\"_answer\": \"Generally, there is no requirement I am aware of for EB2 that necessitates paid experience. Volunteer work could potentially be used.\"} \n", "\n", "\n", "\n", @@ -3643,12 +3500,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for EB2? I received my Bachelor's in Computer Science Engineering and have been working as an SME in the US on an L1B visa for 4 years. I have also completed two Microsoft certifications and AICPCU certifications. Can I apply for a green card under the EB2 category?\", \n", - "\"_answer\": \"You must have 5 years of experience after your Bachelor's. Certifications typically do not provide an advantage.\"}\n", + "{\"_question\": \"Am I qualified for the EB2 green card? I have a four-year Bachelor's degree in computer science engineering and I am currently working in the United States as a Subject Matter Expert on an L1B visa. I have also completed two Microsoft certifications and AICPCU certifications. Can I apply for the EB2 green card?\",\n", + "\"_answer\": \"You need to have five years of experience after obtaining your Bachelor's degree in order to be eligible for the EB2 green card. Certifications do not usually have an effect on the application.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB2? I have a Bachelor's in Computer Science Engineering and have been in the US on an L1B visa for 4 years working as a SME. I also have two Microsoft certifications and AICPCU certifications. Can I get a green card through the EB2 category?\",\n", - "\"_answer\": \"You need to have 5 years of post-Bachelor's experience. Certifications usually do not help.\"} \n", + "{\"_question\": \"Do I meet the requirements for the EB2 green card? I have a four-year Bachelor's degree in computer science engineering and I am currently employed in the United States as a Subject Matter Expert on an L1B visa. I have also obtained two Microsoft certifications and AICPCU certifications. Can I apply for the EB2 green card?\",\n", + "\"_answer\": \"You must have five years of experience after earning your Bachelor's degree in order to be eligible for the EB2 green card. Generally, certifications do not impact your application.\"} \n", "\n", "\n", "\n", @@ -3657,16 +3514,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Does an individual with an approved i-140 need to switch to a comparable job to maintain the priority date?\",\n", - "\"_answer\": \"No, the individual does not have to switch to a comparable job. The green card process must be restarted, however the priority date can be carried over to any job and category (eb1, eb2, eb3).\"}\n", + "{\"_question\": \"If one's I-140 is approved, is it necessary to switch to a comparable job to maintain priority date?\",\n", + "\"_answer\": \"No, it is not required to switch to a similar role. The green card process must be restarted, but the priority date can be transferred to any job or category (EB1, EB2, EB3).\"}\n", "\n", "######\n", - "{\"_question\": \"If a person has an approved i-140, is it necessary to transition to a similar job to preserve the priority date?\",\n", - "\"_answer\": \"No, it is not necessary to change to a similar job. The green card process must be restarted, but the priority date can be shifted to any job and category (eb1, eb2, eb3).\"}\n", + "{\"_question\": \"If an individual has an approved I-140, must they transition into a comparable role to retain their priority date?\",\n", + "\"_answer\": \"No, it is not a requirement to move to a comparable job. The green card process needs to be restarted, but the priority date can be transferred to any job or category (EB1, EB2, EB3).\"}\n", "\n", "######\n", - "{\"_question\": \"If a person has an approved i-140, do they have to move to a similar job to keep the priority date?\",\n", - "\"_answer\": \"No, they do not need to change to a similar job. The green card process must be restarted, but the priority date can be transferred to any job and category (eb1, eb2, eb3).\"} \n", + "{\"_question\": \"If a person has a confirmed I-140, do they have to switch to a similar job to keep their priority date?\",\n", + "\"_answer\": \"No, there is no need to switch to a comparable role. The green card procedure must be restarted, but the priority date can be relocated to any job or category (EB1, EB2, EB3).\"} \n", "\n", "\n", "\n", @@ -3675,16 +3532,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I switch my Green Card application from EB3 to EB2 if the job I'm in now requires a Bachelor's degree and five years of experience? Is it possible to use cross chargeability with my wife, who is an Indian citizen but was born in Kuwait and is on H4 status?\",\n", - "\"_answer\": \"It is possible to apply for an EB2 if the job requires a Bachelor's degree and five years of experience. Cross chargeability is also available and you should discuss the details with your lawyers.\"}\n", + "{\"_question\": \"Can I apply for an EB2 visa if the role I am in requires a Bachelor's degree and five years of experience? Is the concept of 'cross eligibility' applicable to my green card application? If so, how can I make use of it?\", \n", + "\"_answer\": \"Yes, you can apply for an EB2 visa if the job requires a Bachelor's degree and five years of post-Bachelor's experience. Cross chargeability is applicable to your green card application, so you should discuss details with your attorneys.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible to transfer my Green Card application from EB3 to EB2 if my current role requires a Bachelor's degree and five years of experience? Can I take advantage of cross chargeability with my wife, who is an Indian citizen born in Kuwait and is currently on H4?\",\n", - "\"_answer\": \"Yes, you can submit an EB2 application if your job requires a Bachelor's degree and five years of experience. Cross chargeability is an option and you should speak to your lawyers about the details.\"}\n", + "{\"_question\": \"If I am in a role requiring a Bachelor's degree and five years of experience, am I eligible to submit an EB2 application? Is cross eligibility applicable to my green card application? How can I take advantage of it?\", \n", + "\"_answer\": \"You are able to apply for an EB2 visa if the job requires a Bachelor's degree and five years of post-Bachelor's experience. Cross chargeability is an option for your green card application, so you should speak with your lawyers about the details.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB2 if my role requires a Bachelor's degree and five years of experience, and my Green Card application was initially filed under EB3? Is cross chargeability applicable to my Green Card application if my wife is an Indian citizen born in Kuwait and is currently on H4?\",\n", - "\"_answer\": \"Yes, you can apply for EB2 if the job requires a Bachelor's degree and five years of experience. Cross chargeability is available and you should consult your lawyers for more information.\"} \n", + "{\"_question\": \"Do I meet the qualifications to apply for EB2 if the role I am in requires a Bachelor's degree and five years of experience? Can I use cross eligibility for my green card application? How can I make use of it?\", \n", + "\"_answer\": \"Yes, you qualify for EB2 if the job requires a Bachelor's degree and five years of post-Bachelor's experience. Cross chargeability is possible for your green card application, so you should consult with your attorneys to learn more.\"} \n", "\n", "\n", "\n", @@ -3693,16 +3550,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it possible to qualify for an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", - "\"_answer\": \"It is possible to apply for an EB2 visa if you have a job that requires an advanced degree.\"}\n", + "{\"_question\": \"Can I be eligible for an EB-2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in the same field from the US?\",\n", + "\"_answer\": \"It is my belief that if your job requires an advanced degree, you can apply for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Will a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US be sufficient for an EB2 visa?\",\n", - "\"_answer\": \"Yes, it is possible to obtain an EB2 visa if your job requires an advanced degree.\"}\n", + "{\"_question\": \"Do I qualify for an EB-2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in the same field from the US?\",\n", + "\"_answer\": \"In my opinion, if your occupation necessitates an advanced degree, you can apply for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I obtain an EB2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in OT from the US?\",\n", - "\"_answer\": \"Yes, if your position requires an advanced degree, you can apply for an EB2 visa.\"} \n", + "{\"_question\": \"Am I eligible for an EB-2 visa with a Bachelor of Science in Occupational Therapy from the Philippines and an advanced degree in the same field from the US?\",\n", + "\"_answer\": \"My understanding is that if your job requires an advanced degree, you can apply for EB-2.\"} \n", "\n", "\n", "\n", @@ -3711,16 +3568,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"I'm an Indian citizen and my wife is a Russian citizen, born in Russia. We would like to apply for a green card together and I was wondering if I can use her country's priority date (\"current\" as of today) for the green card?\",\n", - "\"_answer\": \"Yes, that is possible. This is known as 'cross changeability'.\"}\n", + "{\"_question\": \"I appreciate your assistance in helping so many of us. I have a query about the interchangeability of EB2 priority dates. I am an Indian national and my wife is a Russian national, born in Russia. When she applies for my green card, can I use her nation's priority date (as of now) for the green card?\", \n", + "\"_answer\": \"Yes, that is accurate. This is known as 'cross changeability.'\"}\n", "\n", "######\n", - "{\"_question\": \"Can I utilize my wife's Russian priority date for my green card application, even though I am an Indian citizen?\",\n", - "\"_answer\": \"Yes, that is an option. This is referred to as 'cross changeability'.\"}\n", + "{\"_question\": \"Your help in guiding many of us is greatly appreciated. I have a question about the possibility of swapping EB2 priority dates. I am from India and my wife is a Russian born in Russia. Can I use her country's priority date (current) for the green card when she applies as my dependent?\", \n", + "\"_answer\": \"Yes, that is correct. This is referred to as 'cross changeability.'\"}\n", "\n", "######\n", - "{\"_question\": \"My wife is a Russian citizen and I am an Indian citizen. Is it possible for me to use her country's priority date for my green card application?\",\n", - "\"_answer\": \"Yes, that is doable. This is called 'cross changeability'.\"} \n", + "{\"_question\": \"Your advice for so many of us is invaluable. I have a question regarding the exchangeability of EB2 priority dates. I am an Indian citizen and my wife is a Russian citizen, born in Russia. When she files for my green card, can I use her country's priority date (as of today) for the green card?\", \n", + "\"_answer\": \"Yes, that is true. This is called 'cross changeability.'\"} \n", "\n", "\n", "\n", @@ -3729,16 +3586,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can my employer help me with my green card if I have a US-based Master's degree and have been offered a state job that requires a Bachelor's degree and 1 year of experience?\", \n", - "\"_answer\": \"No, you will not be eligible for an EB2 unless the job also legitimately requires a post-graduate degree or Bachelor's degree with five years of experience at a minimum.\"}\n", + "{\"_question\": \"Can I apply for an EB2 visa if the job I was offered only requires a bachelor's degree and one year of experience?\",\n", + "\"_answer\": \"No, you will not be eligible to apply for an EB2 visa unless the job requires a post graduate degree or bachelor's degree with five years of experience at a minimum.\"}\n", "\n", "######\n", - "{\"_question\": \"Will my employer be able to support me in my green card application if I have a Master's degree from the US and I have been offered a job which requires a Bachelor's degree and 1 year of experience?\", \n", - "\"_answer\": \"No, you will not qualify for an EB2 unless the job also legitimately requires a post-graduate degree or Bachelor's degree with five years of experience at a minimum.\"}\n", + "{\"_question\": \"What is the minimum requirement to be eligible for an EB2 visa?\",\n", + "\"_answer\": \"In order to be eligible for an EB2 visa, the job must require a post graduate degree or bachelor's degree with five years of experience at a minimum.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have a US-based Master's degree and I have been offered a state job that requires a Bachelor's degree and 1 year of experience, can my employer help me with my green card application?\", \n", - "\"_answer\": \"No, you will not be eligible for an EB2 unless the job also legitimately requires a post-graduate degree or Bachelor's degree with five years of experience at a minimum.\"} \n", + "{\"_question\": \"If I was offered a job with only a bachelor's degree and one year of experience, can I still apply for an EB2 visa?\",\n", + "\"_answer\": \"No, you would not be able to qualify for an EB2 visa unless the job requires a post graduate degree or bachelor's degree with five years of experience at a minimum.\"} \n", "\n", "\n", "\n", @@ -3747,16 +3604,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for the EB2 category if I have a five year bachelors degree from a traditional school in the US and a two year MBA through distance education from an accredited university in the US?\",\n", - "\"_answer\": \"The important thing to determine is if the degree is accredited. Consult with the school to find out.\"}\n", + "{\"_question\": \"Do I qualify for EB2 with an online masters degree? I have a 5 year bachelors degree from a traditional school in the US, and a 2 year MBA from an accredited (Accrediting Commission of the Distance Education and Training Council (DETC)) university in the US. My employer wants to evaluate my master degree as they are unsure if distance education is recognised.\",\n", + "\"_answer\": \"The most important thing to find out is if the degree is accredited. You should contact the school about this.\"}\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB2 if I have a five year bachelors degree from a US school and a two year MBA through distance education from an accredited university in the US?\",\n", - "\"_answer\": \"The decisive factor is to ascertain if the degree is accredited. Talk to the school to learn more.\"}\n", + "{\"_question\": \"Do I qualify for EB2 with a masters degree earned through distance education? I have a 5 year bachelors degree from a US school, and a 2 year MBA from an accredited (Accrediting Commission of the Distance Education and Training Council (DETC)) university in the US. My employer is questioning if distance education is accepted.\",\n", + "\"_answer\": \"The primary factor is to determine if the degree is accredited. Reach out to the school to find out.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for the EB2 category if I have a five year bachelors degree from a US college and a two year MBA through distance education from an accredited university in the US?\",\n", - "\"_answer\": \"The critical factor is to determine if the degree is accredited. Reach out to the school to find out.\"} \n", + "{\"_question\": \"Am I eligible for EB2 with a masters degree earned online? I have a 5 year bachelors degree from a US university, and a 2 year MBA from an accredited (Accrediting Commission of the Distance Education and Training Council (DETC)) university in the US. My employer is unsure if distance education is accepted.\",\n", + "\"_answer\": \"The most important thing is to check if the degree is accredited. You should contact the school to confirm this.\"} \n", "\n", "\n", "\n", @@ -3765,16 +3622,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"to qualify for an EB2 visa under the advanced degree category, is it enough to possess a master's degree from an American university, or must the job position require it?\",\n", - "\"_answer\": \"the job position must also authentically necessitate EB2 level qualifications.\"}\n", + "{\"_question\": \"To qualify for EB-2 status with advanced degrees, is having a MS degree from a US university enough or must the job require it?\",\n", + "\"_answer\": \"The job must also necessitate EB-2 level qualifications.\"}\n", "\n", "######\n", - "{\"_question\": \"for EB2 eligibility under the advanced degree classification, is a master's degree from a US college enough, or must the job position mandate it?\",\n", - "\"_answer\": \"the job must also necessitate EB2 level qualifications in a genuine manner.\"}\n", + "{\"_question\": \"For EB-2 classification based on advanced degrees, is a MS degree from a US college enough or must the job demand it?\",\n", + "\"_answer\": \"The job must also necessitate EB-2 level qualifications.\"}\n", "\n", "######\n", - "{\"_question\": \"in order to be eligible for EB2 under the advanced degree category, is having a master's degree from a US university enough, or must the job position specify such?\",\n", - "\"_answer\": \"the job must also genuinely call for EB2 level qualifications.\"} \n", + "{\"_question\": \"To be eligible for EB-2 using advanced degrees, is a MS degree from an American university sufficient or must the job description state so?\",\n", + "\"_answer\": \"The job must also necessitate EB-2 level qualifications.\"} \n", "\n", "\n", "\n", @@ -3783,16 +3640,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Are there any potential issues with my educational background for my I-140 given that my PERM was approved under EB2 and I have a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech, and 8 years of experience at the time of PERM, and all of my education is from India?\", \n", - "\"_answer\": \"There are some variables, but generally, if the B.Tech is supposed to be a 4-year degree and you got it in three due to your diploma, it should be acceptable.\"}\n", + "{\"_question\": \"Are there any potential issues with my education in the I-140 considering that my Permanent Residency is approved under EB2 and I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience?\",\n", + "\"_answer\": \"It depends on the specifics, but typically speaking, if you completed the B.Tech in three years due to your diploma, there should be no problem.\"}\n", "\n", "######\n", - "{\"_question\": \"I have been approved for PERM under EB2 with a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech, and 8 years of experience at the time of PERM, all from India. Could there be any problems with my educational background for my I-140?\", \n", - "\"_answer\": \"There are some factors to consider, but generally, if the B.Tech is supposed to be a 4-year degree and you got it in three because of your diploma, it should be okay.\"}\n", + "{\"_question\": \"My EB2 Permanent Residency is approved and I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience. Could my education be an issue on my I-140?\",\n", + "\"_answer\": \"It depends, however usually if you earned the B.Tech in three years due to the diploma, it should not be a problem.\"}\n", "\n", "######\n", - "{\"_question\": \"Given that my PERM was approved under EB2, and I have a 3 year diploma, 3 year B.Tech, 1.5 year M.Tech, and 8 years of experience at the time of PERM, all from India, could there be any issues with my educational background for my I-140?\", \n", - "\"_answer\": \"There are some variables to consider, but generally, if the B.Tech is meant to be a 4-year degree and you got it in three due to your diploma, it should be fine.\"} \n", + "{\"_question\": \"My EB2 Permanent Residency is accepted and I have a 3-year diploma, 3-year B.Tech, 1.5-year M.Tech, and 8 years of experience. Am I likely to face any issues with my education on the I-140?\",\n", + "\"_answer\": \"It varies, but typically if you obtained the B.Tech in three years because of the diploma, there should not be a problem.\"} \n", "\n", "\n", "\n", @@ -3801,16 +3658,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the normal duration to receive a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and Europe. I have a job offer from the US and I would like to submit the application.\",\n", - "\"_answer\": \"The biggest holdup for most people is the priority date movement. Look at the Visa Bulletin and the Permanent Processing Times for more information. That should give you a good idea of what to expect.\"}\n", + "{\"_question\": \"What is the typical wait time for getting a green card through the EB2 category? I have a master's degree in international business and 7 years of experience in the United States and Europe. I have a job offer in the US and I want to submit the application.\",\n", + "\"_answer\": \"The most significant holdup for most people is the movement of the priority date. Check out the visa bulletin and the perm processing times. That should provide you with a good idea.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the average time it takes to get a green card through the EB2 category? I possess a Master's in International Business and 7 years of experience in the US and EU. I have a job offer from the US and I want to file the petition.\",\n", - "\"_answer\": \"The main delay for many people is the priority date movement. Check the Visa Bulletin and the Permanent Processing Times to get a better idea. That should give you a better understanding.\"}\n", + "{\"_question\": \"What is the normal duration to obtain a green card under the EB2 category? I have a master's degree in international business and 7 years of experience in the US and EU. I have been offered a job in America and I am looking to submit the petition.\",\n", + "\"_answer\": \"The biggest impediment for most people is the advancement of the priority date. Review the visa bulletin and the perm processing times. That should give you a good idea.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the usual timeline to obtain a green card through the EB2 category? I have a Master's in International Business and 7 years of experience in the US and Europe. I obtained a job offer from the US and I plan to submit the petition.\",\n", - "\"_answer\": \"The biggest hurdle for many people is the priority date movement. Have a look at the Visa Bulletin and the Permanent Processing Times for more information. That should provide you with a better understanding.\"} \n", + "{\"_question\": \"What is the average time required to acquire a green card via the EB2 category? I possess a master's degree in international business and 7 years of experience in the USA and Europe. I have received a job offer from the US and I am eager to file the petition.\",\n", + "\"_answer\": \"The most significant delay for most people is the progress of the priority date. Look at the visa bulletin and the perm processing times. That should give you a good idea.\"} \n", "\n", "\n", "\n", @@ -3819,16 +3676,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I meet the requirements for EB-2 eligibility? I recently had my PERM approved in the EB-2 category and I'm wondering if my education qualifies for the EB-2 category. I have a Bachelor's in Computing from the UK, which was a three-year course, and a Master's from the UK in Computing, which was a one-year course. Is this qualification enough for EB-2?\",\n", - "\"_answer\": \"It's hard to say. It all depends on the type of degrees and the language used in the form I-9089.\"}\n", + "{\"_question\": \"Can I use my education to qualify for EB-2? I have a Bachelor's in Computing from the UK which was a three year course and a Master's from the UK in Computing which was a one year course. Will this be enough to meet the requirements for EB-2?\",\n", + "\"_answer\": \"No way to know for sure. It all depends on the type of degrees and how they are described on the Form I-9089.\"}\n", "\n", "######\n", - "{\"_question\": \"Will my qualifications suffice for EB-2? My PERM was recently approved in the EB-2 category and I'm curious if my education meets the requirements. I have a Bachelor's in Computing from the UK, which was a three-year program, and a Master's from the UK in Computing, which was a one-year program. Is this enough for EB-2?\",\n", - "\"_answer\": \"It's impossible to tell. It all comes down to the type of degrees and the language used in the form I-9089.\"}\n", + "{\"_question\": \"Is my education sufficient for EB-2 status? I have a Bachelor's in Computing from the UK that took three years and a Master's from the UK in Computing that was a one year course. Will this qualify me for EB-2?\",\n", + "\"_answer\": \"Cannot be certain. It all comes down to the type of degrees and the way they are presented on the Form I-9089.\"}\n", "\n", "######\n", - "{\"_question\": \"Am I eligible for EB-2? I just had my PERM approved in the EB-2 category and I'm wondering if my education satisfies the EB-2 criteria. I have a Bachelor's in Computing from the UK, which was a three-year course, and a Master's from the UK in Computing, which was a one-year course. Is this qualification sufficient for EB-2?\",\n", - "\"_answer\": \"It's hard to predict. It all depends on the type of degrees and the language used in the form I-9089.\"} \n", + "{\"_question\": \"Am I eligible for EB-2? I have a Bachelor's in Computing from the UK that was a three year course and a Master's from the UK in Computing that was a one year course. Will this be enough to qualify for EB-2?\",\n", + "\"_answer\": \"Unable to tell. It all depends on the type of degrees and how they are described on the Form I-9089.\"} \n", "\n", "\n", "\n", @@ -3837,16 +3694,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can I take advantage of cross chargeability if I am on an H1B visa, born in India, and have an approved EB2 I-140, but cannot apply for I-485 due to a November 2008 priority date? Is it possible if my girlfriend, who was born in a country other than India or China, and is not currently in the US or on an H1B visa, marries me? Would that enable us to both file for I-485 immediately?\",\n", - "\"_answer\": \"Cross changeability is an option if your partner was born in a country different from yours. She can only submit her I-485 if she is in the US.\"}\n", + "{\"_question\": \"Can I use cross-chargeability if I was born in India and my H1B has an approved EB2 I-140, but I can't apply for the I-485 since my priority date is November 2008? Will marrying someone from a different country than India/China enable us to file for the I-485 right away?\",\n", + "\"_answer\": \"Cross-chargeability is an option if your partner was born in a country other than your own. Your spouse can submit their I-485 if they are currently in the US.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am on an H1B visa, born in India, and have an approved EB2 I-140, but cannot submit an I-485 due to a November 2008 priority date, can I take advantage of cross chargeability? What if my girlfriend, who was born in a country other than India or China, marries me? Would that allow us to file for I-485 straight away?\",\n", - "\"_answer\": \"Cross changeability is available if your partner was born in a different country from yours. She can only file her I-485 if she is in America.\"}\n", + "{\"_question\": \"I was born in India and have an approved EB2 I-140 for my H1B, but I can't file for the I-485 because my priority date is November 2008. If I marry someone from a different country than India/China, will that let us both apply for the I-485 straight away?\",\n", + "\"_answer\": \"Cross-chargeability is possible if your partner was born in a country other than your own. Your partner can file their I-485 if they are in the US.\"}\n", "\n", "######\n", - "{\"_question\": \"Since I am on an H1B visa, born in India, and have an approved EB2 I-140, but cannot apply for I-485 due to a November 2008 priority date, is cross chargeability an option? What if my girlfriend, who was born in a country other than India or China, and is not in the US or on an H1B visa, marries me? Would that enable us to both submit for I-485 right away?\",\n", - "\"_answer\": \"Cross changeability is possible if your spouse was born in a different country than yours. She can only submit her I-485 if she is in the US.\"} \n", + "{\"_question\": \"I was born in India and have an approved EB2 I-140 for my H1B, but I'm unable to apply for the I-485 due to my priority date being November 2008. If I marry someone from a different country than India/China, will that enable us to submit the I-485 immediately?\",\n", + "\"_answer\": \"Cross-chargeability is an option if your spouse was born in a different country than yours. Your partner can submit their I-485 if they are currently in the US.\"} \n", "\n", "\n", "\n", @@ -3855,16 +3712,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the chances of the US Embassy denying my EB2 approval from the USCIS?\",\n", - "\"_answer\": \"It is unlikely, however there is still a chance.\"}\n", + "{\"_question\": \"Can I still be refused by the US Embassy despite my EB2 being approved by the USCIS?\",\n", + "\"_answer\": \"It is improbable, yet possible.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I be denied by the US Embassy despite having my EB2 approved by the USCIS?\",\n", - "\"_answer\": \"The possibility exists, though it is not likely.\"}\n", + "{\"_question\": \"What are the chances of being rejected by the US Embassy despite having my EB2 approved by the USCIS?\",\n", + "\"_answer\": \"It is unlikely, yet achievable.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the probability of the US Embassy rejecting my EB2 approval from the USCIS?\",\n", - "\"_answer\": \"It is improbable, but not impossible.\"} \n", + "{\"_question\": \"Is it possible to be denied by the US Embassy even if the USCIS approved my EB2?\",\n", + "\"_answer\": \"It is improbable, yet doable.\"} \n", "\n", "\n", "\n", @@ -3873,16 +3730,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Would I be eligible to apply for permanent residency in the US under EB-2 if I have a Master's degree in Finance and 9 years of experience as a technology professional?\",\n", - "\"_answer\": \"Yes, provided that you have earned the degree prior to submitting your application for permanent residency.\"}\n", + "{\"_question\": \"Is it possible to apply for a permanent position under EB-2 if I am a technology professional with nine years of work experience and am graduating from a part-time MBA program with a concentration in finance this December?\",\n", + "\"_answer\": \"Yes, as long as you have earned your master's degree by the time you file for the permanent position, you should be eligible to apply for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"If I am a technology professional with a Master's degree in Finance and 9 years of experience, am I qualified to apply for EB-2 permanent residency?\",\n", - "\"_answer\": \"Yes, if you have the degree before you file your permanent residency application, you should be able to get EB-2.\"}\n", + "{\"_question\": \"If I am a technology professional with nine years of experience and am finishing a part-time MBA program with a concentration in finance this December, can I apply for a permanent position under EB-2?\",\n", + "\"_answer\": \"Yes, provided you have obtained your master's degree before you submit the permanent position application, you should be able to be eligible for EB-2.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I apply for EB-2 permanent residency with a Master's degree in Finance and 9 years of experience in technology?\",\n", - "\"_answer\": \"Yes, if you have obtained the degree before submitting your application for permanent residency, you should be eligible for EB-2.\"} \n", + "{\"_question\": \"Do I qualify for the EB-2 permanent position if I am a technology professional with nine years of work experience and will be graduating from a part-time MBA program (finance concentration) this December?\",\n", + "\"_answer\": \"Yes, as long as you have earned your master's degree before submitting your permanent position application, you should be able to get EB-2.\"} \n", "\n", "\n", "\n", @@ -3891,16 +3748,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Can company B refile my I-140 under EB2 if they acquired the assets from company A?\",\n", - "\"_answer\": \"It appears that there is a possibility to start a new PERM process under EB2 and transfer the priority date. You should discuss this with your legal counsel.\"}\n", + "{\"_question\":\"Can company B refile the I-140 using the labor certificate from company A and file it under EB2?\",\n", + "\"_answer\":\"It is likely that company B can use the labor certificate from company A to refile the I-140 under EB2. Consult with your legal team for further advice.\"}\n", "\n", "######\n", - "{\"_question\": \"If company B acquires the assets from company A, is it possible to refile my I-140 under EB2?\",\n", - "\"_answer\": \"It looks like this could be a good chance to initiate a new PERM process under EB2 and transfer the priority date. It is recommended that you consult with your attorney.\"}\n", + "{\"_question\":\"If company B takes over the assets of company A, can they use the labor certificate to refile the I-140 under EB2?\",\n", + "\"_answer\":\"It appears to be a viable option for company B to use the labor certificate from company A to refile the I-140 under EB2. It is recommended to consult with a legal team for more information.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it feasible for company B to refile my I-140 under EB2 if they take over the assets from company A?\",\n", - "\"_answer\": \"This could be a great opportunity to start a fresh PERM application under EB2 and switch the priority date. You should speak with your legal advisor about this.\"} \n", + "{\"_question\":\"Is it possible for company B to use the labor certificate from company A to refile the I-140 under EB2?\",\n", + "\"_answer\":\"It looks like company B can use the labor certificate from company A to refile the I-140 under EB2. It is advisable to talk to your legal team for more information.\"} \n", "\n", "\n", "\n", @@ -3909,16 +3766,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"I have a 10+3.5 years diploma and 3 years bs in Computer Engineering and Information Systems (BITS). My labor is being processed under the EB2 category, and I'm worried that my I-140 will get denied based on my education. Mr. Khanna, do you have any successful cases with a diploma and bs?\",\n", - "\"_answer\": \"I understand your concern. These cases can be tricky to get approved. I'm commenting in general because I don't know the specifics. It would be best to discuss your worries with your lawyer and get a response in writing if possible.\"}\n", + "{\"_question\": \"What is the likelihood of my I-140 being denied due to my educational background of 10+3.5 years diploma in computer engineering and 3 years bs in information systems (bits)?\",\n", + "\"_answer\": \"It is possible that your I-140 could be denied because of your educational background. It is best to discuss your concerns with your lawyer and see if you can get a written response.\"}\n", "\n", "######\n", - "{\"_question\": \"I have a combined 10+3.5 years diploma and 3 years bs in Computer Engineering and Information Systems (BITS). My labor is in the process of being approved under the EB2 category, but I'm concerned that my I-140 might be rejected due to my education. Mr. Khanna, do you have any past cases with a diploma and bs that were successful?\",\n", - "\"_answer\": \"I can see why you're concerned. These types of cases can be hard to get approved. I'm speaking generally here since I don't have the details. Talk to your attorney about your worries and try to get a written response if you can.\"}\n", + "{\"_question\": \"I am worried that my I-140 application will be refused because of my educational qualifications which include 10+3.5 years diploma in computer engineering and 3 years bs in information systems (bits). Mr. Khanna, do you have any cases that have been approved with this type of education?\",\n", + "\"_answer\": \"It is likely that your apprehension is valid. These types of cases are difficult to get approved. I am unable to give you a definitive answer because I do not know the exact facts. You should speak to your lawyer about your worries and see if you can get a written response.\"}\n", "\n", "######\n", - "{\"_question\": \"I obtained a 10+3.5 years diploma and 3 years bs in Computer Engineering and Information Systems (BITS). My labor is currently being reviewed under the EB2 category, but I'm worried that my I-140 may be denied because of my education. Mr. Khanna, do you have any approved cases with a diploma and bs?\",\n", - "\"_answer\": \"I understand your apprehension. These kinds of cases can be difficult to get approved. I'm speaking generally since I don't know the specifics. It's best to discuss your fears with your lawyer and try to get a written response if possible.\"} \n", + "{\"_question\": \"I am concerned that my I-140 will be rejected due to my educational background which is 10+3.5 years diploma in computer engineering and 3 years bs in information systems (bits). Mr. Khanna, do you have any successful cases with this kind of education?\",\n", + "\"_answer\": \"You have reason to be concerned. It is not easy to get approval for this type of situation. I cannot give you an exact answer without knowing the facts. It is best to talk to your lawyer about your worries and see if you can get a written response.\"} \n", "\n", "\n", "\n", @@ -3927,16 +3784,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What are the prospects for my second EB1 application?\",\n", - "\"_answer\": \"It's hard to say without knowing the details of your case. It's like trying to diagnose a patient without having access to them or their records.\"}\n", + "{\"_question\": \"What are the odds of my EB1 Extraordinary Ability petition being accepted in my second filing?\",\n", + "\"_answer\": \"It is impossible to predict the outcome of your petition without more information about your case.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the odds of my EB1 application succeeding this time?\",\n", - "\"_answer\": \"It's impossible to give an accurate prediction without having more information. It's like trying to diagnose a patient without seeing them or their records.\"}\n", + "{\"_question\": \"What is the likelihood of me getting approval for my EB1 Extraordinary Ability petition in my second filing?\",\n", + "\"_answer\": \"It is impossible to provide an accurate assessment without more information regarding your case.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the likelihood of my EB1 application succeeding on a second attempt?\",\n", - "\"_answer\": \"It's not possible to give a reliable answer without more information. It's like trying to diagnose a patient without access to them or their records.\"} \n", + "{\"_question\": \"What is the probability of my EB1 Extraordinary Ability petition being approved in my second filing?\",\n", + "\"_answer\": \"It is impossible to give a definitive answer without more information about your situation.\"} \n", "\n", "\n", "\n", @@ -3945,16 +3802,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB2 visa? I have a Bachelor's Degree (BSN) in Nursing, completed a medical program equivalent to a Master's Degree, and have been an administrator at a top nursing school in Manila for 5 years. I'm also working on my PhD in Biology at a top university in Manila. Is an EB2 petition family-based? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB stands for employment-based. To qualify for an EB2 visa, you must have either a postgraduate degree (by US standards) or a four-year Bachelor's Degree with five years of progressively responsible experience. You should consult with your attorney about applying for an EB2 and transferring your priority date.\"}\n", + "{\"_question\": \"Do I qualify for an EB-2 visa given my academic background?\",\n", + "\"_answer\": \"EB-2 is available for those who have a post-graduate degree (according to US standards) or a 4 year bachelor's degree with five years of progressively responsible experience. You should consult your lawyer to explore the possibility of applying for an EB-2 and transferring your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"I am currently petitioned under EB3, but my application has been affected by retrogression. Can I apply for an EB2 visa? I have a Bachelor's Degree (BSN) in Nursing, took up a medical program equivalent to a Master's Degree, and have been a faculty/administrator at a top nursing school in Manila for 5 years. I am also pursuing my PhD in Biology at a top university in Manila. Am I eligible for an EB2? Is an EB2 petition family-based? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB stands for employment-based. In order to qualify for an EB2 visa, you must have either a postgraduate degree (by US standards) or a four-year Bachelor's Degree with five years of progressively responsible experience. You should consult with your lawyer about applying for an EB2 and transferring your priority date.\"}\n", + "{\"_question\": \"Can I apply for an EB-2 visa despite the retrogression?\",\n", + "\"_answer\": \"Yes, you may be eligible to apply for an EB-2 visa. This type of visa is available to those who have a post-graduate degree (according to US standards) or a 4 year bachelor's degree with five years of progressively responsible experience. You should speak with your lawyer to discuss the possibility of transferring your priority date.\"}\n", "\n", "######\n", - "{\"_question\": \"I have been petitioned under EB3 and am stuck with retrogression. Can I apply for an EB2 visa? I have a Bachelor's Degree (BSN) in Nursing, completed a medical program equivalent to a Master's Degree, and have been a faculty/administrator at a top nursing school in Manila for 5 years. I am also working on my PhD in Biology at a top university in Manila. Am I eligible for an EB2? Is an EB2 petition family-based? My parents live in New Jersey.\", \n", - "\"_answer\": \"EB stands for employment-based. To be eligible for an EB2 visa, you must have either a postgraduate degree (by US standards) or a four-year Bachelor's Degree with five years of progressively responsible experience. You should speak with your attorney about applying for an EB2 and transferring your priority date.\"} \n", + "{\"_question\": \"Will my parents be able to join me if I am granted an EB-2 visa?\",\n", + "\"_answer\": \"EB-2 is an employment-based visa, so it is not a family-based petition. However, your parents may be eligible to apply for a family-based visa. You should consult your lawyer to explore the possibility of applying for an EB-2 and transferring your priority date.\"} \n", "\n", "\n", "\n", @@ -3963,16 +3820,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I need to wait for the diploma to apply for EB2?\",\n", - "\"_answer\": \"Usually, when it comes to immigration law, it is the completion of the degree that matters, not the formal diploma. Consult with your attorneys.\"}\n", + "{\"_question\": \"What is the standard for immigration law when it comes to degree completion? I have a full official transcript and a letter confirming that I have fulfilled all the requirements for my master's degree. The university's next graduation date is January 30, 2009, when I will receive the diploma. Can I use the full official transcript to apply for the EB2 visa or do I need to wait until I receive the diploma?\", \n", + "\"_answer\": \"Generally, immigration law looks at when the degree was finished, not when the diploma was given. Consult with your attorneys for more information.\"}\n", "\n", "######\n", - "{\"_question\": \"When can I apply for EB2?\",\n", - "\"_answer\": \"Immigration law typically looks at when the degree was finished, not when the diploma is awarded. Speak to your legal advisors.\"}\n", + "{\"_question\": \"What is the criterion for immigration law regarding degree completion? I have a full, official transcript as well as a letter verifying that I have completed all the requirements for my master's degree. The university's next graduation date is January 30, 2009, when I will get the diploma. Can I submit the full, official transcript for my EB2 visa application or do I have to wait until I get the diploma?\", \n", + "\"_answer\": \"Generally, immigration law focuses on when the degree was finished - not when the diploma was awarded. Speak with your lawyers for more information.\"}\n", "\n", "######\n", - "{\"_question\": \"What is the basis for EB2 application?\",\n", - "\"_answer\": \"The law of immigration usually takes into account when the degree was completed, not when the diploma was presented. You should contact your lawyers.\"} \n", + "{\"_question\": \"What is the standard for immigration law when it comes to degree completion? I have a full, official transcript and a letter confirming that I have met all the requirements for my master's degree. The university's next graduation date is January 30, 2009, when I will obtain the diploma. Can I use the full, official transcript to apply for the EB2 visa or do I have to wait until I receive the diploma?\", \n", + "\"_answer\": \"Generally, immigration law looks at when the degree was completed - not when the diploma was given. Consult with your attorneys for more information.\"} \n", "\n", "\n", "\n", @@ -3981,16 +3838,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"What is the chance of being denied due to educational qualifications when filing under EB-2?\",\n", - "\"_answer\": \"It is possible for USCIS to query your educational background at any stage of the process, but it is more likely to be questioned in detail during the I-140 stage.\"}\n", + "{\"_question\": \"What is the risk of being denied due to educational qualifications in the EB-2 category?\", \n", + "\"_answer\": \"The educational requirements are typically scrutinized in depth during the I-140 stage, however, USCIS can inquire about them at any time. I have seen I-140s that have been approved and then revoked during the I-485 stage.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the risks of denial when filing for EB-2 based on educational qualifications?\",\n", - "\"_answer\": \"USCIS may bring up any issues related to your educational qualifications at any point during the process, but it is more often looked at closely during the I-140 phase. I have seen I-140's that were approved and then denied at the I-485 stage.\"}\n", + "{\"_question\": \"What is the likelihood of being refused on the basis of one's educational background under the EB-2 category?\", \n", + "\"_answer\": \"It is typical for one's educational background to be closely examined at the I-140 stage, but USCIS could raise questions about it at any point. There have been cases of I-140s that were accepted and then denied during the I-485 stage.\"}\n", "\n", "######\n", - "{\"_question\": \"When is the most likely time for educational qualifications to be denied for EB-2?\",\n", - "\"_answer\": \"The I-140 phase is usually when educational qualifications are examined in depth. However, USCIS may raise any questions at any stage, and I have seen cases where an approved I-140 was reversed at the I-485 stage.\"} \n", + "{\"_question\": \"What is the chance of refusal due to educational qualifications when filing under EB-2?\", \n", + "\"_answer\": \"The educational qualifications are usually assessed in detail at the I-140 stage, however, USCIS could bring it up at any stage. I have seen approved I-140s that were overturned and denied at the I-485 stage.\"} \n", "\n", "\n", "\n", @@ -3999,16 +3856,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I qualify for an EB2 green card if I have a B.Sc in Physics from India and a MCA in IT from the same country?\",\n", - "\"_answer\": \"It is possible, though your lawyer should craft the PERM application with care to ensure that if EB2 is rejected, EB3 is still an option.\"}\n", + "{\"_question\": \"Is it feasible to file for an employment-based green card in the EB2 category if I have a B.Sc. in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"Yes, it is possible, however, it is important to have your lawyers draft the PERM application carefully so that even if EB2 is denied, EB3 may still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of me getting an EB2 visa if my educational background includes a B.Sc in Physics from India and a MCA in IT from the same country?\",\n", - "\"_answer\": \"It is a possibility, however your attorney should be sure to construct the PERM application cautiously so that if EB2 is denied, EB3 is still a viable option.\"}\n", + "{\"_question\": \"Can I apply for an employment-based green card in the EB2 classification if I have a B.Sc. in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"Yes, it is a possibility, but it is important that your lawyers create the PERM application carefully so that if EB2 is rejected, EB3 may still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have a B.Sc in Physics from India and a MCA in IT from the same country, can I apply for an EB2 green card?\",\n", - "\"_answer\": \"It is feasible, but your legal representative should formulate the PERM application prudently so that if EB2 is denied, EB3 is still available.\"} \n", + "{\"_question\": \"Is it possible to submit an application for an employment-based green card in the EB2 category if I have a B.Sc. in Physics from India and an MCA in IT?\",\n", + "\"_answer\": \"Yes, it is doable, however, it is essential to have your lawyers craft the PERM application cautiously so that if EB2 is denied, EB3 may still be accepted.\"} \n", "\n", "\n", "\n", @@ -4017,16 +3874,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Is it feasible to apply for an employment-based green card in the EB2 category if I have a B.Sc in Physics from India and a Masters in Computer Science from the same country?\",\n", - "\"_answer\": \"Yes, but make sure your lawyers draft the PERM application carefully to ensure that if EB2 is denied, EB3 is still a viable option.\"}\n", + "{\"_question\": \"Do I qualify for an EB2 visa? I have a B.Sc in Physics from India and an MCA in IT from India. Can I file for an employment-based green card in the EB2 category if I am applying for a job in an IT company?\",\n", + "\"_answer\": \"It is feasible, but make sure your attorneys carefully construct the PERM application. That way, if the EB2 is denied, the EB3 may still be accepted.\"}\n", "\n", "######\n", - "{\"_question\": \"Can I obtain an employment-based green card in the EB2 classification with a B.Sc in Physics from India and a Masters in Computer Science from the same nation?\",\n", - "\"_answer\": \"Yes, it is possible. Advise your attorneys to draft the PERM application with caution so that if EB2 is not granted, EB3 is still an option.\"}\n", + "{\"_question\": \"Am I eligible for an EB2 visa? I have a B.Sc in Physics from India and an MCA in IT from India. Could I file for an employment-based green card in the EB2 category if I am applying for a job in an IT company?\",\n", + "\"_answer\": \"It is feasible, but your lawyers should craft the PERM application cautiously. That way, if the EB2 is denied, the EB3 could still be approved.\"}\n", "\n", "######\n", - "{\"_question\": \"Would I be eligible for an employment-based green card in the EB2 category if I have a B.Sc in Physics from India and a Masters in Computer Science from the same country?\",\n", - "\"_answer\": \"Yes, but make sure your legal team prepares the PERM application carefully to ensure that if EB2 is not approved, EB3 is still an option.\"} \n", + "{\"_question\": \"EB2 qualification. I have a question about EB2 eligibility. I have a B.Sc in Physics from India and an MCA in IT from India. Can I submit an employment-based green card in the EB2 category if I am applying for a job in an IT company?\",\n", + "\"_answer\": \"It is doable, but have your attorneys carefully compose the PERM application. That way, if the EB2 is rejected, the EB3 may still be granted.\"} \n", "\n", "\n", "\n", @@ -4035,16 +3892,16 @@ "\n", "\n", "######\n", - "{\"_question\": \"Does my wife qualify for EB2 processing similar to physical therapists as she has a post professional degree in occupational therapy from a well-known school?\",\n", - "\"_answer\": \"Unfortunately, occupational therapists do not have a special category like physical therapists. However, EB2 may be possible. Your wife should consult with her lawyers for more information.\"}\n", + "{\"_question\": \"Does my wife qualify for EB2 processing as an occupational therapist?\",\n", + "\"_answer\": \"OT's do not have a special category like physical therapists, but it is possible to apply for EB-2. Your wife should consult with her lawyers to determine if she qualifies.\"}\n", "\n", "######\n", - "{\"_question\": \"What are the chances of my wife obtaining EB2 processing with her post professional degree in occupational therapy from a reputable school?\",\n", - "\"_answer\": \"Occupational therapists do not have a special category like physical therapists. Nevertheless, EB2 might be achievable. Your wife should talk to her lawyers for more details.\"}\n", + "{\"_question\": \"What is the process for my wife to apply for EB2 with her occupational therapist degree?\",\n", + "\"_answer\": \"OT's do not have a special pathway like physical therapists, but it is possible to apply for EB-2. Your wife should speak with her lawyers to find out if she meets the criteria.\"}\n", "\n", "######\n", - "{\"_question\": \"Is it possible for my wife to get EB2 processing with her OT degree from a well-known school?\",\n", - "\"_answer\": \"Occupational therapists do not have a separate category like physical therapists. Nonetheless, EB2 could be possible. Your wife should consult with her lawyers for more information.\"} \n", + "{\"_question\": \"Can my wife use her occupational therapist degree to apply for EB2?\",\n", + "\"_answer\": \"OT's do not have a dedicated category like physical therapists, but it is possible to apply for EB-2. Your wife should check with her lawyers to see if she is eligible.\"} \n", "\n", "\n", "\n", @@ -4053,16 +3910,12 @@ "\n", "\n", "######\n", - "{\"_question\": \"Do I have the qualifications to apply for an EB-2 green card if I have 3 years of IT experience and am in the process of completing a master's degree?\",\n", - "\"_answer\": \"Yes, you should have the qualifications to apply for an EB-2 green card if you have 3 years of IT experience and have completed a master's degree.\"}\n", + "{\"_question\": \"I have 3 years of experience in the IT field and am looking to finish a master's degree. Is it a good idea to pursue a master's degree while having 3 years of work experience? Please give me your advice.\",\n", + "\"_answer\": \"I understand you are inquiring if you can apply for an EB-2 visa. The answer is yes, once you have obtained your master's degree and have a job that requires the degree or a bachelor's degree plus 5 years of experience.\"}\n", "\n", "######\n", - "{\"_question\": \"If I have 3 years of IT experience and am working towards a master's degree, can I apply for an EB-2 green card?\",\n", - "\"_answer\": \"Yes, you should be able to apply for an EB-2 green card with 3 years of IT experience and a master's degree.\"}\n", - "\n", - "######\n", - "{\"_question\": \"If I have 3 years of experience in IT and am finishing a master's degree, do I qualify for an EB-2 green card?\",\n", - "\"_answer\": \"Yes, you should qualify for an EB-2 green card with 3 years of experience in IT and a completed master's degree.\"} \n", + "{\"_question\": \"I have 3 years of experience in IT and am about to complete my master's. Is it beneficial to do the MS while having 3 years of work experience? Please provide me with your opinion.\",\n", + "\"_answer\": \"I'm assuming you are asking if you can submit an application for an EB-2 green card. The answer is yes, once you have finished your master's and have a job that needs the degree or a bachelor's plus five years of experience.\"} \n", "\n", "\n", "\n" @@ -4073,12 +3926,12 @@ "qaa_augmented_raw = []\n", "for id, batch_inputs_string in enumerate(qaa_list_encoded):\n", " print(id, \"\\n\") # \"\\n\\n\\n\", \"input:\\n\", batch_inputs_string, \"\\n\"\n", - " completion_batch = client.completions.create(\n", - " prompt=batch_inputs_string,\n", + " completion_batch = openai.Completion.create(\n", + " prompt=batch_inputs_string, \n", " model=\"text-davinci-003\",\n", " temperature = 0.5,\n", " max_tokens = 2000 # The maximum number of tokens to generate in the completion\n", - " ).model_dump()\n", + " )\n", " results_string = completion_batch['choices'][0]['text']\n", " print(results_string, \"\\n\\n\\n\")\n", " qaa_augmented_raw.append(results_string)" @@ -4094,7 +3947,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 125, "id": "3df4c39b-fca0-4f80-a5ef-2e5b9c790b4d", "metadata": {}, "outputs": [], @@ -4129,7 +3982,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 126, "id": "ad7db994-92b6-4c17-b083-2dbddacd272c", "metadata": {}, "outputs": [], @@ -4149,17 +4002,17 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 127, "id": "9269aba8-ee1e-4f71-bf1c-e80d806b0842", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'\\n\\n######\\n{\"_question\": \"Can I begin the green card process if my H-1B is picked in the lottery and I have a master\\'s degree in engineering management?\",\\n\"_answer\": \"Yes, your employer can initiate the green card process even before you start working. You can check the salary requirements for EB-2 advanced degree holders by county and profession by visiting this website - https://www.flcdatacenter.com/\"}\\n\\n######\\n{\"_question\": \"If I have a master\\'s degree in engineering management and my employer files my H-1B, can I start the green card process if it is selected in the lottery?\",\\n\"_answer\": \"Yes, the green card process can be initiated by the employer before you join. You can view the salary cap for EB-2 advanced degree holders by county and profession by using this link - https://www.flcdatacenter.com/\"}\\n\\n######\\n{\"_question\": \"If I have a master\\'s degree in engineering management and my employer submits my H-1B, can I initiate the green card process if it is chosen in the lottery?\",\\n\"_answer\": \"Yes, the employer can begin the green card process even before you join. You can see the salary figures for EB-2 advanced degree holders by county and profession by consulting this website - https://www.flcdatacenter.com/\"}'" + "'\\n\\n######\\n{\"_question\": \"Do I need to wait before beginning the green card process if my employer files an H-1B and the lottery is picked?\",\\n\"_answer\": \"No, the employer can initiate the green card process prior to your joining. You can review the salary figures by county and profession at this link -https://www.flcdatacenter.com/\"}\\n\\n######\\n{\"_question\": \"Can I start the green card process if my employer has filed an H-1B and it has been selected in the lottery?\",\\n\"_answer\": \"Yes, the employer can begin the green card process even before you join. Check out this link -https://www.flcdatacenter.com/ to view the salary figures by county and profession.\"}\\n\\n######\\n{\"_question\": \"If my employer files an H-1B and it is selected in the lottery, when can I start the green card process?\",\\n\"_answer\": \"The employer can initiate the green card process prior to your joining. You can examine the salary figures by county and profession at this link -https://www.flcdatacenter.com/\"}'" ] }, - "execution_count": 18, + "execution_count": 127, "metadata": {}, "output_type": "execute_result" } @@ -4192,7 +4045,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 38, "id": "ec478198-784d-4b53-8dd0-293ef337814a", "metadata": {}, "outputs": [], @@ -4200,7 +4053,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 128, "id": "1284802f-185f-4783-9cd1-26706baafbdf", "metadata": {}, "outputs": [ @@ -4208,25 +4061,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "unterminated string literal (detected at line 3) (, line 3)\n", - "\n", - "{\"_question\": \"What is the educational criteria for EB-2?\",\n", - "\"_answer\": \"In June 2007, USCIS clarified what is considered to be equivalent to a U.S. master's degree for employment-based category 2. Each petition and its supporting documentation are examined on a case-by-case basis and degree equivalencies are based on the evidence presented with the individual case. However, the below is provided as a general outline: 1. U.S. master's degree as long as it is in the field required, no additional document is required. 2. Four-year bachelor's degree + two-year master's degree (India) with degrees in the same or related fields, this will generally be considered the equivalent to a U.S. master's degree and no additional document is required. 3. Three-year bachelor's degree + three-year master's degree (India) with degrees in the same or related fields, this will generally be equivalent to a U.S. master's degree and no additional document is required. 4. Three-year bachelor's degree + one-year postgraduate diploma + two-year master's degree (India) with degrees in the same or similar field - this would generally be considered the equivalent of a bachelor's degree plus one additional year of education. Therefore, the beneficiary would also need to have five years' progressive experience. If the postgraduate diploma is determined to be progressive postgraduate education that is a continuation of the three-year bachelor's degree, it is possible that this would be considered the equivalent to a U.S. master's degree and there would be no need to establish five years' progressive experience. 5. Three-year bachelor's degree + two-year master's degree (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference (EB-2) category. 6. Three-year bachelor's degree + two-year master's degree (India) + five years' progressive, post-master's degree experience generally, the educational degrees would be determined to be the equivalent of a U.S. bachelor's + one year and the beneficiary would meet the statutory requirement. 7. Three-year bachelor's degree + two-year master's degree + one-year postgraduate diploma (India) generally, this would be the equivalent of a bachelor's degree + one year and would require five years' progressive experience to qualify under the 2nd preference category (EB-2). If the postgraduate diploma is determined to be\n", - "\n", - "\n", - "\n", - "\n", - "invalid syntax. Perhaps you forgot a comma? (, line 2)\n", - "\n", - "{\"_question\": \"I'm an Indian citizen and my wife is a Russian citizen, born in Russia. We would like to apply for a green card together and I was wondering if I can use her country's priority date (\"current\" as of today) for the green card?\",\n", - "\"_answer\": \"Yes, that is possible. This is known as 'cross changeability'.\"}\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "273\n" + "276\n" ] } ], @@ -4241,7 +4076,7 @@ " try:\n", " str2dict = ast.literal_eval(item)\n", " QApair_dict.append(str2dict)\n", - " except Exception as e:\n", + " except Exception as e: \n", " print(e)\n", " print(item)\n", " print(\"\\n\\n\\n\")\n", @@ -4255,7 +4090,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 129, "id": "d7f4de55-00fe-4fdd-afa6-1eda97d6dd5f", "metadata": {}, "outputs": [ @@ -4287,28 +4122,28 @@ " \n", " \n", " 0\n", - " Can I begin the green card process if my H-1B ...\n", - " Yes, your employer can initiate the green card...\n", + " Do I need to wait before beginning the green c...\n", + " No, the employer can initiate the green card p...\n", " \n", " \n", " 1\n", - " If I have a master's degree in engineering man...\n", - " Yes, the green card process can be initiated b...\n", + " Can I start the green card process if my emplo...\n", + " Yes, the employer can begin the green card pro...\n", " \n", " \n", " 2\n", - " If I have a master's degree in engineering man...\n", - " Yes, the employer can begin the green card pro...\n", + " If my employer files an H-1B and it is selecte...\n", + " The employer can initiate the green card proce...\n", " \n", " \n", " 3\n", - " What is the eligibility and process for upgrad...\n", - " It is possible to upgrade from EB-3 to EB-2 st...\n", + " What is the process for upgrading from EB-3 to...\n", + " It is possible to upgrade from EB-3 to EB-2 as...\n", " \n", " \n", " 4\n", - " Can you explain the process for changing from ...\n", - " If the PERM was originally filed as an EB-2, i...\n", + " What is involved in the EB-3 to EB-2 porting p...\n", + " If the PERM was submitted as an EB-2, you can ...\n", " \n", " \n", " ...\n", @@ -4316,66 +4151,66 @@ " ...\n", " \n", " \n", - " 268\n", - " What are the chances of my wife obtaining EB2 ...\n", - " Occupational therapists do not have a special ...\n", + " 271\n", + " Does my wife qualify for EB2 processing as an ...\n", + " OT's do not have a special category like physi...\n", " \n", " \n", - " 269\n", - " Is it possible for my wife to get EB2 processi...\n", - " Occupational therapists do not have a separate...\n", + " 272\n", + " What is the process for my wife to apply for E...\n", + " OT's do not have a special pathway like physic...\n", " \n", " \n", - " 270\n", - " Do I have the qualifications to apply for an E...\n", - " Yes, you should have the qualifications to app...\n", + " 273\n", + " Can my wife use her occupational therapist deg...\n", + " OT's do not have a dedicated category like phy...\n", " \n", " \n", - " 271\n", - " If I have 3 years of IT experience and am work...\n", - " Yes, you should be able to apply for an EB-2 g...\n", + " 274\n", + " I have 3 years of experience in the IT field a...\n", + " I understand you are inquiring if you can appl...\n", " \n", " \n", - " 272\n", - " If I have 3 years of experience in IT and am f...\n", - " Yes, you should qualify for an EB-2 green card...\n", + " 275\n", + " I have 3 years of experience in IT and am abou...\n", + " I'm assuming you are asking if you can submit ...\n", " \n", " \n", "\n", - "

273 rows × 2 columns

\n", + "

276 rows × 2 columns

\n", "" ], "text/plain": [ " _question \\\n", - "0 Can I begin the green card process if my H-1B ... \n", - "1 If I have a master's degree in engineering man... \n", - "2 If I have a master's degree in engineering man... \n", - "3 What is the eligibility and process for upgrad... \n", - "4 Can you explain the process for changing from ... \n", + "0 Do I need to wait before beginning the green c... \n", + "1 Can I start the green card process if my emplo... \n", + "2 If my employer files an H-1B and it is selecte... \n", + "3 What is the process for upgrading from EB-3 to... \n", + "4 What is involved in the EB-3 to EB-2 porting p... \n", ".. ... \n", - "268 What are the chances of my wife obtaining EB2 ... \n", - "269 Is it possible for my wife to get EB2 processi... \n", - "270 Do I have the qualifications to apply for an E... \n", - "271 If I have 3 years of IT experience and am work... \n", - "272 If I have 3 years of experience in IT and am f... \n", + "271 Does my wife qualify for EB2 processing as an ... \n", + "272 What is the process for my wife to apply for E... \n", + "273 Can my wife use her occupational therapist deg... \n", + "274 I have 3 years of experience in the IT field a... \n", + "275 I have 3 years of experience in IT and am abou... \n", "\n", " _answer \n", - "0 Yes, your employer can initiate the green card... \n", - "1 Yes, the green card process can be initiated b... \n", - "2 Yes, the employer can begin the green card pro... \n", - "3 It is possible to upgrade from EB-3 to EB-2 st... \n", - "4 If the PERM was originally filed as an EB-2, i... \n", + "0 No, the employer can initiate the green card p... \n", + "1 Yes, the employer can begin the green card pro... \n", + "2 The employer can initiate the green card proce... \n", + "3 It is possible to upgrade from EB-3 to EB-2 as... \n", + "4 If the PERM was submitted as an EB-2, you can ... \n", ".. ... \n", - "268 Occupational therapists do not have a special ... \n", - "269 Occupational therapists do not have a separate... \n", - "270 Yes, you should have the qualifications to app... \n", - "271 Yes, you should be able to apply for an EB-2 g... \n", - "272 Yes, you should qualify for an EB-2 green card... \n", + "271 OT's do not have a special category like physi... \n", + "272 OT's do not have a special pathway like physic... \n", + "273 OT's do not have a dedicated category like phy... \n", + "274 I understand you are inquiring if you can appl... \n", + "275 I'm assuming you are asking if you can submit ... \n", "\n", - "[273 rows x 2 columns]" + "[276 rows x 2 columns]" ] }, - "execution_count": 20, + "execution_count": 129, "metadata": {}, "output_type": "execute_result" } @@ -4387,7 +4222,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 130, "id": "a81743fb-966a-4c40-8e32-3bd2f7f7ee4d", "metadata": {}, "outputs": [], @@ -4412,7 +4247,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.13" + "version": "3.10.12" } }, "nbformat": 4, From 1428aba89ece4b947224715e2d58e0da34ec53d2 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Wed, 10 Jan 2024 07:49:25 +0000 Subject: [PATCH 5/9] support training multiple epochs in sft. Temporarily use all entries in the dataset as training dataset (i.e., no eval) --- example/rlhf/supervised_finetuning_d2l.py | 9 ++++- pykoi/rlhf/config.py | 1 + pykoi/rlhf/supervised_finetuning.py | 47 ++++++++++++++--------- 3 files changed, 38 insertions(+), 19 deletions(-) diff --git a/example/rlhf/supervised_finetuning_d2l.py b/example/rlhf/supervised_finetuning_d2l.py index 0e50a85..172d1f3 100644 --- a/example/rlhf/supervised_finetuning_d2l.py +++ b/example/rlhf/supervised_finetuning_d2l.py @@ -29,9 +29,16 @@ from peft import LoraConfig config = RLHFConfig(base_model_path="mistralai/Mistral-7B-Instruct-v0.1", dataset_type="local_csv", dataset_name="data/chapter22_trnvalfromseed_data_processed.csv", - train_test_split_ratio=0.1, + train_test_split_ratio=0, # ratio for test set DH:TODO: COBINE TRAIN AND EVAL max_seq_length=896, per_device_eval_batch_size = 1, + log_freq=20, + # dh: NOTE: 1 EPOCH iterates the dataset once. So log freq 20 means iterating 20 entries when training batch size = 1. + # (i.e., log_freq = 0.12 epoch when the dataset has 166 entires). + save_freq=40000, + num_train_epochs=20, + max_steps=-1, # if a positive number is given, it will override num_train_epochs + device_map="auto", lora_config_rl = LoraConfig( r=512, lora_alpha=1024, diff --git a/pykoi/rlhf/config.py b/pykoi/rlhf/config.py index c34d68e..10d7184 100644 --- a/pykoi/rlhf/config.py +++ b/pykoi/rlhf/config.py @@ -120,6 +120,7 @@ class RLHFConfig: default="./rlhf_checkpoints", metadata={"help": "Output directory for all model weights."}, ) + num_train_epochs: Optional[int] = field(default=5, metadata={"help": "supervised fine tuning training epochs"}) log_freq: Optional[int] = field(default=1, metadata={"help": "Logging frequency."}) eval_freq: Optional[int] = field( default=1000, metadata={"help": "Evaluation frequency."} diff --git a/pykoi/rlhf/supervised_finetuning.py b/pykoi/rlhf/supervised_finetuning.py index c5e8ed6..27c8369 100644 --- a/pykoi/rlhf/supervised_finetuning.py +++ b/pykoi/rlhf/supervised_finetuning.py @@ -84,6 +84,7 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No weight_decay=self._rlhf_config.weight_decay, run_name="step1_supervised_finetuning", ddp_find_unused_parameters=False, + num_train_epochs=self._rlhf_config.num_train_epochs, ) self.model = AutoModelForCausalLM.from_pretrained( self._rlhf_config.base_model_path, @@ -257,9 +258,14 @@ def create_datasets(self, tokenizer, args): ) dataset = Dataset.from_dict(my_data_pd) elif args.dataset_type == "local_csv": - dataset = load_dataset("csv", data_files=args.dataset_name) - dataset = dataset[args.split] # Convert DatasetDict to Dataset - dataset2 = load_dataset("csv", data_files=args.dataset_name, split='train[:10%]') + ## this way will load 1660 enetries + # dataset = load_dataset("csv", data_files=args.dataset_name) + # dataset = dataset[args.split] # Convert DatasetDict to Dataset + + # this way will load 166 entries + + dataset = load_dataset("csv", data_files=args.dataset_name, split='train[:10%]') + elif args.dataset_type == "huggingface": dataset = load_dataset( args.dataset_name, @@ -275,29 +281,34 @@ def create_datasets(self, tokenizer, args): "No (supported) data files or dataset script found" f" {args.dataset_type}" ) - - dataset = dataset.train_test_split( - test_size=args.train_test_split_ratio, seed=args.seed - ) + + # dh: temp change. No test set + # dataset = dataset.train_test_split( + # test_size=args.train_test_split_ratio, seed=args.seed + # ) print( - f"Size of the train set: {len(dataset['train'])}. " - f" Size of the validation set: {len(dataset['test'])}" + f"Size of the train set: {len(dataset)}. " + #f"Size of the train set: {len(dataset['train'])}. " + #f" Size of the validation set: {len(dataset['test'])}" ) train_dataset = ConstantLengthDataset( tokenizer, - dataset["train"], + dataset, + #dataset["train"], #dh: temp change. No test set formatting_func=self.prepare_d2l_text, infinite=True, seq_length=args.max_seq_length, # chars_per_token=chars_per_token, ) - eval_dataset = ConstantLengthDataset( - tokenizer, - dataset["test"], - formatting_func=self.prepare_d2l_text, - infinite=False, - seq_length=args.max_seq_length, - # chars_per_token=chars_per_token, - ) + # temp change: no test set + # eval_dataset = ConstantLengthDataset( + # tokenizer, + # dataset["test"], + # formatting_func=self.prepare_d2l_text, + # infinite=False, + # seq_length=args.max_seq_length, + # # chars_per_token=chars_per_token, + # ) + eval_dataset = None return {"train": train_dataset, "eval": eval_dataset} From 880fefc107e9200149e160c6f5783eb024234578 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Wed, 17 Jan 2024 08:27:50 +0000 Subject: [PATCH 6/9] implment evaluation of fine-tuned models with pykoi pipeline --- .../demo_supervised_finetuning_d2l_eval.ipynb | 467 ++++++++++++++++++ 1 file changed, 467 insertions(+) create mode 100644 example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb diff --git a/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb b/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb new file mode 100644 index 0000000..966860f --- /dev/null +++ b/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb @@ -0,0 +1,467 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "c9e5fc9d-a419-4f72-95e5-aa7c47554b01", + "metadata": {}, + "source": [ + "## Load fine-tuned model" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "d78cf816-c6a4-4a9d-90d5-79762107d394", + "metadata": {}, + "outputs": [], + "source": [ + "import sys, os\n", + "BASE_MODEL = \"mistralai/Mistral-7B-Instruct-v0.1\"\n", + "OUTPUT_DIR = os.getcwd()+\"/../../models/rlhf_step1_sft/\"\n", + "device_map=\"auto\"\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "18b63528-6b3a-42d8-afac-d6273d59546c", + "metadata": {}, + "outputs": [], + "source": [ + "from peft import PeftModel, PeftConfig\n", + "config = PeftConfig.from_pretrained(OUTPUT_DIR)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "00a810f9-9329-4efd-9156-fe36ddf8a432", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from transformers import AutoTokenizer\n", + "import sys, os\n", + "sys.path.append(os.getcwd()+\"/../../\")\n", + "from pykoi.chat.llm.instruct_pipeline import END_KEY, INSTRUCTION_KEY, RESPONSE_KEY, INTRO_BLURB\n", + "tokenizer_ft = AutoTokenizer.from_pretrained(config.base_model_name_or_path)\n", + "tokenizer_ft.pad_token = tokenizer_ft.eos_token\n", + "tokenizer_ft.add_special_tokens({\"additional_special_tokens\": [END_KEY, INSTRUCTION_KEY, RESPONSE_KEY+\"_NL\"]})" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "5b0d1142-1d5b-40f6-b9b1-676f2a4a2317", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Loading checkpoint shards: 100%|██████████| 2/2 [01:49<00:00, 54.80s/it]\n" + ] + } + ], + "source": [ + "from transformers import AutoModelForCausalLM\n", + "model_ft = AutoModelForCausalLM.from_pretrained( \n", + " config.base_model_name_or_path, \n", + " #load_in_8bit=True,\n", + " device_map=device_map,\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "94a10174-8790-4f18-9503-2799f5c31dac", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Embedding(32003, 4096)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model_ft = PeftModel.from_pretrained(\n", + " model_ft, \n", + " OUTPUT_DIR, \n", + " device_map=device_map,\n", + ")\n", + "\n", + "model_ft.resize_token_embeddings(len(tokenizer_ft))" + ] + }, + { + "cell_type": "markdown", + "id": "db2f448d", + "metadata": {}, + "source": [ + "## Load data" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "10133dc2", + "metadata": {}, + "outputs": [], + "source": [ + "INPUT_FILE = os.getcwd()+'/../../data/chapter22_valfromseed_data_processed.csv'\n", + "OUTPUT_FILE = os.getcwd()+'/../../data/d2lai_selfinstruct_mistral7b-loraft_1123.csv'" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "167f752b", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import time\n", + "import csv\n", + "\n", + "df_results = pd.read_csv (INPUT_FILE)\n", + "prompt_list = df_results.instruction.values.tolist()\n", + "reference_list = df_results.response.values.tolist()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "da2ddd19", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "660" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "len(prompt_list)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1c1a15f2", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "d92b3c10-6d01-44c6-887f-1400edff2305", + "metadata": {}, + "source": [ + "## Create instruct pipeline\n" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "08e7f40d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 - What does linear algebra study?1 - Can you explain the concepts of linear algebra?2 - What are the two ways to visualize vectors in geometry?3 - How can vectors be represented using lines and arrows in geometry?4 - How do column vectors differ from row vectors?5 - Can you explain the distinction between column and row vectors?6 - What is the process of representing vectors as points in a three-dimensional space?7 - Can you explain how to graph vectors using coordinate systems and point representations?8 - Can you represent vectors using arrows on a flat surface?9 - How can vectors be depicted as arrows within a two-dimensional space?10 - What is the process of representing vector addition graphically?" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1101: UserWarning: You seem to be using the pipelines sequentially on GPU. In order to maximize efficiency please use a dataset\n", + " warnings.warn(\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "11 - How can vectors be depicted when added together using diagrams?12 - What is the process of representing vector subtraction visually?13 - How can vectors be depicted in a way that shows their difference when they are subtracted?14 - How do you calculate the inner product of two row matrices?15 - What is the formula for finding the product of two vectors with their components aligned vertically?16 - How does the dot product of two vectors relate to their magnitudes and directions in geometry?17 - Can you explain how the dot product of two vectors can be represented graphically using points and lines?18 - How do you calculate the dot product of two vectors using a formula?19 - Can you explain the formula used to determine the dot product between two vectors on page 3?20 - What is the formula to determine the angle between two vectors using their dot product and magnitudes?21 - Can you explain how to compute the angle between two vectors based on their dot product and lengths?22 - What is the significance of determining the angle between two vectors in machine learning?23 - How does calculating the angle between two vectors aid in machine learning processes?24 - What does cosine similarity measure on a scale of -1 to 1?25 - How is cosine similarity calculated between two non-zero vectors?26 - What does \"hyperplane\" mean on page 4?27 - Can you explain what is described as a \"hyperplane\" on page 4?28 - What is the connection between cosine similarity and hyperplanes as described on page 4?" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[34], line 14\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m question \u001b[38;5;129;01min\u001b[39;00m prompt_list:\n\u001b[1;32m 11\u001b[0m \u001b[38;5;66;03m#print(i,\" \",end = '')\u001b[39;00m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28mprint\u001b[39m(i,\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m-\u001b[39m\u001b[38;5;124m\"\u001b[39m,question, end\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m---> 14\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[43mgenerate_text\u001b[49m\u001b[43m(\u001b[49m\u001b[43mquestion\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 15\u001b[0m response \u001b[38;5;241m=\u001b[39m [res[\u001b[38;5;241m0\u001b[39m][\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgenerated_text\u001b[39m\u001b[38;5;124m\"\u001b[39m]]\n\u001b[1;32m 16\u001b[0m question_list\u001b[38;5;241m.\u001b[39mappend(question)\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1140\u001b[0m, in \u001b[0;36mPipeline.__call__\u001b[0;34m(self, inputs, num_workers, batch_size, *args, **kwargs)\u001b[0m\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mnext\u001b[39m(\n\u001b[1;32m 1133\u001b[0m \u001b[38;5;28miter\u001b[39m(\n\u001b[1;32m 1134\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_iterator(\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1137\u001b[0m )\n\u001b[1;32m 1138\u001b[0m )\n\u001b[1;32m 1139\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1140\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrun_single\u001b[49m\u001b[43m(\u001b[49m\u001b[43minputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpreprocess_params\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mforward_params\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpostprocess_params\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1147\u001b[0m, in \u001b[0;36mPipeline.run_single\u001b[0;34m(self, inputs, preprocess_params, forward_params, postprocess_params)\u001b[0m\n\u001b[1;32m 1145\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mrun_single\u001b[39m(\u001b[38;5;28mself\u001b[39m, inputs, preprocess_params, forward_params, postprocess_params):\n\u001b[1;32m 1146\u001b[0m model_inputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpreprocess(inputs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mpreprocess_params)\n\u001b[0;32m-> 1147\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mforward\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_inputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mforward_params\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1148\u001b[0m outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpostprocess(model_outputs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mpostprocess_params)\n\u001b[1;32m 1149\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m outputs\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1046\u001b[0m, in \u001b[0;36mPipeline.forward\u001b[0;34m(self, model_inputs, **forward_params)\u001b[0m\n\u001b[1;32m 1044\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m inference_context():\n\u001b[1;32m 1045\u001b[0m model_inputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ensure_tensor_on_device(model_inputs, device\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdevice)\n\u001b[0;32m-> 1046\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_forward\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_inputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mforward_params\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1047\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ensure_tensor_on_device(model_outputs, device\u001b[38;5;241m=\u001b[39mtorch\u001b[38;5;241m.\u001b[39mdevice(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcpu\u001b[39m\u001b[38;5;124m\"\u001b[39m))\n\u001b[1;32m 1048\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/pykoi/example/rlhf/../../pykoi/chat/llm/instruct_pipeline.py:153\u001b[0m, in \u001b[0;36mInstructionTextGenerationPipeline._forward\u001b[0;34m(self, model_inputs, **generate_kwargs)\u001b[0m\n\u001b[1;32m 150\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 151\u001b[0m in_b \u001b[38;5;241m=\u001b[39m input_ids\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 153\u001b[0m generated_sequence \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgenerate\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 154\u001b[0m \u001b[43m \u001b[49m\u001b[43minput_ids\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minput_ids\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 155\u001b[0m \u001b[43m \u001b[49m\u001b[43mattention_mask\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mattention_mask\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 156\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43;01mif\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mattention_mask\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mis\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mnot\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\n\u001b[1;32m 157\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43;01melse\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 158\u001b[0m \u001b[43m \u001b[49m\u001b[43mpad_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtokenizer\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpad_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 159\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mgenerate_kwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 160\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 162\u001b[0m out_b \u001b[38;5;241m=\u001b[39m generated_sequence\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 163\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mframework \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpt\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/peft/peft_model.py:1130\u001b[0m, in \u001b[0;36mPeftModelForCausalLM.generate\u001b[0;34m(self, **kwargs)\u001b[0m\n\u001b[1;32m 1128\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model\u001b[38;5;241m.\u001b[39mgeneration_config \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration_config\n\u001b[1;32m 1129\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1130\u001b[0m outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbase_model\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgenerate\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1131\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model\u001b[38;5;241m.\u001b[39mprepare_inputs_for_generation \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model_prepare_inputs_for_generation\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/torch/utils/_contextlib.py:115\u001b[0m, in \u001b[0;36mcontext_decorator..decorate_context\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdecorate_context\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m ctx_factory():\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/generation/utils.py:1764\u001b[0m, in \u001b[0;36mGenerationMixin.generate\u001b[0;34m(self, inputs, generation_config, logits_processor, stopping_criteria, prefix_allowed_tokens_fn, synced_gpus, assistant_model, streamer, negative_prompt_ids, negative_prompt_attention_mask, **kwargs)\u001b[0m\n\u001b[1;32m 1756\u001b[0m input_ids, model_kwargs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_expand_inputs_for_generation(\n\u001b[1;32m 1757\u001b[0m input_ids\u001b[38;5;241m=\u001b[39minput_ids,\n\u001b[1;32m 1758\u001b[0m expand_size\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mnum_return_sequences,\n\u001b[1;32m 1759\u001b[0m is_encoder_decoder\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig\u001b[38;5;241m.\u001b[39mis_encoder_decoder,\n\u001b[1;32m 1760\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mmodel_kwargs,\n\u001b[1;32m 1761\u001b[0m )\n\u001b[1;32m 1763\u001b[0m \u001b[38;5;66;03m# 13. run sample\u001b[39;00m\n\u001b[0;32m-> 1764\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1765\u001b[0m \u001b[43m \u001b[49m\u001b[43minput_ids\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1766\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogits_processor\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogits_processor\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1767\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogits_warper\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogits_warper\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1768\u001b[0m \u001b[43m \u001b[49m\u001b[43mstopping_criteria\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstopping_criteria\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1769\u001b[0m \u001b[43m \u001b[49m\u001b[43mpad_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpad_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1770\u001b[0m \u001b[43m \u001b[49m\u001b[43meos_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43meos_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1771\u001b[0m \u001b[43m \u001b[49m\u001b[43moutput_scores\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moutput_scores\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1772\u001b[0m \u001b[43m \u001b[49m\u001b[43mreturn_dict_in_generate\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mreturn_dict_in_generate\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1773\u001b[0m \u001b[43m \u001b[49m\u001b[43msynced_gpus\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msynced_gpus\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1774\u001b[0m \u001b[43m \u001b[49m\u001b[43mstreamer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstreamer\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1775\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mmodel_kwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1776\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1778\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m generation_mode \u001b[38;5;241m==\u001b[39m GenerationMode\u001b[38;5;241m.\u001b[39mBEAM_SEARCH:\n\u001b[1;32m 1779\u001b[0m \u001b[38;5;66;03m# 11. prepare beam search scorer\u001b[39;00m\n\u001b[1;32m 1780\u001b[0m beam_scorer \u001b[38;5;241m=\u001b[39m BeamSearchScorer(\n\u001b[1;32m 1781\u001b[0m batch_size\u001b[38;5;241m=\u001b[39mbatch_size,\n\u001b[1;32m 1782\u001b[0m num_beams\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mnum_beams,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1787\u001b[0m max_length\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mmax_length,\n\u001b[1;32m 1788\u001b[0m )\n", + "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/generation/utils.py:2897\u001b[0m, in \u001b[0;36mGenerationMixin.sample\u001b[0;34m(self, input_ids, logits_processor, stopping_criteria, logits_warper, max_length, pad_token_id, eos_token_id, output_attentions, output_hidden_states, output_scores, return_dict_in_generate, synced_gpus, streamer, **model_kwargs)\u001b[0m\n\u001b[1;32m 2895\u001b[0m \u001b[38;5;66;03m# sample\u001b[39;00m\n\u001b[1;32m 2896\u001b[0m probs \u001b[38;5;241m=\u001b[39m nn\u001b[38;5;241m.\u001b[39mfunctional\u001b[38;5;241m.\u001b[39msoftmax(next_token_scores, dim\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m)\n\u001b[0;32m-> 2897\u001b[0m next_tokens \u001b[38;5;241m=\u001b[39m \u001b[43mtorch\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmultinomial\u001b[49m\u001b[43m(\u001b[49m\u001b[43mprobs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mnum_samples\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39msqueeze(\u001b[38;5;241m1\u001b[39m)\n\u001b[1;32m 2899\u001b[0m \u001b[38;5;66;03m# finished sentences should have their next token be a padding token\u001b[39;00m\n\u001b[1;32m 2900\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m eos_token_id \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], + "source": [ + "from pykoi.chat.llm.instruct_pipeline import InstructionTextGenerationPipeline\n", + "import time\n", + "response_list = []\n", + "question_list = []\n", + "generate_text = InstructionTextGenerationPipeline(model=model_ft, tokenizer=tokenizer_ft)\n", + "\n", + "st = time.time()\n", + "\n", + "i=0\n", + "for question in prompt_list:\n", + " #print(i,\" \",end = '')\n", + " \n", + " print(i,\"-\",question, end='')\n", + " res = generate_text(question)\n", + " response = [res[0][\"generated_text\"]]\n", + " question_list.append(question)\n", + " response_list.append(response)\n", + " i = i+1\n", + "\n", + "et = time.time()\n", + "elapsed_time = et - st\n", + "print('Execution time:', elapsed_time, 'seconds')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6f5fd364-88a5-40a0-a496-f83b0bcb1fc0", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "68965e63-3f94-4887-91d3-0d6d7c5e9a4d", + "metadata": {}, + "outputs": [], + "source": [ + "model_gen = InstructionTextGenerationPipeline(model=model_ft, tokenizer=tokenizer_ft)" + ] + }, + { + "cell_type": "markdown", + "id": "4d2aca7f-e19c-42ab-b7fe-97afe9641be7", + "metadata": {}, + "source": [ + "## Evaluation with Rouge score" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "c68f03c2-51ad-49b0-bf53-75f0c9d3ed69", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting rouge_score\n", + " Using cached rouge_score-0.1.2-py3-none-any.whl\n", + "Collecting absl-py (from rouge_score)\n", + " Downloading absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)\n", + "Collecting nltk (from rouge_score)\n", + " Downloading nltk-3.8.1-py3-none-any.whl (1.5 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.5/1.5 MB\u001b[0m \u001b[31m20.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m00:01\u001b[0m0:01\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: numpy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.26.3)\n", + "Requirement already satisfied: six>=1.14.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.16.0)\n", + "Requirement already satisfied: click in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (8.1.7)\n", + "Requirement already satisfied: joblib in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (1.3.2)\n", + "Requirement already satisfied: regex>=2021.8.3 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (2023.12.25)\n", + "Requirement already satisfied: tqdm in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (4.66.1)\n", + "Downloading absl_py-2.1.0-py3-none-any.whl (133 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m133.7/133.7 kB\u001b[0m \u001b[31m17.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: nltk, absl-py, rouge_score\n", + "Successfully installed absl-py-2.1.0 nltk-3.8.1 rouge_score-0.1.2\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Downloading builder script: 100%|██████████| 6.27k/6.27k [00:00<00:00, 15.9MB/s]\n" + ] + } + ], + "source": [ + "!pip install rouge_score\n", + "from rouge_score import rouge_scorer\n", + "\n", + "import evaluate\n", + "rouge = evaluate.load('rouge')\n", + "\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "9c363697-2a5f-4ba7-bcd6-f88965c08319", + "metadata": {}, + "outputs": [], + "source": [ + "def calculate_rouge(pred_list,ref_list):\n", + " \n", + " rouge_results = rouge.compute(predictions=pred_list,\n", + " references=ref_list,\n", + " use_aggregator=True)\n", + " avg_rougeLsum = np.mean(rouge_results[\"rougeLsum\"])\n", + " avg_rougeL = np.mean(rouge_results[\"rougeL\"])\n", + " avg_rouge2 = np.mean(rouge_results[\"rouge2\"])\n", + " avg_rouge1 = np.mean(rouge_results[\"rouge1\"])\n", + " \n", + " print(\"Average rouge score - \", avg_rougeLsum, avg_rougeL, avg_rouge2, avg_rouge1)\n", + " \n", + " return " + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "6a80aac5-5d32-4aa6-b04f-d03dca376bda", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'reference_list' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[21], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m ref_list \u001b[38;5;241m=\u001b[39m \u001b[43mreference_list\u001b[49m\n\u001b[1;32m 2\u001b[0m response_list \u001b[38;5;241m=\u001b[39m response_list\n", + "\u001b[0;31mNameError\u001b[0m: name 'reference_list' is not defined" + ] + } + ], + "source": [ + "ref_list = reference_list\n", + "response_list = response_list" + ] + }, + { + "cell_type": "markdown", + "id": "e701fba8-453c-489c-87d2-9104ebfc0c12", + "metadata": {}, + "source": [ + "## Evaluation with semantic similarity score" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "de23c1d7-36f3-4a3e-9ebb-a2501100858e", + "metadata": {}, + "outputs": [], + "source": [ + "from sentence_transformers import SentenceTransformer, util\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0375e6b6-d6ac-4f52-ac48-09a57fe7b38e", + "metadata": {}, + "outputs": [], + "source": [ + "model = SentenceTransformer('thenlper/gte-large') # use this one in production\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b5c737fe-149f-48e3-acaa-e388db22adcd", + "metadata": {}, + "outputs": [], + "source": [ + "def calculate_semantic_sim(pred_list,ref_list):\n", + " \n", + " sem_score = []\n", + " average_sem_sim = 0\n", + " \n", + " for i in range(len(ref_list)):\n", + " \n", + " ref_embedding = model.encode(ref_list[i])\n", + " pred_embedding = model.encode(pred_list[i])\n", + " cos_sim = util.cos_sim(ref_embedding, pred_embedding)\n", + " #print(cos_sim[0][0].item())\n", + " \n", + " sem_score.append(cos_sim[0][0].item())\n", + " \n", + " average_sem_sim = np.mean(sem_score) \n", + " \n", + " #print(\"Average similarity: \", average_sem_sim)\n", + " \n", + " return average_sem_sim" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c59526b3-fe2c-4269-ae43-45285998d0a4", + "metadata": {}, + "outputs": [], + "source": [ + "avg_score = calculate_semantic_sim(reference_list,response_list)\n", + "avg_score" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "pykoi", + "language": "python", + "name": "pykoi" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 58f946c2ebbc2dbe029c5b6d85db062d0fd1aa41 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Thu, 18 Jan 2024 00:15:01 +0000 Subject: [PATCH 7/9] When evaluating the SFT model, store the questions and generated answers into a csv file --- .../demo_supervised_finetuning_d2l_eval.ipynb | 275 +++++++++++++----- 1 file changed, 196 insertions(+), 79 deletions(-) diff --git a/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb b/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb index 966860f..7174bea 100644 --- a/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb +++ b/example/rlhf/demo_supervised_finetuning_d2l_eval.ipynb @@ -10,7 +10,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 6, "id": "d78cf816-c6a4-4a9d-90d5-79762107d394", "metadata": {}, "outputs": [], @@ -23,7 +23,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 7, "id": "18b63528-6b3a-42d8-afac-d6273d59546c", "metadata": {}, "outputs": [], @@ -34,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 8, "id": "00a810f9-9329-4efd-9156-fe36ddf8a432", "metadata": {}, "outputs": [ @@ -44,7 +44,7 @@ "3" ] }, - "execution_count": 13, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } @@ -61,7 +61,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 9, "id": "5b0d1142-1d5b-40f6-b9b1-676f2a4a2317", "metadata": {}, "outputs": [ @@ -69,7 +69,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "Loading checkpoint shards: 100%|██████████| 2/2 [01:49<00:00, 54.80s/it]\n" + "Loading checkpoint shards: 100%|██████████| 2/2 [00:05<00:00, 2.78s/it]\n" ] } ], @@ -84,7 +84,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 10, "id": "94a10174-8790-4f18-9503-2799f5c31dac", "metadata": {}, "outputs": [ @@ -94,7 +94,7 @@ "Embedding(32003, 4096)" ] }, - "execution_count": 16, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -119,7 +119,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 11, "id": "10133dc2", "metadata": {}, "outputs": [], @@ -130,7 +130,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 12, "id": "167f752b", "metadata": {}, "outputs": [], @@ -146,7 +146,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 13, "id": "da2ddd19", "metadata": {}, "outputs": [ @@ -156,7 +156,7 @@ "660" ] }, - "execution_count": 30, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -184,7 +184,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 38, "id": "08e7f40d", "metadata": {}, "outputs": [ @@ -207,26 +207,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "11 - How can vectors be depicted when added together using diagrams?12 - What is the process of representing vector subtraction visually?13 - How can vectors be depicted in a way that shows their difference when they are subtracted?14 - How do you calculate the inner product of two row matrices?15 - What is the formula for finding the product of two vectors with their components aligned vertically?16 - How does the dot product of two vectors relate to their magnitudes and directions in geometry?17 - Can you explain how the dot product of two vectors can be represented graphically using points and lines?18 - How do you calculate the dot product of two vectors using a formula?19 - Can you explain the formula used to determine the dot product between two vectors on page 3?20 - What is the formula to determine the angle between two vectors using their dot product and magnitudes?21 - Can you explain how to compute the angle between two vectors based on their dot product and lengths?22 - What is the significance of determining the angle between two vectors in machine learning?23 - How does calculating the angle between two vectors aid in machine learning processes?24 - What does cosine similarity measure on a scale of -1 to 1?25 - How is cosine similarity calculated between two non-zero vectors?26 - What does \"hyperplane\" mean on page 4?27 - Can you explain what is described as a \"hyperplane\" on page 4?28 - What is the connection between cosine similarity and hyperplanes as described on page 4?" - ] - }, - { - "ename": "KeyboardInterrupt", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[34], line 14\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m question \u001b[38;5;129;01min\u001b[39;00m prompt_list:\n\u001b[1;32m 11\u001b[0m \u001b[38;5;66;03m#print(i,\" \",end = '')\u001b[39;00m\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28mprint\u001b[39m(i,\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m-\u001b[39m\u001b[38;5;124m\"\u001b[39m,question, end\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m---> 14\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[43mgenerate_text\u001b[49m\u001b[43m(\u001b[49m\u001b[43mquestion\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 15\u001b[0m response \u001b[38;5;241m=\u001b[39m [res[\u001b[38;5;241m0\u001b[39m][\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgenerated_text\u001b[39m\u001b[38;5;124m\"\u001b[39m]]\n\u001b[1;32m 16\u001b[0m question_list\u001b[38;5;241m.\u001b[39mappend(question)\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1140\u001b[0m, in \u001b[0;36mPipeline.__call__\u001b[0;34m(self, inputs, num_workers, batch_size, *args, **kwargs)\u001b[0m\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mnext\u001b[39m(\n\u001b[1;32m 1133\u001b[0m \u001b[38;5;28miter\u001b[39m(\n\u001b[1;32m 1134\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_iterator(\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1137\u001b[0m )\n\u001b[1;32m 1138\u001b[0m )\n\u001b[1;32m 1139\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1140\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrun_single\u001b[49m\u001b[43m(\u001b[49m\u001b[43minputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpreprocess_params\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mforward_params\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpostprocess_params\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1147\u001b[0m, in \u001b[0;36mPipeline.run_single\u001b[0;34m(self, inputs, preprocess_params, forward_params, postprocess_params)\u001b[0m\n\u001b[1;32m 1145\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mrun_single\u001b[39m(\u001b[38;5;28mself\u001b[39m, inputs, preprocess_params, forward_params, postprocess_params):\n\u001b[1;32m 1146\u001b[0m model_inputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpreprocess(inputs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mpreprocess_params)\n\u001b[0;32m-> 1147\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mforward\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_inputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mforward_params\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1148\u001b[0m outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mpostprocess(model_outputs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mpostprocess_params)\n\u001b[1;32m 1149\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m outputs\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/pipelines/base.py:1046\u001b[0m, in \u001b[0;36mPipeline.forward\u001b[0;34m(self, model_inputs, **forward_params)\u001b[0m\n\u001b[1;32m 1044\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m inference_context():\n\u001b[1;32m 1045\u001b[0m model_inputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ensure_tensor_on_device(model_inputs, device\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdevice)\n\u001b[0;32m-> 1046\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_forward\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel_inputs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mforward_params\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1047\u001b[0m model_outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ensure_tensor_on_device(model_outputs, device\u001b[38;5;241m=\u001b[39mtorch\u001b[38;5;241m.\u001b[39mdevice(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcpu\u001b[39m\u001b[38;5;124m\"\u001b[39m))\n\u001b[1;32m 1048\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", - "File \u001b[0;32m~/pykoi/example/rlhf/../../pykoi/chat/llm/instruct_pipeline.py:153\u001b[0m, in \u001b[0;36mInstructionTextGenerationPipeline._forward\u001b[0;34m(self, model_inputs, **generate_kwargs)\u001b[0m\n\u001b[1;32m 150\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 151\u001b[0m in_b \u001b[38;5;241m=\u001b[39m input_ids\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 153\u001b[0m generated_sequence \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgenerate\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 154\u001b[0m \u001b[43m \u001b[49m\u001b[43minput_ids\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minput_ids\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 155\u001b[0m \u001b[43m \u001b[49m\u001b[43mattention_mask\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mattention_mask\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmodel\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 156\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43;01mif\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mattention_mask\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mis\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;129;43;01mnot\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\n\u001b[1;32m 157\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43;01melse\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mNone\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 158\u001b[0m \u001b[43m \u001b[49m\u001b[43mpad_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtokenizer\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpad_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 159\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mgenerate_kwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 160\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 162\u001b[0m out_b \u001b[38;5;241m=\u001b[39m generated_sequence\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m0\u001b[39m]\n\u001b[1;32m 163\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mframework \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpt\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/peft/peft_model.py:1130\u001b[0m, in \u001b[0;36mPeftModelForCausalLM.generate\u001b[0;34m(self, **kwargs)\u001b[0m\n\u001b[1;32m 1128\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model\u001b[38;5;241m.\u001b[39mgeneration_config \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration_config\n\u001b[1;32m 1129\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1130\u001b[0m outputs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbase_model\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgenerate\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1131\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m:\n\u001b[1;32m 1132\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model\u001b[38;5;241m.\u001b[39mprepare_inputs_for_generation \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbase_model_prepare_inputs_for_generation\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/torch/utils/_contextlib.py:115\u001b[0m, in \u001b[0;36mcontext_decorator..decorate_context\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdecorate_context\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m ctx_factory():\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mfunc\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/generation/utils.py:1764\u001b[0m, in \u001b[0;36mGenerationMixin.generate\u001b[0;34m(self, inputs, generation_config, logits_processor, stopping_criteria, prefix_allowed_tokens_fn, synced_gpus, assistant_model, streamer, negative_prompt_ids, negative_prompt_attention_mask, **kwargs)\u001b[0m\n\u001b[1;32m 1756\u001b[0m input_ids, model_kwargs \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_expand_inputs_for_generation(\n\u001b[1;32m 1757\u001b[0m input_ids\u001b[38;5;241m=\u001b[39minput_ids,\n\u001b[1;32m 1758\u001b[0m expand_size\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mnum_return_sequences,\n\u001b[1;32m 1759\u001b[0m is_encoder_decoder\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconfig\u001b[38;5;241m.\u001b[39mis_encoder_decoder,\n\u001b[1;32m 1760\u001b[0m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mmodel_kwargs,\n\u001b[1;32m 1761\u001b[0m )\n\u001b[1;32m 1763\u001b[0m \u001b[38;5;66;03m# 13. run sample\u001b[39;00m\n\u001b[0;32m-> 1764\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1765\u001b[0m \u001b[43m \u001b[49m\u001b[43minput_ids\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1766\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogits_processor\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogits_processor\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1767\u001b[0m \u001b[43m \u001b[49m\u001b[43mlogits_warper\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlogits_warper\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1768\u001b[0m \u001b[43m \u001b[49m\u001b[43mstopping_criteria\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstopping_criteria\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1769\u001b[0m \u001b[43m \u001b[49m\u001b[43mpad_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpad_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1770\u001b[0m \u001b[43m \u001b[49m\u001b[43meos_token_id\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43meos_token_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1771\u001b[0m \u001b[43m \u001b[49m\u001b[43moutput_scores\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43moutput_scores\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1772\u001b[0m \u001b[43m \u001b[49m\u001b[43mreturn_dict_in_generate\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mgeneration_config\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mreturn_dict_in_generate\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1773\u001b[0m \u001b[43m \u001b[49m\u001b[43msynced_gpus\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msynced_gpus\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1774\u001b[0m \u001b[43m \u001b[49m\u001b[43mstreamer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mstreamer\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1775\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mmodel_kwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1776\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1778\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m generation_mode \u001b[38;5;241m==\u001b[39m GenerationMode\u001b[38;5;241m.\u001b[39mBEAM_SEARCH:\n\u001b[1;32m 1779\u001b[0m \u001b[38;5;66;03m# 11. prepare beam search scorer\u001b[39;00m\n\u001b[1;32m 1780\u001b[0m beam_scorer \u001b[38;5;241m=\u001b[39m BeamSearchScorer(\n\u001b[1;32m 1781\u001b[0m batch_size\u001b[38;5;241m=\u001b[39mbatch_size,\n\u001b[1;32m 1782\u001b[0m num_beams\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mnum_beams,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 1787\u001b[0m max_length\u001b[38;5;241m=\u001b[39mgeneration_config\u001b[38;5;241m.\u001b[39mmax_length,\n\u001b[1;32m 1788\u001b[0m )\n", - "File \u001b[0;32m/opt/conda/envs/pykoi/lib/python3.10/site-packages/transformers/generation/utils.py:2897\u001b[0m, in \u001b[0;36mGenerationMixin.sample\u001b[0;34m(self, input_ids, logits_processor, stopping_criteria, logits_warper, max_length, pad_token_id, eos_token_id, output_attentions, output_hidden_states, output_scores, return_dict_in_generate, synced_gpus, streamer, **model_kwargs)\u001b[0m\n\u001b[1;32m 2895\u001b[0m \u001b[38;5;66;03m# sample\u001b[39;00m\n\u001b[1;32m 2896\u001b[0m probs \u001b[38;5;241m=\u001b[39m nn\u001b[38;5;241m.\u001b[39mfunctional\u001b[38;5;241m.\u001b[39msoftmax(next_token_scores, dim\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m)\n\u001b[0;32m-> 2897\u001b[0m next_tokens \u001b[38;5;241m=\u001b[39m \u001b[43mtorch\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmultinomial\u001b[49m\u001b[43m(\u001b[49m\u001b[43mprobs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mnum_samples\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39msqueeze(\u001b[38;5;241m1\u001b[39m)\n\u001b[1;32m 2899\u001b[0m \u001b[38;5;66;03m# finished sentences should have their next token be a padding token\u001b[39;00m\n\u001b[1;32m 2900\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m eos_token_id \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + "11 - How can vectors be depicted when added together using diagrams?12 - What is the process of representing vector subtraction visually?13 - How can vectors be depicted in a way that shows their difference when they are subtracted?14 - How do you calculate the inner product of two row matrices?15 - What is the formula for finding the product of two vectors with their components aligned vertically?16 - How does the dot product of two vectors relate to their magnitudes and directions in geometry?17 - Can you explain how the dot product of two vectors can be represented graphically using points and lines?18 - How do you calculate the dot product of two vectors using a formula?19 - Can you explain the formula used to determine the dot product between two vectors on page 3?20 - What is the formula to determine the angle between two vectors using their dot product and magnitudes?21 - Can you explain how to compute the angle between two vectors based on their dot product and lengths?22 - What is the significance of determining the angle between two vectors in machine learning?23 - How does calculating the angle between two vectors aid in machine learning processes?24 - What does cosine similarity measure on a scale of -1 to 1?25 - How is cosine similarity calculated between two non-zero vectors?26 - What does \"hyperplane\" mean on page 4?27 - Can you explain what is described as a \"hyperplane\" on page 4?28 - What is the connection between cosine similarity and hyperplanes as described on page 4?29 - On page 4, how is it explained how cosine similarity relates to hyperplanes?30 - What are some widely used deep learning libraries for model development?31 - Which deep learning platforms are commonly employed in creating models?32 - What is the objective of transforming X\\_test?33 - Why do we need to reformat X\\_test?34 - What is the number of samples in X\\_test?35 - How many data points are there in X\\_test?36 - What is the predicted value's data type?37 - Can you specify the format of the results produced by predictions?38 - What data type are the predicted values?39 - Can you specify the data type of the output predictions?40 - On page 6, what function is employed to determine precision?41 - According to page 6, which method is utilized to compute correctness?42 - How do you display the test set accuracy using a print statement and an approximate value? (Page 6)43 - What is the syntax for printing out the test set accuracy along with a rough estimate on Page 6?44 - How does the transpose function work in TensorFlow?45 - Can you explain what the transpose operation accomplishes in TensorFlow?46 - What does the \"reduce_sum\" function do in TensorFlow?47 - Can you explain how the \"reduce_sum\" function works in TensorFlow?48 - What does the \"cast\" function do in TensorFlow?49 - Can you explain how to use the \"cast\" function in TensorFlow?50 - What does the \"shape\" attribute represent in a TensorFlow tensor?51 - Can you explain what the \"shape\" attribute signifies when it comes to a TensorFlow tensor?52 - What data type does a TensorFlow tensor have?53 - Can you tell me what the dtype property represents in TensorFlow?54 - What is the relationship between NumPy arrays and TensorFlow tensors?55 - How do NumPy arrays compare to TensorFlow tensors in terms of functionality and usage?56 - What does the \"mean\" function do in calculating accuracy in TensorFlow?57 - How is accuracy calculated using the \"mean\" function in TensorFlow?58 - How does the cast function work in TensorFlow to match the data types of predicted and target labels?59 - Can you explain how the cast function is utilized in TensorFlow to ensure that the predicted values have the same data type as the target labels? (Page 6)60 - What is the value of the \"shape\" attribute in the flattened form of X\\_test?61 - Can you tell me what the \"shape\" attribute represents when applied to the flattened version of X\\_test?62 - What is the value of the \"axis\" parameter in the dot product calculation involving the flattened versions of X\\_test and predictions?63 - Can you provide the value of the \"axis\" attribute used in the dot product operation between the flattened forms of X\\_test and predictions?64 - What is the result of multiplying the corresponding elements in the flattened versions of X\\_test and predictions, then adding up all those products?65 - How do you calculate the total value obtained by taking the inner product of the flattened versions of X\\_test and predictions, and then summing up all the resulting values?66 - What does the \"mean\" function do in NumPy when calculating accuracy?67 - How is accuracy calculated using the \"mean\" function in NumPy?68 - How does the `astype` function work in converting predicted values to match the data type of target labels in NumPy?69 - In what way does the `astype` function aid in ensuring that the predicted values and target labels have the same data type when working with NumPy arrays?70 - What is the relationship between NumPy arrays and TensorFlow tensors?71 - How do NumPy arrays compare to TensorFlow tensors in terms of functionality and usage?72 - What does the \"mean\" function do in calculating accuracy in TensorFlow?73 - How is accuracy calculated using the \"mean\" function in TensorFlow?74 - How does the cast function work in TensorFlow to match the data types of predicted and target labels?75 - Can you explain how the cast function is utilized in TensorFlow to ensure that the predicted values have the same data type as the target labels? (Page 6)76 - What is the value of the \"shape\" attribute in the flattened form of X\\_test?77 - Can you tell me what the \"shape\" attribute represents when applied to the flattened version of X\\_test?78 - What is the value of the \"axis\" parameter in the dot product calculation involving the flattened versions of X\\_test and predictions?79 - Can you provide the value of the \"axis\" attribute used in the dot product operation between the flattened forms of X\\_test and predictions?80 - What is the position of matrix B in terms of its ranking?81 - Can you determine the order of matrix B based on its rank?82 - What does it mean for a matrix to have full rank?83 - Can you explain what is meant by a full-rank matrix on page 8?84 - Can you provide a definition of determinant on page 9?85 - What does the term \"determinant\" mean according to the information found on page 9?86 - * What does \"tensor contraction\" mean on page 10?87 - * Can you explain what is meant by \"tensor contraction\" as described on page 10?88 - * How do arrays and TensorFlow (tf) notation differ in their representation of tensors?89 - * Can you explain the distinction between using arrays and TensorFlow (tf) notation to represent tensors?90 - What is the equivalent expression of tr(A^4) in Einstein notation for any given matrix A?91 - Can you express tr(A^4) using Einstein notation when dealing with an arbitrary matrix A?92 - What does linear algebra study?93 - Can you explain the concepts of linear algebra?94 - Can you explain what eigendecomposition means?95 - Could you provide a definition for eigendecomposition?96 - What does it mean to determine the eigenvalues of a matrix or linear transformation?97 - Can you explain what identifying the eigenvalues of a system entails?98 - Can you provide the explanation of the matrix $\\mathbf{A}$ on page 4?99 - What does the matrix $\\mathbf{A}$ represent on page 4?100 - What does this code snippet achieve?101 - What is the function of this particular section of code?102 - What do eigenvalues represent in computing?103 - Why are eigenvalues important to compute?104 - What is the objective of scaling the matrix A?105 - Why do we need to rescale the matrix A?106 - What is the formula to determine the ratio between successive norms of a matrix?107 - How do you find the relationship between adjacent norms of a matrix?108 - How do eigenvalues relate to singular values in random matrix theory?109 - Can you explain the connection between eigenvalues and singular values when dealing with random matrices?110 - What does the Gershgorin Circle Theorem state on page 7?111 - Can you explain the meaning of the Gershgorin Circle Theorem as presented on page 7?112 - How does the repeated multiplication of matrices behave?113 - What are the properties of raising a matrix to successive powers?114 - What topic is covered in page 8 of section 22.2.7?115 - On which page and in what section is the discussion found about topic 22.2.7?116 - What information is provided in Section 22.2.8 of the text?117 - Can you tell me what is discussed in page 8 of the document under Section 22.2.8?118 - Can you provide me with the exercises for Section 22.2.9 on Page 8?119 - What are the activities assigned for Section 22.2.9 as found on Page 8?120 - What does linear algebra study?121 - Can you explain the concepts of linear algebra?122 - What is the objective of using pre-trained word embeddings?123 - What do pre-trained word embeddings serve as a function to accomplish?124 - What is the process of using approximations during training in word embeddings?125 - Can you explain how word embeddings are trained using approximation techniques?126 - * What sets global vectors apart from subword embeddings?127 - * How do global vectors differ from subword embeddings?128 - What are the differences between Bidirectional Encoder Representations from Transformers (BERT) and Traditional Recurrent Neural Networks (RNNs)?129 - Can you explain how Bidirectional Encoder Representations from Transformers (BERT) vary in comparison to Traditional Recurrent Neural Networks (RNNs)?130 - How can BERT be customized for tasks that require both sequence-level and token-level analysis?131 - Can you explain how to adapt BERT for use in sequence-level and token-level applications?132 - What is the difference in notation between L(x + epsilon) and L(x)?133 - How does the addition of epsilon affect the function L(x)?134 - Can you explain what the term \"derivative\" means in mathematics?135 - On page 4, there's a definition of what a derivative is - can you recall it?136 - What is the process for calculating the derivative of an explicitly defined function?137 - How can you determine the rate of change of a given explicit function at any point?138 - What does the sum rule state in calculus?139 - Can you explain the concept of the sum rule in calculus on page 4?140 - What is the formula used to find the derivative of a function in calculus?141 - How do you calculate the slope of a tangent line using the power rule in calculus?142 - What is the formula used to find the derivative of a composite function in calculus?143 - Can you explain how to apply the rule of differentiation when dealing with functions composed of multiple functions in calculus?144 - Can you provide the explanation of the epsilon on page 5?145 - What does the term \"epsilon\" mean according to the information found on page 5?146 - What is the objective of discovering a polynomial function of degree n?147 - What is the aim in determining a polynomial equation of order n?148 - * What is the slope of the tangent line to the function f(x) = x^3 - 4x + 1 at any point x?149 - * How does the rate of change of the function f(x) = x^3 - 4x + 1 change as x changes?150 - * What is the slope of the natural logarithm function when its argument is x?151 - * How does the rate of change of the logarithmic function to base e vary as x changes?152 - Does f(x) have a local extrema (maximum or minimum) when its derivative is zero at x?153 - Is it true that if the derivative of f(x) is equal to zero at x, then f(x) will either have a maximum or minimum value at that point?154 - What is the value of x that minimizes f(x) = x*log(x)?155 - At what point does the function f(x) = x*log(x) achieve its lowest possible value?156 - What does linear algebra study?157 - Can you explain the concepts of linear algebra?158 - * What does \"partial derivative\" mean in mathematics?159 - * Can you explain what a \"partial derivative\" is on page 1?160 - How can we calculate an approximation of the loss function when adjustments are made to its parameters?161 - What formula do we use to estimate the loss function when changes are made to its parameters?162 - What does the fundamental algorithm discussed on page 4 serve as?163 - On page 4, what is the intended function of the outlined algorithm?164 - What is the process of updating weights in the gradient descent algorithm?165 - Can you explain how the gradient descent algorithm minimizes the cost function?166 - How does batch normalization differ from layer normalization?167 - Can you explain the distinction between batch normalization and layer normalization?168 - What is the purpose of using dropout regularization in machine learning models?169 - How does dropout regularization help prevent overfitting in neural networks?170 - What does \"early stopping\" refer to in the context of machine learning?171 - Can you explain how early stopping works in the field of artificial intelligence?172 - What does it mean by transfer learning in machine learning and artificial intelligence?173 - Can you explain how transfer learning works in the field of computer science?174 - What does data augmentation involve?175 - Can you explain what data augmentation entails?176 - What does adversarial training involve?177 - How does adversarial training work?178 - What does \"attention mechanism\" refer to on page 4?179 - On page 4, what is described as an \"attention mechanism\"?180 - What does a Recurrent Neural Network (RNN) do?181 - Can you explain what a Recurrent Neural Network (RNN) is?182 - What is the objective of calculating partial derivatives?183 - What do we aim to achieve by determining partial derivatives?184 - What is the definition of the chain rule in calculus and how does it relate to partial derivatives? (Page 5)185 - Can you explain how the concept of the chain rule applies when finding partial derivatives in calculus, as presented on page 5?186 - How does the forward pass work in a backpropagation algorithm?187 - What happens during the backward pass of a backpropagation algorithm?188 - What does regularization play a part in when it comes to deep learning models?189 - How does regularization contribute to the functioning of deep learning models?190 - How does batch normalization differ from layer normalization?191 - Can you explain the distinction between batch normalization and layer normalization on page 5?192 - What do CNNs serve as?193 - What are CNNs used for?194 - How do fully connected and convolutional layers differ in their functionality within a neural network?195 - Can you explain the key distinctions between fully connected and convolutional layers in terms of how they process data in a neural network?196 - What do activation functions accomplish in a neural network?197 - How do activation functions contribute to the functioning of neural networks?198 - How does supervised learning differ from unsupervised learning?199 - Can you explain the distinction between supervised and unsupervised learning algorithms?200 - What does transfer learning achieve in deep learning models?201 - How does transfer learning contribute to the effectiveness of deep learning algorithms?202 - How do shallow and deep neural networks differ in terms of their architecture and functionality?203 - Can you explain the key differences between shallow and deep neural networks, particularly regarding their ability to learn complex patterns?204 - How does regularization help to prevent overfitting in deep learning models?205 - In what way does regularization play a part in controlling overfitting in deep learning algorithms?206 - How does online learning differ from traditional classroom education?207 - In what ways are online courses different from in-person classes?208 - What is the goal of incorporating reinforcement learning into AI systems?209 - Can you explain how reinforcement learning contributes to the development of intelligent machines?210 - How do you calculate the partial derivative of f in relation to w? (Page 6)211 - Can you provide the equation for determining the partial derivative of f with regard to w on page 6?212 - What is required to calculate the first-order derivative of f with respect to w?213 - How many partial derivatives are necessary to determine the gradient of f with respect to w?214 - What is the objective of using the chain rule in calculus?215 - Why do we use the chain rule when finding derivatives?216 - What equation can be used to determine the optimal quadratic function that closely fits a given data point? (Page 9)217 - How do you calculate the most suitable quadratic function that accurately represents a specific data point using a particular formula? (Page 9)218 - - What does this code do on page 10?219 - - Can you explain the function of the code found on page 10?220 - What is the number of dimensions in a meshgrid? (Page 10)221 - What does the `linspace` function do in this specific code block on page 10?222 - Can you explain what purpose the `linspace` function serves within the given code snippet found on page 10?223 - What does \"exp\" represent in this specific code snippet?224 - Can you explain what function \"exp\" serves within the given code block on page 10?225 - - What does the \"constant\" keyword represent on page 10 of the code block?226 - - On page 10 of the code block, what is the function of the variable labeled as a \"constant\"?227 - What does the \"d2l\" variable represent in this code snippet?228 - Can you explain what the role of \"d2l\" is within the given code block?229 - - What does the `plt` module do in this code snippet?230 - - Can you explain what the role of `plt` is within the given code?231 - - What does the image serve as within the given program? (Page 10)232 - - What role does the picture play within the provided code snippet? (Page 10)233 - * What does the `add_subplot` function do in this code snippet?234 - * Can you explain what the role of `add_subplot` is within the provided code block?235 - - What type of projection is being utilized on page 10 of the code?236 - - On page 10 of the code, what kind of projection is employed?237 - What does the `plot_wireframe` function do in this code snippet?238 - Can you explain what the role of `plot_wireframe` is within the given code block?239 - - What does the 'rstride' parameter do on page 10 of the code block?240 - - On page 10 of the code block, what is the purpose of the 'rstride' parameter?241 - - What does \"cstride\" represent in the given code snippet on page 10?242 - - On page 10 of the provided code, what value is assigned to the variable \"cstride\"?243 - - What does the 'color' variable represent on page 10 of the code?244 - - On page 10 of the code, what value is assigned to the 'color' parameter?245 - - What does the `xlabel` function do in this code snippet?246 - - Can you explain what the role of `xlabel` is within the provided code?247 - - What does the `ylabel` function do in this specific code block on page 10?248 - - Can you explain what the role of `ylabel` is within the given code snippet found on page 10?249 - What does `set_figsize` do in the given code snippet?250 - Can you explain what the function `set_figsize` accomplishes within the provided code block?251 - * What does the `set_xlim` function do in this code snippet?252 - * Can you explain what the `set_xlim()` method accomplishes within the provided code block?253 - * What does the `set_ylim` function do in this code snippet?254 - * Can you explain what the `set_ylim()` method accomplishes within the provided code block?255 - * What is the derivative of $\\mathbf{x}^\\top A \\mathbf{x}$ with respect to $x\\_k$?256 - * How do you find the partial derivative of $\\mathbf{x}^\\top A \\mathbf{x}$ with respect to $x\\_k$?257 - - What does \"n\" represent on page 12?258 - - On page 12, what numerical value is assigned to the variable \"n\"?259 - What is the objective of determining slopes or gradients in multi-dimensional spaces?260 - Why do we need to establish the gradient concept in higher dimensions?261 - How is the backpropagation algorithm structured?262 - What is the organization of the backpropagation algorithm?263 - What does matrix calculus study?264 - What are the applications of matrix calculus?265 - What is the derivative of the function f(x) = beta^T x?266 - What is the derivative of the function g(x) = x^T beta?267 - * What is the slope of the function that represents the L2 norm of a vector as a function of its elements? (Page 13)268 - * How does the magnitude of a vector change when one of its elements changes at constant rate? (Page 13)269 - * What is the slope of the natural logarithm function? (Page 13)270 - * Can you determine the rate of change of the logarithmic function using the base e? (Page 13)271 - What are the partial derivatives of the function f(x, y) = x^2y + xy^2 with respect to x and y?272 - How do the partial derivatives of the function f(x, y) = x^2y + xy^2 change as x and y vary?273 - What is the geometrical interpretation of the condition \\(\\nabla f = 0\\)? 274 - Can you explain how to geometrically interpret the condition \\(\\nabla f = 0\\) using g and h?275 - What does linear algebra study?276 - Can you explain the concepts of linear algebra?277 - What are the objectives of using natural language processing (NLP) pre-training methods?278 - Can you explain the aims of employing NLP pre-processing techniques in natural language understanding (NLU)?279 - Which machine learning libraries are widely used?280 - What are some commonly utilized machine learning frameworks?281 - What is the theorem that relates differentiation and integration in calculus?282 - Can you explain the relationship between derivatives and integrals as stated by the Fundamental Theorem of Calculus?283 - What is the role of the Fundamental Theorem of Calculus in resolving integrals?284 - In what way does the Fundamental Theorem of Calculus aid in the process of integration?285 - What is the numerical worth of the indefinite integral of a function evaluated between its limits?286 - How do you calculate the exact sum of an antiderivative when evaluating it at specific bounds?287 - What is the process of determining the total accumulation of change in a function over an interval by integrating it?288 - Can you explain how to find the area between a curve and the x-axis over a given interval through integration?289 - How does flipping a function horizontally affect the calculation of its area under the curve?290 - What is the impact on the area under the curve when a function is flipped horizontally before being calculated?291 - How do you calculate the area under a curve when it can be broken down into several parts using double or triple integrals? (Refer to page 5)292 - Can you determine the formula for calculating the total area under a curve that has been divided into numerous sections by employing multiple integration techniques? Please refer to page 5 for guidance.293 - What does Fubini's theorem state about integrals of functions over sets in multiple dimensions?294 - Can you explain how Fubini's theorem relates to double and triple integrals?295 - What is the impact of modifying variables on multiple definite integrals? (Page 6)296 - How do you calculate the value of multiple indefinite integrals when the limits of integration change? (Page 6)297 - What does linear algebra study?298 - Can you explain the concepts of linear algebra?299 - How do discrete and continuous random variables differ from one another?300 - In what ways are discrete and continuous random variables distinct?301 - What is the difference between working with continuous and discrete random variables?302 - Can you explain how the properties of continuous and discrete random variables affect their use in statistical analysis?303 - What is a continuous random variable and can it be explained through an example?304 - How does the concept of continuous random variables relate to examples?305 - What is the likelihood of a dart landing precisely 2 centimeters away from the center of the board?306 - How likely is it for a dart to strike the board at a distance of exactly 2 centimeters from the center?307 - What number of decimal places must be considered to calculate the likelihood that a distance equals 2.00000..308 - To what degree of precision should we consider the distance as being equal to 2.00000..309 - What is the likelihood of selecting a random number whose final digit is either 7 or 3?310 - Can you determine the chance of choosing a random integer with its last digit being either 7 or 3?311 - How many darts landed in the 2.1 cm bucket when 100 darts were thrown?312 - What is the number of darts that struck the 2.1 cm target area out of 100 darts thrown?313 - What is the chance of selecting a random point inside interval B if interval A is smaller than B?314 - How likely is it to choose a random point located in interval B when interval A is contained within interval B?315 - What is the chance that a randomly chosen point will be located inside an interval measuring ε units in length surrounding 2?316 - Can you calculate the likelihood of selecting a random point that lies within an interval of ε units centered at 2?317 - What is the likelihood that a randomly chosen point will be located inside an interval measuring ε units in length centered at x?318 - Can you calculate the chance that a randomly picked point would fall within an interval having a length of ε and being situated near x?319 - What does the probability density function represent for a continuous random variable X?320 - Can you explain what the concept of a probability density function is in relation to a continuous random variable X?321 - Can you explain what a probability density function means on page 3?322 - What does it mean when we talk about a probability density function according to the information provided on page 3?323 - What does the term \"cumulative distribution function\" mean in statistics?324 - Can you explain what a cumulative distribution function represents on page 4?325 - How do you calculate the variance of a random variable?326 - Can you provide the formula for determining the variance of a random variable?327 - On page 7 of the article, what code was used to create the plot?328 - Can you tell me which code was employed for plotting on page 7 of the article?329 - How many plots does the article display on page 7?330 - On page 7 of the article, how many plots are depicted?331 - What libraries are utilized to create the graphs on page 7?332 - On page 7, which libraries are employed in producing the visualizations?333 - What does the author intend to convey through the first plot on page 7?334 - On page 7, what is the main message or theme that the author wants to communicate through the first plot?335 - What serves as the main objective of the second graph on page 7?336 - On page 7, what does the second diagram aim to achieve?337 - What serves as the main objective of the third graph on page 7?338 - On page 7, what does the third diagram aim to achieve?339 - What serves as the main objective of the fourth graph on page 7?340 - On page 7, what does the function of the fourth chart primarily achieve?341 - What is the purpose of plotting the integrand on Page 8?342 - On Page 8, what method is employed to visualize the necessary integrand for calculating variance?343 - Can you identify the specific function employed to determine the average value of a stochastic variable? (Referring to Page 8)344 - On page 8, what is the name of the mathematical tool utilized to compute the expected value of a random variable?345 - Can you identify the specific function employed to determine the variance of a random variable? (Page 8)346 - What does the formula on Page 8 represent in calculating the variance of a random variable?347 - What is the function that calculates the likelihood of a random variable falling within an epsilon-sized range of a particular value? (Page 8)348 - Can you identify the function employed to determine the chance of a random variable being situated inside an epsilon-sized interval surrounding a specific value? (Page 8)349 - What is the purpose of the function that estimates the likelihood of a random variable falling within an epsilon-near range of a particular value? (Page 8)350 - Can you explain what the function does on Page 8 that calculates the approximation of the probability of a random variable being close to a certain value?351 - Can you identify the function that depicts the probability distribution of two random variables being jointly distributed?352 - On page 8, what does the author refer to as the representation of the probabilities of two random variables occurring simultaneously?353 - What is the purpose of the function that calculates the area under a curve or surface in multiple dimensions?354 - Can you explain what the tool is called which computes the total value of a function across a specified range in higher dimensional spaces?355 - Can you tell me what function produces random numbers ranging from 0 up to 1?356 - What does the function do that generates random numbers within the range of 0 to 1?357 - What does the function on page 8 do to calculate the average value of a random variable?358 - On page 8, what is referred to as the method for determining the central tendency of a random variable through calculating its average value?359 - Can you identify the specific function employed to calculate the variance of a random variable? (Page 8)360 - What does the function on Page 8 do in computing the variance of a random variable?361 - What is the function that calculates the likelihood of a random variable falling within an epsilon-sized range of a particular value? (Page 8)362 - Can you identify the function employed to determine the chance of a random variable being situated inside an epsilon-sized interval surrounding a specific value? (Page 8)363 - What is the purpose of the function that estimates the likelihood of a random variable falling within an epsilon-near range of a particular value? (Page 8)364 - Can you explain what the function does on Page 8 that calculates the approximation of the probability of a random variable being close to a certain value?365 - Can you identify the function that depicts the probability distribution of two random variables being jointly distributed?366 - On page 8, what does the author refer to as the representation of the probabilities of two random variables occurring simultaneously?367 - What is the purpose of the function that calculates the area under a curve or surface in multiple dimensions?368 - Can you explain what the tool is called which computes the total value of a function across a specified range in higher dimensional spaces?369 - Can you tell me what function produces random numbers ranging from 0 up to 1?370 - What does the function do that generates random numbers within the range of 0 to 1?371 - What does the function on page 8 do to calculate the average value of a random variable?372 - On page 8, what is referred to as the method for determining the central tendency of a random variable through calculating its average value?373 - Can you identify the specific function employed to calculate the variance of a random variable? (Page 8)374 - What does the function on Page 8 do in computing the variance of a random variable?375 - What is the function that calculates the likelihood of a random variable falling within an epsilon-sized range of a particular value? (Page 8)376 - Can you identify the function employed to determine the chance of a random variable being situated inside an epsilon-sized interval surrounding a specific value? (Page 8)377 - What is the purpose of the function that estimates the likelihood of a random variable falling within an epsilon-near range of a particular value? (Page 8)378 - Can you explain what the function does on Page 8 that calculates the approximation of the probability of a random variable being close to a certain value?379 - Can you identify the function that depicts the probability distribution of two random variables being jointly distributed?380 - On page 8, what does the author refer to as the representation of the probabilities of two random variables occurring simultaneously?381 - What is the purpose of the function that calculates the area under a curve or surface in multiple dimensions?382 - Can you explain what the tool is called which computes the total value of a function across a specified range in higher dimensional spaces?383 - Can you tell me what function produces random numbers ranging from 0 up to 1?384 - What does the function do that generates random numbers within the range of 0 to 1?385 - What does the function on page 8 do to calculate the average value of a random variable?386 - On page 8, what is referred to as the method for determining the central tendency of a random variable through calculating its average value?387 - How do you calculate the probability mass function (PMF) of a discrete random variable?388 - What is the definition of the cumulative distribution function (CDF) and how can it be used to find the marginal distribution of a continuous random variable?389 - What method is used to determine the relationship between two randomly varying quantities?390 - How do you calculate the correlation coefficient between two probability distributions?391 - - What is the equation used to determine the relationship between two random variables? (Page 10)392 - - How do you calculate the correlation coefficient between two random variables? (Page 10)393 - What is the definition of covariance as a statistical measure of the relationship between two random variables?394 - Can you explain how the formula for calculating covariance represents the strength and direction of the linear relationship between two random variables?395 - Does the correlation coefficient provide a comprehensive understanding of the relationship between two random variables?396 - Can the variance help to identify any underlying patterns or trends in the data?397 - What is the difference between covariance and correlation?398 - Can you explain how the concepts of covariance and correlation relate to each other on page 10?399 - - How do you calculate the correlation coefficient? (Page 11)400 - - Can you explain how to determine the correlation coefficient on page 11?401 - * What does Chebyshev's inequality state?402 - * Can you explain Chebyshev's inequality on page 12?403 - What does linear algebra study?404 - Can you explain the concepts of linear algebra?405 - What does the maximum likelihood principle entail in the field of machine learning?406 - In what way does the maximum likelihood principle play a role in machine learning algorithms?407 - What does maximum likelihood estimation mean?408 - Can you explain what the concept of maximum likelihood estimation refers to?409 - What distinguishes log-likelihood from likelihood?410 - How does log-likelihood differ from regular likelihood?411 - How does the computational complexity vary when calculating the derivative of a likelihood function using the product rule?412 - What is the time and space required to compute the derivative of a likelihood function using the product rule in terms of its computational complexity?413 - How many operations does it take to calculate the gradient of the negative log-likelihood function?414 - What is the time required to compute the gradient of the negative log-likelihood function?415 - What is the connection between negative log-likelihood and information theory?416 - How does the concept of negative log-likelihood fit into the framework of information theory?417 - What is the reason behind switching from probabilities to densities when dealing with continuous data sets?418 - How does the concept of density allow us to work more effectively with continuous variables compared to probabilities?419 - What does linear algebra study?420 - Can you explain the concepts of linear algebra?421 - Which libraries are commonly utilized in probability within the field of machine learning?422 - What are some popular libraries employed in machine learning that incorporate probability concepts?423 - Can you explain what a Bernoulli random variable represents in probability theory?424 - What does it mean when we say that a random variable follows a Bernoulli distribution?425 - Which are the top three libraries used to develop machine learning models?426 - Can you name the most widely-used libraries for implementing machine learning algorithms?427 - What does the tensor look like on page 4?428 - Can you describe the form of the tensor found on page 4?429 - Can you explain what the Poisson distribution is on page 6?430 - What does the Poisson distribution represent according to the information provided on page 6?431 - What does this code do?432 - What is the function of the given code?433 - What is the PDF (probability density function) of a normal distribution?434 - Can you explain what the probability density function of a Gaussian distribution represents on page 8?435 - What is the process to create a probability density function plot of a Gaussian distribution in Pytorch?436 - Can you explain how to visualize the probability density function of a Gaussian distribution using Pytorch on page 8?437 - What is the process to create a probability density function plot of a Gaussian distribution in MXNet?438 - Can you explain how to visualize the probability density function of a Gaussian distribution using MXNet on page 8?439 - What is the process to create a probability density function plot of a Gaussian distribution in TensorFlow?440 - Can you explain how to visualize the probability density function of a Gaussian distribution using TensorFlow on page 8?441 - What does the cumulative distribution function represent in a Gaussian distribution?442 - Can you explain how to calculate the cumulative distribution function of a Gaussian distribution?443 - What is the process to create a cumulative distribution function (CDF) plot of a Gaussian distribution in PyTorch? 444 - How can I visualize the CDF of a Gaussian distribution using PyTorch?445 - What is the process to create a cumulative distribution function graph for a Gaussian distribution in MXNet?446 - Can you explain how to visualize the cumulative distribution function of a Gaussian distribution using MXNet on page 8?447 - What is the process to create a cumulative distribution function plot of a Gaussian distribution in TensorFlow?448 - Can you explain how to visualize the cumulative distribution function of a Gaussian distribution using TensorFlow on page 8?449 - What is the probability distribution that maximizes entropy?450 - How can we determine the most random or unbiased probability distribution?451 - What does the central limit theorem state about the distribution of sample means as the sample size increases?452 - Can you explain how the central limit theorem applies to normal distributions and their relationship with sample means?453 - How does mean differ from variance in a Gaussian distribution?454 - Can you explain the distinction between mean and variance in a Gaussian distribution on page 8?455 - What is the process of generating samples from a Gaussian distribution in Pytorch?456 - Can you explain how to use Pytorch to sample data from a Gaussian distribution on page 8?457 - What is the process of generating samples from a Gaussian distribution in MXNet?458 - Can you explain how to use MXNet to sample data from a Gaussian distribution on page 8?459 - What is the process of generating samples from a Gaussian distribution in TensorFlow?460 - Can you explain how to use TensorFlow to create random samples from a Gaussian distribution on page 8?461 - What type of distribution does `tf.random.normal()` use to create tensors?462 - Can you specify the dimensions of the tensor generated by `tf.random.normal()` function in TensorFlow?463 - What does linear algebra study?464 - Can you explain the concepts of linear algebra?465 - * What is a Naive Bayes classifier in machine learning?466 - * Can you explain what a Naive Bayes algorithm is used for in classification problems?467 - What does the MNIST dataset involve?468 - Can you explain what the purpose of the MNIST dataset is?469 - What is the objective of transforming pixels with values above 128 into 1 and those below 128 into 0? (Page 3)470 - Can you explain why changing pixel values over 128 to 1 and under 128 to 0 serves a specific function on page 3?471 - What is the total number of images present in the MNIST dataset?472 - How does the MNIST dataset consist of images?473 - What does the MNIST train image look like?474 - Can you describe the form of the MNIST training image?475 - What data type does the `train_labels` tensor have?476 - Can you tell me what the dtype of the `train_labels` tensor is?477 - What is the maximum number of examples that can be accessed simultaneously using numpy's stack function?478 - How does numpy's stack function handle accessing multiple examples at once?479 - What does the \"show\\_images\" function do in D2L?480 - Can you explain what the purpose of the \"d2l show\\_images\" function is on page 3?481 - What is the equation used in the Naive Bayes algorithm?482 - Can you provide the mathematical expression for implementing a Naive Bayes Classifier?483 - What is the formula used to calculate P\\_xy in a Naive Bayes Classifier?484 - How can we determine the value of P\\_y in a Naive Bayes Classifier?485 - How does the time complexity of a Naive Bayes Classifier compare to other machine learning algorithms?486 - Can you explain how the time complexity of a Naive Bayes Classifier affects its performance in terms of processing speed and efficiency?487 - What is the objective of including pseudo counts in a document?488 - Why do we incorporate pseudo counts into text analysis?489 - What does the `bayes_pred` function do?490 - Can you explain what the main objective of the `bayes_pred` function is?491 - What does linear algebra study?492 - Can you explain the concepts of linear algebra?493 - When was the first recorded use of statistical methods?494 - Can you provide a historical account of the development of statistics as a discipline?495 - What is the history of modern statistics?496 - When was modern statistics developed?497 - What are some of the topics that statistics covers in modern times?498 - How has the field of statistics evolved to address contemporary issues and concerns?499 - What is the fundamental principle of statistical analysis?500 - Can you explain the central concept in the field of statistics?501 - What does statistics primarily concentrate on?502 - What is the primary subject matter of statistics?503 - Can you provide me with some typical instances of statistical estimators?504 - What are several frequent types of estimators used in statistics?505 - What is the appearance of the plot representing the true density function of a Gaussian random variable?506 - Can you describe how the graphical representation of the probability distribution density of a Gaussian random variable looks like on page 2?507 - What does calculating the average value of a data set represent in statistical analysis?508 - In statistics, what is the function of determining the mean of a sample?509 - What does a Pooled Naive StorageManager do in TensorFlow?510 - Can you explain the function of a Pooled Naive StorageManager in TensorFlow?511 - How do you calculate the mean squared error?512 - What equation can be used to determine the mean squared error?513 - What is the equation used to calculate the standard deviation of a statistical estimate?514 - Can you provide the mathematical expression for determining the standard deviation of a sample mean as an estimator?515 - What is the difference between comparing the estimated population mean and the expected sample mean in terms of measuring fluctuations in an estimator?516 - How do you measure the variability of an estimator when comparing it to the expected sample mean versus the estimated population mean?517 - How does the relationship between bias and variance affect model performance?518 - What are some techniques used to balance bias and variance in machine learning models?519 - What distinguishes high variance from unavoidable error?520 - How does high variability differ from inherent uncertainty?521 - What methods are available to assess the effectiveness of a model in programming language?522 - How do you measure the accuracy of an estimator within your code implementation?523 - What is the objective of performing hypothesis testing?524 - Why do we carry out hypothesis tests?525 - How do you determine statistical significance using a formula?526 - What calculation method can be used to ascertain statistical significance?527 - What does it mean to have statistical power in a study?528 - Can you explain what statistical power refers to in research?529 - What is the relationship between statistical power and the likelihood of committing a type I or type II error?530 - How does the level of statistical power affect the probability of incorrectly rejecting or failing to reject the null hypothesis?531 - How does statistical power aid in deciding on the appropriate sample size?532 - What role does statistical power play in establishing the required number of samples for analysis?533 - How can I determine the necessary sample size for a given effect size and desired level of statistical power?534 - What is the formula for calculating the required sample size when considering both effect size and statistical power in a study?535 - What does \"test statistic\" mean on page 7?536 - On page 7, what is defined as a \"test statistic\"?537 - What does \"p-value\" represent on page 7?538 - On page 7, what is defined as a \"p-value\"?539 - What does it mean when a test only goes in one direction?540 - Can you explain what is meant by an examination that has no return path?541 - What does it mean when a test has two sides?542 - Can you explain what a double-sided examination entails?543 - What is a basic outline of the process for conducting hypothesis testing?544 - Can you describe the main stages involved in carrying out a hypothesis test?545 - Can you explain what a confidence interval represents on page 8?546 - What does the term \"confidence interval\" refer to in statistics, as mentioned on page 8?547 - What is the equation employed to determine the 95% confidence range? (Page 9)548 - How do you calculate the 95% confidence interval using a formula? (Page 9)549 - * What does Pytorch refer to?550 - * Can you explain what Pytorch means on page 10?551 - What does MXNet stand for?552 - Can you explain what MXNet is used for in machine learning?553 - * What does TensorFlow do?554 - * Can you explain what TensorFlow is used for?555 - What are some commonly utilized assessment measures in statistical analysis?556 - Can you name some typical evaluation metrics employed in statistics?557 - What is the process of conducting a hypothesis test?558 - Can you explain how to perform a hypothesis test?559 - * What does a confidence interval represent on page 10?560 - * Can you explain what a confidence interval means in statistics, as presented on page 10?561 - How does a one-sided test differ from a two-sided test?562 - What are the key differences between conducting a one-sided or a two-sided hypothesis test?563 - What is the process typically followed when performing a hypothesis test?564 - Can you outline the main stages of carrying out a hypothesis test?565 - What does linear algebra study?566 - Can you explain the concepts of linear algebra?567 - What is the objective of using natural language processing (NLP) techniques during pre-training?568 - Can you explain how NLP preprocessing helps in improving model performance?569 - What methods do you use to initialize word vectors before fine-tuning them on a specific task?570 - Can you describe some popular approaches for preparing word representations prior to training them on downstream tasks?571 - What is the process of performing sentiment analysis on text data through the use of recurrent neural networks?572 - Can you explain how sentiment analysis can be performed by utilizing recurrent neural networks in analyzing textual information?573 - How can BERT be customized for tasks that require both sequence-level and token-level analysis?574 - Can you explain how to adapt BERT for use in sequence-level and token-level applications?575 - How does value iteration differ from Q-learning in reinforcement learning?576 - Can you explain the key differences between value iteration and Q-learning in the field of reinforcement learning?577 - What is the goal of optimizing hyperparameters in deep learning models?578 - How does hyperparameter tuning improve the performance of deep learning algorithms?579 - * What are GANs?580 - * Can you explain what a GAN is?581 - * What is the process of decomposing a large and complex data set into smaller, more manageable components in order to improve its performance in recommender systems?582 - * Can you explain how matrix factorization can be used to enhance the effectiveness of algorithms employed in recommender systems by breaking down large amounts of information into smaller parts that are easier to analyze and manipulate?583 - How does an autoencoder differ from a variational autoencoder in terms of its architecture and function in deep learning?584 - Can you explain the key differences between an autoencoder and a variational autoencoder in deep learning, particularly regarding their structure and purpose?585 - What do utility functions serve as in the field of deep learning?586 - Can you explain the role of classes within deep learning tool's utility functions?587 - How do you calculate self-information according to the formula on page 3?588 - Can you explain the formula used to determine self-information as presented on page 3?589 - What does the use of a negative logarithm achieve in the calculation of entropy?590 - How does incorporating a negative logarithm into the entropy formula affect its overall result?591 - What does it mean to calculate the joint entropy of two random variables?592 - How do you determine the joint entropy between two probability distributions?593 - What is the relationship between joint entropy and the amount of information conveyed by a set of two randomly generated variables?594 - In what way does the concept of joint entropy connect to the quantity of data contained within a couple of independent random variables? (Page 5)595 - How does joint entropy differ from conditional entropy?596 - Can you explain the distinction between joint entropy and conditional entropy on page 5?597 - How do you calculate differential conditional entropy on page 6?598 - Can you provide a formula for calculating differential conditional entropy as stated on page 6?599 - What is the formula to determine the joint probability distribution of two continuous random variables in order to compute their conditional entropy?600 - Can you explain how to use calculus to find the derivative of the log-likelihood function and apply it to the calculation of the conditional entropy between two continuous random variables?601 - How does conditional entropy differ from joint entropy in terms of their calculations and interpretations?602 - Can you explain the distinction between conditional entropy and joint entropy as they relate to information theory?603 - How do you calculate mutual information?604 - Can you provide a formula for determining mutual information?605 - How does mutual information relate to joint entropy?606 - Can you explain the connection between mutual information and joint entropy?607 - What does \"mutual information\" mean on page 8?608 - On page 8, what is defined as \"mutual information\"?609 - What does \"cross-entropy\" mean on page 10?610 - Can you explain what is meant by \"cross-entropy\" as it appears on page 10?611 - What is the definition of cross-entropy loss on page 11?612 - Can you explain what the cross-entropy loss means in machine learning as presented on page 11?613 - What is the relationship between the log-likelihood function and the cross-entropy loss? (Page 11)614 - Can you explain how the log-likelihood function is related to the cross-entropy loss on page 11?615 - * What does the Negative Log Likelihood measure represent in PyTorch? (Page 11)616 - * How do you calculate the Negative Log Likelihood measure using PyTorch on Page 11?617 - What is the process of converting categorical data into numerical values using one-hot encoding in TensorFlow?618 - What is the measure of disorder or randomness in a system that has four distinct states and an equal likelihood of being found in any of them?619 - How does the concept of entropy apply to a system consisting of four equally probable states?620 - What is the measure of disorder in a system that has three distinct states with different probabilities?621 - How does the entropy change when the likelihoods of the three states vary in a system with three possible outcomes?622 - What is the measure of disorder in a system that has two distinct outcomes but different probabilities? (Line 12)623 - How does the entropy of a system vary when it contains only two equally likely states or two differently probable states? (Page 12)624 - What is the measure of disorder in a system that has two distinct states with an equal chance of occurring? (Page 12)625 - How does the entropy of a system vary when it consists of only two equally likely states? (Page 12)626 - What is the measure of disorder or randomness in a system that has three distinct states with an equal likelihood of occurring? (Entropy Definition)627 - How does the concept of entropy relate to the number of possible outcomes when there are three equally likely states in a system? (Entropy Formula)628 - What is the measure of disorder in a system that has four distinct states with varying probabilities?629 - How does the entropy change when the likelihoods of different outcomes vary in a system with four potential states?630 - What is the measure of disorder in a system that has an equal number of five possible states but different probabilities?631 - How does the entropy change when the probability distribution among the five possible states varies?632 - What is the measure of disorder in a system that has an equal number of six possible states but different probabilities assigned to them?633 - How does the entropy change when the number of possible outcomes remains constant at six, but their likelihoods vary?634 - What is the measure of disorder in a system that has seven distinct states with varying probabilities?635 - How does the entropy change when there are seven different outcomes, but their likelihoods differ?636 - What is the measure of disorder in a system that has eight distinct states but different probabilities associated with them? (Page 12)637 - How does the number of possible outcomes affect the level of randomness or uncertainty in a system when there are only eight states and their likelihoods vary? (Page 12)638 - How does the unevenness in the probabilities of the nine possible states affect the entropy of the system?639 - Can you calculate the entropy of a system that has an equal number of possible states but different probabilities for each state?640 - What is the measure of disorder in a system that has an equal number of ten possible states but different probabilities assigned to them?641 - How does the entropy change when the number of possible states remains constant at ten while the likelihoods of these states vary?642 - What is the measure of disorder in a system that has an equal number of states but different probabilities?643 - How does the entropy change when the number of possible states increases while their probabilities remain constant?644 - What is the measure of disorder in a system that has twelve distinct states but different probabilities associated with them? (Page 12)645 - How does the number of possible outcomes affect the level of randomness or uncertainty in a system when there are twelve unique states and their likelihoods vary? (Page 12)646 - What is the measure of disorder in a system that has 13 distinct states with varying probabilities?647 - How does the entropy of a system change when it contains 13 different states with non-uniform likelihoods?648 - What is the measure of disorder in a system that has 14 distinct states with varying probabilities?649 - How does the entropy of a system change when it has an equal number of 14 possible states but different probabilities assigned to them?650 - What is the measure of disorder in a system that has 15 distinct states but different probabilities associated with them? (Page 12)651 - How does the entropy of a system vary when it contains 15 unique states and their corresponding probabilities are not equal? (Page 12)652 - What is the measure of disorder in a system that has 16 distinct states but different probabilities associated with them? (Page 12)653 - How does the entropy of a system vary when it contains 16 unique states and their corresponding probabilities are not equal? (Page 12)654 - What is the measure of disorder in a system that has 17 distinct states with varying probabilities?655 - How does the entropy of a system change when it contains 17 different states with non-uniform likelihoods?656 - What is the measure of disorder in a system that has 18 distinct states but different probabilities associated with them? (Page 12)657 - How does the entropy of a system vary when it contains 18 unique states and their corresponding probabilities are not equal? (Page 12)658 - What is the measure of disorder in a system that has 19 distinct states with varying probabilities?659 - How does the entropy change when there are 19 different outcomes in a system with non-equal likelihoods?Execution time: 4324.8441162109375 seconds\n" ] } ], @@ -245,32 +226,71 @@ " \n", " print(i,\"-\",question, end='')\n", " res = generate_text(question)\n", - " response = [res[0][\"generated_text\"]]\n", + " response = res[0][\"generated_text\"]\n", " question_list.append(question)\n", " response_list.append(response)\n", " i = i+1\n", "\n", "et = time.time()\n", "elapsed_time = et - st\n", - "print('Execution time:', elapsed_time, 'seconds')" + "print('Execution time:', elapsed_time, 'seconds')\n", + "import pandas as pd\n", + "OUTPUT_QR_FILE = os.getcwd()+'/../../data/question_generated_answer.csv'\n", + "\n", + "df = pd.DataFrame(list(zip(question_list, response_list)), columns =['Question', 'Answer'])\n", + "\n", + "df.to_csv(OUTPUT_QR_FILE, index=False)\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "id": "6f5fd364-88a5-40a0-a496-f83b0bcb1fc0", "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "['Linear algebra is a branch of mathematics that deals with the study of lines, planes, and subspaces. It focuses on topics such as vector and matrix operations, linear equations, inequalities, and systems of equations. Linear algebra is used in various fields, including engineering, physics, and computer science.
',\n", + " 'Linear algebra is a branch of mathematics that deals with linear equations, matrices, and vector spaces. It is concerned with the study of geometric objects and the relationships between them, as well as with the use of linear transformations to model real-world phenomena. Linear algebra is an important tool in',\n", + " 'In geometry, vectors can be visualized in two ways: as lines with arrowheads or as points connected by line segments.
',\n", + " \"In geometry, vectors can be represented using lines and arrows to indicate both the direction and magnitude of a vector. The length of the line represents the vector's magnitude, while the arrowhead points in the direction of the vector.
\",\n", + " 'Column vectors and row vectors differ in their orientation with respect to the matrix they belong to. A column vector is a vector that lies in the column space of a matrix, meaning it can be obtained as a linear combination of the columns of the matrix. On the other hand, a row vector is a vector that lies in the row space of a matrix, meaning it can be obtained as a linear combination of the rows of the matrix. In terms of their visual representation, column vectors are drawn as vertical lines, while row vectors are drawn as horizontal lines within the matrix.
',\n", + " \"Sure, I'd be happy to help with that. Column and row vectors are two types of vectors that are used in matrix algebra. A column vector is a vector that is placed vertically in a matrix, forming one of its columns. On the other hand, a row vector is a vector that is placed horizontally in a matrix, forming one of its rows. In other words, the difference between column and row vectors lies in their orientation when they are placed within a matrix.
\",\n", + " \"In a three-dimensional space, vectors can be represented as points by mapping each vector component to a specific coordinate in a 3D cartesian system. This is accomplished by assigning an x-coordinate, y-coordinate, and z-coordinate value to### Response:_NL each of the vector's three dimensions. In this way, a vector can be visualized as a point in space, with the direction of the vector being indicated by the length and direction of the line connecting the origin to that point.
\",\n", + " 'Sure! Graphing vectors using coordinate systems and point representations involves plotting a vector as a point on a coordinate plane and then drawing an arrowhead from that point to represent the direction of the vector. The length of the arrowhead can be scaled to represent the magnitude of the vector. To do this, you first need to understand the concept of vector addition, which is represented by the sum of their corresponding point coordinates. You can then plot the new vector by connecting the two points with an arrowhead, showing the direction and magnitude of the resulting vector. Is there anything else you would like to know about this process?
',\n", + " 'Yes, vectors can be represented using arrows on a flat surface. The length of the arrow corresponds to the magnitude of the vector, and the direction of the arrowhead indicates the direction of the vector.',\n", + " 'Vectors in a two-dimensional space can be represented using arrows, where the length of the arrow denotes the magnitude of the vector and the direction of the arrowhead indicates the direction of the vector.']" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response_list[:10]" + ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 42, "id": "68965e63-3f94-4887-91d3-0d6d7c5e9a4d", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "660" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "model_gen = InstructionTextGenerationPipeline(model=model_ft, tokenizer=tokenizer_ft)" + "len(response_list)" ] }, { @@ -283,38 +303,33 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 43, "id": "c68f03c2-51ad-49b0-bf53-75f0c9d3ed69", "metadata": {}, "outputs": [ { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "Collecting rouge_score\n", - " Using cached rouge_score-0.1.2-py3-none-any.whl\n", - "Collecting absl-py (from rouge_score)\n", - " Downloading absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)\n", - "Collecting nltk (from rouge_score)\n", - " Downloading nltk-3.8.1-py3-none-any.whl (1.5 MB)\n", - "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.5/1.5 MB\u001b[0m \u001b[31m20.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m00:01\u001b[0m0:01\u001b[0m\n", - "\u001b[?25hRequirement already satisfied: numpy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.26.3)\n", - "Requirement already satisfied: six>=1.14.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.16.0)\n", - "Requirement already satisfied: click in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (8.1.7)\n", - "Requirement already satisfied: joblib in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (1.3.2)\n", - "Requirement already satisfied: regex>=2021.8.3 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (2023.12.25)\n", - "Requirement already satisfied: tqdm in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (4.66.1)\n", - "Downloading absl_py-2.1.0-py3-none-any.whl (133 kB)\n", - "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m133.7/133.7 kB\u001b[0m \u001b[31m17.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", - "\u001b[?25hInstalling collected packages: nltk, absl-py, rouge_score\n", - "Successfully installed absl-py-2.1.0 nltk-3.8.1 rouge_score-0.1.2\n" + "huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks...\n", + "To disable this warning, you can either:\n", + "\t- Avoid using `tokenizers` before the fork if possible\n", + "\t- Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)\n" ] }, { - "name": "stderr", + "name": "stdout", "output_type": "stream", "text": [ - "Downloading builder script: 100%|██████████| 6.27k/6.27k [00:00<00:00, 15.9MB/s]\n" + "Requirement already satisfied: rouge_score in /opt/conda/envs/pykoi/lib/python3.10/site-packages (0.1.2)\n", + "Requirement already satisfied: absl-py in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (2.1.0)\n", + "Requirement already satisfied: nltk in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (3.8.1)\n", + "Requirement already satisfied: numpy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.26.3)\n", + "Requirement already satisfied: six>=1.14.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from rouge_score) (1.16.0)\n", + "Requirement already satisfied: click in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (8.1.7)\n", + "Requirement already satisfied: joblib in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (1.3.2)\n", + "Requirement already satisfied: regex>=2021.8.3 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (2023.12.25)\n", + "Requirement already satisfied: tqdm in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->rouge_score) (4.66.1)\n" ] } ], @@ -330,7 +345,37 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 44, + "id": "14332ee7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['What does linear algebra study?',\n", + " 'Can you explain the concepts of linear algebra?',\n", + " 'What are the two ways to visualize vectors in geometry?',\n", + " 'How can vectors be represented using lines and arrows in geometry?',\n", + " 'How do column vectors differ from row vectors?',\n", + " 'Can you explain the distinction between column and row vectors?',\n", + " 'What is the process of representing vectors as points in a three-dimensional space?',\n", + " 'Can you explain how to graph vectors using coordinate systems and point representations?',\n", + " 'Can you represent vectors using arrows on a flat surface?',\n", + " 'How can vectors be depicted as arrows within a two-dimensional space?']" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "question_list[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 45, "id": "9c363697-2a5f-4ba7-bcd6-f88965c08319", "metadata": {}, "outputs": [], @@ -352,25 +397,22 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 46, "id": "6a80aac5-5d32-4aa6-b04f-d03dca376bda", "metadata": {}, "outputs": [ { - "ename": "NameError", - "evalue": "name 'reference_list' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[21], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m ref_list \u001b[38;5;241m=\u001b[39m \u001b[43mreference_list\u001b[49m\n\u001b[1;32m 2\u001b[0m response_list \u001b[38;5;241m=\u001b[39m response_list\n", - "\u001b[0;31mNameError\u001b[0m: name 'reference_list' is not defined" + "name": "stdout", + "output_type": "stream", + "text": [ + "Average rouge score - 0.18049280219016767 0.1787935353783797 0.09000321609423866 0.23790046057149594\n" ] } ], "source": [ "ref_list = reference_list\n", - "response_list = response_list" + "response_list = response_list\n", + "calculate_rouge(response_list, ref_list) " ] }, { @@ -383,11 +425,75 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, "id": "de23c1d7-36f3-4a3e-9ebb-a2501100858e", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks...\n", + "To disable this warning, you can either:\n", + "\t- Avoid using `tokenizers` before the fork if possible\n", + "\t- Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: sentence-transformers in /opt/conda/envs/pykoi/lib/python3.10/site-packages (2.2.2)\n", + "Requirement already satisfied: transformers<5.0.0,>=4.6.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (4.36.2)\n", + "Requirement already satisfied: tqdm in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (4.66.1)\n", + "Requirement already satisfied: torch>=1.6.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (2.1.2)\n", + "Requirement already satisfied: torchvision in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (0.16.2)\n", + "Requirement already satisfied: numpy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (1.26.3)\n", + "Requirement already satisfied: scikit-learn in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (1.3.0)\n", + "Requirement already satisfied: scipy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (1.11.1)\n", + "Requirement already satisfied: nltk in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (3.8.1)\n", + "Requirement already satisfied: sentencepiece in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (0.1.99)\n", + "Requirement already satisfied: huggingface-hub>=0.4.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sentence-transformers) (0.20.2)\n", + "Requirement already satisfied: filelock in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (3.13.1)\n", + "Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (2023.10.0)\n", + "Requirement already satisfied: requests in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (2.31.0)\n", + "Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (6.0.1)\n", + "Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (4.9.0)\n", + "Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from huggingface-hub>=0.4.0->sentence-transformers) (23.1)\n", + "Requirement already satisfied: sympy in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (1.12)\n", + "Requirement already satisfied: networkx in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (3.2.1)\n", + "Requirement already satisfied: jinja2 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (3.1.2)\n", + "Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.1.105 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.105)\n", + "Requirement already satisfied: nvidia-cuda-runtime-cu12==12.1.105 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.105)\n", + "Requirement already satisfied: nvidia-cuda-cupti-cu12==12.1.105 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.105)\n", + "Requirement already satisfied: nvidia-cudnn-cu12==8.9.2.26 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (8.9.2.26)\n", + "Requirement already satisfied: nvidia-cublas-cu12==12.1.3.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.3.1)\n", + "Requirement already satisfied: nvidia-cufft-cu12==11.0.2.54 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (11.0.2.54)\n", + "Requirement already satisfied: nvidia-curand-cu12==10.3.2.106 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (10.3.2.106)\n", + "Requirement already satisfied: nvidia-cusolver-cu12==11.4.5.107 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (11.4.5.107)\n", + "Requirement already satisfied: nvidia-cusparse-cu12==12.1.0.106 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.0.106)\n", + "Requirement already satisfied: nvidia-nccl-cu12==2.18.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (2.18.1)\n", + "Requirement already satisfied: nvidia-nvtx-cu12==12.1.105 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (12.1.105)\n", + "Requirement already satisfied: triton==2.1.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torch>=1.6.0->sentence-transformers) (2.1.0)\n", + "Requirement already satisfied: nvidia-nvjitlink-cu12 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nvidia-cusolver-cu12==11.4.5.107->torch>=1.6.0->sentence-transformers) (12.3.101)\n", + "Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (2023.12.25)\n", + "Requirement already satisfied: tokenizers<0.19,>=0.14 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.15.0)\n", + "Requirement already satisfied: safetensors>=0.3.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from transformers<5.0.0,>=4.6.0->sentence-transformers) (0.4.1)\n", + "Requirement already satisfied: click in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->sentence-transformers) (8.1.7)\n", + "Requirement already satisfied: joblib in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from nltk->sentence-transformers) (1.3.2)\n", + "Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from scikit-learn->sentence-transformers) (3.2.0)\n", + "Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from torchvision->sentence-transformers) (10.2.0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from jinja2->torch>=1.6.0->sentence-transformers) (2.1.3)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests->huggingface-hub>=0.4.0->sentence-transformers) (3.3.2)\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests->huggingface-hub>=0.4.0->sentence-transformers) (3.6)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests->huggingface-hub>=0.4.0->sentence-transformers) (2.1.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from requests->huggingface-hub>=0.4.0->sentence-transformers) (2023.11.17)\n", + "Requirement already satisfied: mpmath>=0.19 in /opt/conda/envs/pykoi/lib/python3.10/site-packages (from sympy->torch>=1.6.0->sentence-transformers) (1.3.0)\n" + ] + } + ], "source": [ + "!pip install -U sentence-transformers\n", "from sentence_transformers import SentenceTransformer, util\n", "import numpy as np\n", "import pandas as pd" @@ -395,7 +501,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 48, "id": "0375e6b6-d6ac-4f52-ac48-09a57fe7b38e", "metadata": {}, "outputs": [], @@ -405,7 +511,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "id": "b5c737fe-149f-48e3-acaa-e388db22adcd", "metadata": {}, "outputs": [], @@ -433,10 +539,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "id": "c59526b3-fe2c-4269-ae43-45285998d0a4", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0.8862407925454053" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "avg_score = calculate_semantic_sim(reference_list,response_list)\n", "avg_score" From beeedaac457e324a273bc2c376d792c5c8d4ce74 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Wed, 24 Jan 2024 08:12:48 +0000 Subject: [PATCH 8/9] code cleanup for d2l demo. In SFT, make data collator, formatting function, whether to disable evalution configurable --- ...l.py => supervised_finetuning_demo_d2l.py} | 29 ++-- pykoi/rlhf/config.py | 12 ++ pykoi/rlhf/customize_data_collator.py | 15 +- pykoi/rlhf/supervised_finetuning.py | 141 +++++++++++------- 4 files changed, 123 insertions(+), 74 deletions(-) rename example/rlhf/{supervised_finetuning_d2l.py => supervised_finetuning_demo_d2l.py} (65%) diff --git a/example/rlhf/supervised_finetuning_d2l.py b/example/rlhf/supervised_finetuning_demo_d2l.py similarity index 65% rename from example/rlhf/supervised_finetuning_d2l.py rename to example/rlhf/supervised_finetuning_demo_d2l.py index 172d1f3..8493195 100644 --- a/example/rlhf/supervised_finetuning_d2l.py +++ b/example/rlhf/supervised_finetuning_demo_d2l.py @@ -1,8 +1,9 @@ """Demo for the supervised fine tuning. -python -m example.rlhf.supervised_finetuning_demo +python -m example.rlhf.supervised_finetuning_demo_d2l """ +from peft import LoraConfig from pykoi.chat import QuestionAnswerDatabase from pykoi.chat.db.constants import (QA_CSV_HEADER_ANSWER, QA_CSV_HEADER_ID, QA_CSV_HEADER_QUESTION, @@ -26,27 +27,29 @@ print("My local database has {} samples in total".format(my_data_pd.shape[0])) # run supervised finetuning -from peft import LoraConfig config = RLHFConfig(base_model_path="mistralai/Mistral-7B-Instruct-v0.1", dataset_type="local_csv", dataset_name="data/chapter22_trnvalfromseed_data_processed.csv", - train_test_split_ratio=0, # ratio for test set DH:TODO: COBINE TRAIN AND EVAL + train_test_split_ratio=0, # ratio for test set DH:TODO: COBINE TRAIN AND EVAL max_seq_length=896, - per_device_eval_batch_size = 1, - log_freq=20, - # dh: NOTE: 1 EPOCH iterates the dataset once. So log freq 20 means iterating 20 entries when training batch size = 1. + per_device_eval_batch_size=1, + log_freq=20, + # dh: NOTE: 1 EPOCH iterates the dataset once. So log freq 20 means iterating 20 entries when training batch size = 1. # (i.e., log_freq = 0.12 epoch when the dataset has 166 entires). save_freq=40000, num_train_epochs=20, - max_steps=-1, # if a positive number is given, it will override num_train_epochs + max_steps=-1, # if a positive number is given, it will override num_train_epochs device_map="auto", - lora_config_rl = LoraConfig( - r=512, - lora_alpha=1024, - lora_dropout=0.05, - target_modules=["q_proj","k_proj","v_proj","o_proj",], # "gate_proj","up_proj","down_proj",], #"lm_head",], + lora_config_rl=LoraConfig( + r=512, + lora_alpha=1024, + lora_dropout=0.05, + target_modules=["q_proj", "k_proj", "v_proj", "o_proj", ], # "gate_proj","up_proj","down_proj",], #"lm_head",], bias="none", task_type="CAUSAL_LM" - ), + ), + data_collator="DataCollatorForCompletionOnlyLM", + no_evaluation=True, + prepare_text="d2l", ) rlhf_step1_sft = SupervisedFinetuning(config) rlhf_step1_sft.train_and_save("./models/rlhf_step1_sft") diff --git a/pykoi/rlhf/config.py b/pykoi/rlhf/config.py index 10d7184..ffd1ff1 100644 --- a/pykoi/rlhf/config.py +++ b/pykoi/rlhf/config.py @@ -184,6 +184,18 @@ class RLHFConfig: ), metadata={"help": "LoRA configuration."}, ) + data_collator: Optional[str] = field( + default=None, + metadata={"help": "The name of data collator to use for training."}, + ) + no_evaluation: Optional[bool] = field( + default=False, + metadata={"help": "Whether to disable evaluations during training."}, + ) + prepare_text: Optional[str] = field( + default="sample", + metadata={"help": "How to prepare the text for the model."}, + ) # Step 2 reward modeling parameters reward_model_path: Optional[str] = field( diff --git a/pykoi/rlhf/customize_data_collator.py b/pykoi/rlhf/customize_data_collator.py index 5cc8c1e..833269a 100644 --- a/pykoi/rlhf/customize_data_collator.py +++ b/pykoi/rlhf/customize_data_collator.py @@ -1,8 +1,11 @@ -from typing import Any, Dict, List, Tuple, Union +from typing import Any, Dict, List, Union from transformers import DataCollatorForLanguageModeling import numpy as np + + class DataCollatorForCompletionOnlyLM(DataCollatorForLanguageModeling): - def torch_call(self, examples: List[Union[List[int], Any, Dict[str, Any]]]) -> Dict[str, Any]: + def torch_call( + self, examples: List[Union[List[int], Any, Dict[str, Any]]]) -> Dict[str, Any]: batch = super().torch_call(examples) # The prompt ends with the response key plus a newline. We encode this and then try to find it in the @@ -16,7 +19,8 @@ def torch_call(self, examples: List[Union[List[int], Any, Dict[str, Any]]]) -> D for i in range(len(examples)): response_token_ids_start_idx = None - for idx in np.where(batch["labels"][i] == response_token_ids[0])[0]: + for idx in np.where( + batch["labels"][i] == response_token_ids[0])[0]: response_token_ids_start_idx = idx break @@ -27,9 +31,10 @@ def torch_call(self, examples: List[Union[List[int], Any, Dict[str, Any]]]) -> D response_token_ids_end_idx = response_token_ids_start_idx + 1 - # Make pytorch loss function ignore all tokens up through the end of the response key + # Make pytorch loss function ignore all tokens up through the end + # of the response key labels[i, :response_token_ids_end_idx] = -100 batch["labels"] = labels - return batch \ No newline at end of file + return batch diff --git a/pykoi/rlhf/supervised_finetuning.py b/pykoi/rlhf/supervised_finetuning.py index 27c8369..881831f 100644 --- a/pykoi/rlhf/supervised_finetuning.py +++ b/pykoi/rlhf/supervised_finetuning.py @@ -22,6 +22,7 @@ from pykoi.telemetry.telemetry import Telemetry from pykoi.rlhf.customize_data_collator import DataCollatorForCompletionOnlyLM + class SupervisedFinetuning: """ A class representing the supervised finetuning trainer. @@ -37,7 +38,10 @@ class SupervisedFinetuning: trainer (SFTTrainer): The trainer object used for training the model. """ - def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> None: + def __init__( + self, + rlhf_config: RLHFConfig, + enable_telemetry: bool = True) -> None: """ Initializes the SFTTrainer object. @@ -47,17 +51,18 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No """ self._telemetry = Telemetry(enable_telemetry) self._rlhf_config = rlhf_config - self.tokenizer = AutoTokenizer.from_pretrained(rlhf_config.base_model_path) + self.tokenizer = AutoTokenizer.from_pretrained( + rlhf_config.base_model_path) # dh: add special tokens to tokenizer self.tokenizer.pad_token = self.tokenizer.eos_token END_KEY = "### End" INSTRUCTION_KEY = "### Instruction:" RESPONSE_KEY = "### Response:" RESPONSE_KEY_NL = f"{RESPONSE_KEY}\n" - self.tokenizer.add_special_tokens({"additional_special_tokens": [END_KEY, INSTRUCTION_KEY, RESPONSE_KEY_NL]}) + self.tokenizer.add_special_tokens( + {"additional_special_tokens": [END_KEY, INSTRUCTION_KEY, RESPONSE_KEY_NL]}) self.num_proc = ( - self._rlhf_config.num_workers if not self._rlhf_config.streaming else None - ) + self._rlhf_config.num_workers if not self._rlhf_config.streaming else None) self.dataset = self.create_datasets(self.tokenizer, self._rlhf_config) self.torch_dtype = torch.bfloat16 if self._rlhf_config.bf16 else torch.float16 # self.torch_dtype = torch.bfloat16 if bf16 else (torch.float16 if fp16 else torch.float32) @@ -77,8 +82,7 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No gradient_accumulation_steps=self._rlhf_config.gradient_accumulation_steps, gradient_checkpointing=self._rlhf_config.gradient_checkpointing, gradient_checkpointing_kwargs={ - "use_reentrant": self._rlhf_config.gradient_checkpointing_use_reentrant - }, + "use_reentrant": self._rlhf_config.gradient_checkpointing_use_reentrant}, fp16=self._rlhf_config.fp16, bf16=self._rlhf_config.bf16, weight_decay=self._rlhf_config.weight_decay, @@ -93,18 +97,20 @@ def __init__(self, rlhf_config: RLHFConfig, enable_telemetry: bool = True) -> No ) # resize the token embeddings to include the added special tokens self.model.resize_token_embeddings(len(self.tokenizer)) - - # dh: try the customized data collator that only predicts the answer part - data_collator = DataCollatorForCompletionOnlyLM( - tokenizer=self.tokenizer, mlm=False, return_tensors="pt", pad_to_multiple_of=8 - ) + data_collator = None + if self._rlhf_config.data_collator == "DataCollatorForCompletionOnlyLM": + # dh: try the customized data collator that only predicts the + # answer part + data_collator = DataCollatorForCompletionOnlyLM( + tokenizer=self.tokenizer, mlm=False, return_tensors="pt", pad_to_multiple_of=8) self.trainer = SFTTrainer( model=self.model, args=self.training_args, train_dataset=self.dataset["train"], eval_dataset=self.dataset["eval"], - peft_config=self._rlhf_config.lora_config_rl, ## TODO: DH: LoraConfig MAY BE IGNORED IF USING FROM_PRETRAINED + peft_config=self._rlhf_config.lora_config_rl, + # TODO: DH: LoraConfig MAY BE IGNORED IF USING FROM_PRETRAINED packing=True, data_collator=data_collator, dataset_text_field="text", @@ -163,8 +169,9 @@ def save(self, output_path=None): def train_and_save(self, output_path=None): start_event = SFTStartEvent( - start_time=time.time(), date_time=datetime.utcfromtimestamp(time.time()) - ) + start_time=time.time(), + date_time=datetime.utcfromtimestamp( + time.time())) self._telemetry.capture(start_event) self.trainer.train() self.save(output_path) @@ -180,10 +187,8 @@ def prepare_sample_text(self, example): """Prepare the text from a sample of the dataset.""" text = ( f"Question: {example[self._rlhf_config.question_title]}\n\n " - f" Answer: {example[self._rlhf_config.answer_title]}" - ) + f" Answer: {example[self._rlhf_config.answer_title]}") return text - def prepare_d2l_text(self, example): """Prepare the text from a sample of the d2l dataset .""" @@ -198,7 +203,8 @@ def prepare_d2l_text(self, example): DEFAULT_SEED = 42 # This is a training prompt that does not contain an input string. The instruction by itself has enough information - # to respond. For example, the instruction might ask for the year a historic figure was born. + # to respond. For example, the instruction might ask for the year a + # historic figure was born. PROMPT_NO_INPUT_FORMAT = """{intro} {instruction_key} {instruction} @@ -214,7 +220,8 @@ def prepare_d2l_text(self, example): ) # This is a training prompt that contains an input string that serves as context for the instruction. For example, - # the input might be a passage from Wikipedia and the intruction is to extract some information from it. + # the input might be a passage from Wikipedia and the intruction is to + # extract some information from it. PROMPT_WITH_INPUT_FORMAT = """{intro} {instruction_key} {instruction} @@ -232,14 +239,17 @@ def prepare_d2l_text(self, example): response="{response}", end_key=END_KEY, ) - + context = example.get("context") if context: - text = PROMPT_WITH_INPUT_FORMAT.format(instruction=example["instruction"], response=example["response"], input=context) + text = PROMPT_WITH_INPUT_FORMAT.format( + instruction=example["instruction"], + response=example["response"], + input=context) else: - text = PROMPT_NO_INPUT_FORMAT.format(instruction=example["instruction"], response=example["instruction"]) - - + text = PROMPT_NO_INPUT_FORMAT.format( + instruction=example["instruction"], + response=example["instruction"]) return text @@ -258,13 +268,16 @@ def create_datasets(self, tokenizer, args): ) dataset = Dataset.from_dict(my_data_pd) elif args.dataset_type == "local_csv": - ## this way will load 1660 enetries + # this way will load 1660 enetries # dataset = load_dataset("csv", data_files=args.dataset_name) # dataset = dataset[args.split] # Convert DatasetDict to Dataset # this way will load 166 entries - dataset = load_dataset("csv", data_files=args.dataset_name, split='train[:10%]') + dataset = load_dataset( + "csv", + data_files=args.dataset_name, + split='train[:10%]') elif args.dataset_type == "huggingface": dataset = load_dataset( @@ -281,34 +294,50 @@ def create_datasets(self, tokenizer, args): "No (supported) data files or dataset script found" f" {args.dataset_type}" ) - - # dh: temp change. No test set - # dataset = dataset.train_test_split( - # test_size=args.train_test_split_ratio, seed=args.seed - # ) - print( - f"Size of the train set: {len(dataset)}. " - #f"Size of the train set: {len(dataset['train'])}. " - #f" Size of the validation set: {len(dataset['test'])}" - ) - train_dataset = ConstantLengthDataset( - tokenizer, - dataset, - #dataset["train"], #dh: temp change. No test set - formatting_func=self.prepare_d2l_text, - infinite=True, - seq_length=args.max_seq_length, - # chars_per_token=chars_per_token, - ) - # temp change: no test set - # eval_dataset = ConstantLengthDataset( - # tokenizer, - # dataset["test"], - # formatting_func=self.prepare_d2l_text, - # infinite=False, - # seq_length=args.max_seq_length, - # # chars_per_token=chars_per_token, - # ) - eval_dataset = None + if args.prepare_text == "d2l": + self.prepare_text = self.prepare_d2l_text + else: + self.prepare_text = self.prepare_sample_text + # No test set during training + if args.no_evaluation: + print( + f"Size of the train set: {len(dataset)}. " + ) + + train_dataset = ConstantLengthDataset( + tokenizer, + dataset, + formatting_func=self.prepare_text, + infinite=True, + seq_length=args.max_seq_length, + # chars_per_token=chars_per_token, + ) + eval_dataset = None + else: + dataset = dataset.train_test_split( + test_size=args.train_test_split_ratio, seed=args.seed + ) + print( + f"Size of the train set: {len(dataset['train'])}. " + f" Size of the validation set: {len(dataset['test'])}") + + train_dataset = ConstantLengthDataset( + tokenizer, + dataset["train"], + formatting_func=self.prepare_text, + infinite=True, + seq_length=args.max_seq_length, + # chars_per_token=chars_per_token, + ) + + eval_dataset = ConstantLengthDataset( + tokenizer, + dataset["test"], + formatting_func=self.prepare_text, + infinite=False, + seq_length=args.max_seq_length, + # chars_per_token=chars_per_token, + ) + return {"train": train_dataset, "eval": eval_dataset} From 04b9fa5495c2b9f57caecff4aa4b2d970b2f7306 Mon Sep 17 00:00:00 2001 From: llauraa23 Date: Wed, 24 Jan 2024 08:15:17 +0000 Subject: [PATCH 9/9] DPO training on d2l data. Version 0 --- pykoi/rlhf/rl_finetuning_dpo.py | 263 ++++++++++++++++++++++++++++++++ 1 file changed, 263 insertions(+) create mode 100644 pykoi/rlhf/rl_finetuning_dpo.py diff --git a/pykoi/rlhf/rl_finetuning_dpo.py b/pykoi/rlhf/rl_finetuning_dpo.py new file mode 100644 index 0000000..4a8fc38 --- /dev/null +++ b/pykoi/rlhf/rl_finetuning_dpo.py @@ -0,0 +1,263 @@ +# The code is adapted from Huggingface. +# coding=utf-8 +# Copyright 2023 The HuggingFace Inc. team. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Note: you need to install transformers from main to run this script. See https://huggingface.co/docs/transformers/installation#install-from-source +# TODO: bump transformers version in requirements at next release. + +# 0. imports +from dataclasses import dataclass, field +from typing import Dict, Optional + +import torch +from accelerate import PartialState +from datasets import Dataset, load_dataset +from peft import LoraConfig +from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, HfArgumentParser, TrainingArguments + +from trl import DPOTrainer, is_xpu_available + + +# Define and parse arguments. +@dataclass +class ScriptArguments: + """ + The arguments for the DPO training script. + """ + + # data parameters + beta: Optional[float] = field(default=0.1, metadata={"help": "the beta parameter for DPO loss"}) + + # training parameters + model_name_or_path: Optional[str] = field(default="models/rlhf_step1_sft/", metadata={"help": "the model name"}) + learning_rate: Optional[float] = field(default=1e-3, metadata={"help": "optimizer learning rate"}) + #per_device_train_batch_size: Optional[int] = field(default=4, metadata={"help": "batch size per device"}) + # dh + per_device_train_batch_size: Optional[int] = field(default=1, metadata={"help": "batch size per device"}) + gradient_accumulation_steps: Optional[int] = field( + default=1, metadata={"help": "the number of gradient accumulation steps"} + ) + output_dir: Optional[str] = field(default="outputdpo", metadata={"help": "the output directory"}) + fp16: Optional[bool] = field( + default=False, metadata={"help": "Whether to activate fp16 mixed precision during training"} + ) + bf16: Optional[bool] = field( + default=False, metadata={"help": "Whether to activate bf16 mixed precision during training"} + ) + max_length: Optional[int] = field(default=512, metadata={"help": "max length of each sample"}) + max_prompt_length: Optional[int] = field(default=128, metadata={"help": "max length of each sample's prompt"}) + max_target_length: Optional[int] = field( + default=128, metadata={"help": "Only used for encoder decoder model. Max target of each sample's prompt"} + ) + label_pad_token_id: Optional[int] = field(default=-100, metadata={"help": "label for non response tokens"}) + #max_steps: Optional[int] = field(default=1000, metadata={"help": "max number of training steps"}) + max_steps: Optional[int] = field(default=500, metadata={"help": "max number of training steps"}) + + # lora parameters + use_peft: Optional[bool] = field(default=True, metadata={"help": "Wether to use PEFT or not to train adapters"}) + peft_lora_r: Optional[int] = field(default=64, metadata={"help": "the r parameter of the LoRA adapters"}) + peft_lora_alpha: Optional[int] = field(default=16, metadata={"help": "the alpha parameter of the LoRA adapters"}) + # instrumentation + sanity_check: Optional[bool] = field(default=True, metadata={"help": "only train on 1000 samples"}) + report_to: Optional[str] = field( + default=None, + metadata={ + "help": 'The list of integrations to report the results and logs to. Supported platforms are `"azure_ml"`,' + '`"comet_ml"`, `"mlflow"`, `"neptune"`, `"tensorboard"`,`"clearml"` and `"wandb"`. ' + 'Use `"all"` to report to all integrations installed, `"none"` for no integrations.' + }, + ) + # debug argument for distributed training + ignore_bias_buffers: Optional[bool] = field( + default=False, + metadata={ + "help": "fix for DDP issues with LM bias/mask buffers - invalid scalar type,`inplace operation. See" + "https://github.com/huggingface/transformers/issues/22482#issuecomment-1595790992" + }, + ) + gradient_checkpointing: Optional[bool] = field( + default=False, metadata={"help": "Whether to use gradient checkpointing or no"} + ) + gradient_checkpointing_kwargs: Optional[dict] = field( + default=None, + metadata={ + "help": "key word arguments to be passed along `torch.utils.checkpoint.checkpoint` method - e.g. `use_reentrant=False`" + }, + ) + load_in_8bit: Optional[bool] = field(default=False, metadata={"help": "load the model in 8 bits precision"}) + load_in_4bit: Optional[bool] = field(default=False, metadata={"help": "load the model in 4 bits precision"}) + generate_during_eval: Optional[bool] = field(default=False, metadata={"help": "Generate during evaluation"}) + + +def extract_anthropic_prompt(prompt_and_response): + """Extract the anthropic prompt from a prompt and response pair.""" + search_term = "\n\nAssistant:" + search_term_idx = prompt_and_response.rfind(search_term) + assert search_term_idx != -1, f"Prompt and response does not contain '{search_term}'" + return prompt_and_response[: search_term_idx + len(search_term)] + + +def get_hh(split: str, sanity_check: bool = False, silent: bool = False, cache_dir: str = None) -> Dataset: + """Load the Anthropic Helpful-Harmless dataset from Hugging Face and convert it to the necessary format. + + The dataset is converted to a dictionary with the following structure: + { + 'prompt': List[str], + 'chosen': List[str], + 'rejected': List[str], + } + + Prompts should be structured as follows: + \n\nHuman: \n\nAssistant: + Multiple turns are allowed, but the prompt should always start with \n\nHuman: and end with \n\nAssistant:. + """ + import pdb; pdb.set_trace() + dataset = load_dataset("Anthropic/hh-rlhf", split=split, cache_dir=cache_dir) + if sanity_check: + dataset = dataset.select(range(min(len(dataset), 1000))) + + def split_prompt_and_responses(sample) -> Dict[str, str]: + prompt = extract_anthropic_prompt(sample["chosen"]) + return { + "prompt": prompt, + "chosen": sample["chosen"][len(prompt) :], + "rejected": sample["rejected"][len(prompt) :], + } + + return dataset.map(split_prompt_and_responses) + + +if __name__ == "__main__": + parser = HfArgumentParser(ScriptArguments) + script_args = parser.parse_args_into_dataclasses()[0] + + if script_args.load_in_8bit and script_args.load_in_4bit: + raise ValueError("You can't load the model in 8 bits and 4 bits at the same time") + elif script_args.load_in_8bit or script_args.load_in_4bit: + quantization_config = BitsAndBytesConfig( + load_in_8bit=script_args.load_in_8bit, load_in_4bit=script_args.load_in_4bit + ) + # Copy the model to each device + device_map = ( + {"": f"xpu:{PartialState().local_process_index}"} + if is_xpu_available() + else {"": PartialState().local_process_index} + ) + torch_dtype = torch.bfloat16 + else: + # device_map = None + # dh + device_map = "auto" + quantization_config = None + torch_dtype = None + + # 1. load a pretrained model + model = AutoModelForCausalLM.from_pretrained( + script_args.model_name_or_path, + device_map=device_map, + quantization_config=quantization_config, + torch_dtype=torch_dtype, + ) + + if script_args.ignore_bias_buffers: + # torch distributed hack + import pdb; pdb.set_trace() + model._ddp_params_and_buffers_to_ignore = [ + name for name, buffer in model.named_buffers() if buffer.dtype == torch.bool + ] + import pdb; pdb.set_trace() + + if not script_args.use_peft: + model_ref = AutoModelForCausalLM.from_pretrained(script_args.model_name_or_path) + else: + # If one uses PEFT, there is no need to load a reference model ## dh: TODO: CHECK THIS + model_ref = None + + tokenizer = AutoTokenizer.from_pretrained(script_args.model_name_or_path) + if tokenizer.pad_token is None: + tokenizer.pad_token = tokenizer.eos_token + + # 2. Load the Anthropic Helpful-Harmless dataset + # train_dataset = get_hh("train", sanity_check=script_args.sanity_check) + + # 3. Load evaluation dataset + # eval_dataset = get_hh("test", sanity_check=script_args.sanity_check) + + # dh + dataset= load_dataset("csv", data_files="data/rlhf_training_data_d2ai.csv", split="train") + def feature_format(sample) -> Dict[str, str]: + return { + "prompt": sample["input"], + "chosen": sample["chosen"], + "rejected": sample["rejected"], + } + dataset = dataset.map(feature_format) + train_eval = dataset.train_test_split(test_size=0.1) + import pdb; pdb.set_trace() + train_dataset = train_eval["train"] + eval_dataset = train_eval["test"] + + + # 4. initialize training arguments: + training_args = TrainingArguments( + per_device_train_batch_size=script_args.per_device_train_batch_size, + max_steps=script_args.max_steps, + remove_unused_columns=False, + gradient_accumulation_steps=script_args.gradient_accumulation_steps, + learning_rate=script_args.learning_rate, + evaluation_strategy="steps", + logging_first_step=True, + logging_steps=10, # match results in blog post + eval_steps=500, + output_dir=script_args.output_dir, + optim="rmsprop", + warmup_steps=150, + report_to=script_args.report_to, + bf16=script_args.bf16, + fp16=script_args.fp16, + gradient_checkpointing=script_args.gradient_checkpointing, + # TODO: uncomment that on the next transformers release + # gradient_checkpointing_kwargs=script_args.gradient_checkpointing_kwargs, + ) + + if script_args.use_peft: + peft_config = LoraConfig( + r=script_args.peft_lora_r, + lora_alpha=script_args.peft_lora_alpha, + bias="none", + task_type="CAUSAL_LM", + ) + else: + peft_config = None + + # 5. initialize the DPO trainer + dpo_trainer = DPOTrainer( + model, + model_ref, + args=training_args, + beta=script_args.beta, + train_dataset=train_dataset, + eval_dataset=eval_dataset, + tokenizer=tokenizer, + max_length=script_args.max_length, + max_target_length=script_args.max_target_length, + max_prompt_length=script_args.max_prompt_length, + generate_during_eval=script_args.generate_during_eval, + peft_config=peft_config, + ) + + # 6. train + import pdb; pdb.set_trace() + dpo_trainer.train()