From 48303b1e35e599bb37725f057a170d63a513c584 Mon Sep 17 00:00:00 2001 From: mnyrop Date: Tue, 28 Jan 2025 17:54:13 -0500 Subject: [PATCH] init mvp page/g325a/natcert result cards --- src/routes/results/[scope]/+page.js | 6 + src/routes/results/[scope]/+page.svelte | 72 +- .../view/afile/[anum]/[pageslug]/+page.svelte | 1 - static/api/index/afile.json | 442 + static/api/index/g325a.json | 381 + static/api/index/natcert.json | 1 + static/api/index/page.json | 7535 +++++++++++++++++ 7 files changed, 8419 insertions(+), 19 deletions(-) create mode 100644 static/api/index/afile.json create mode 100644 static/api/index/g325a.json create mode 100644 static/api/index/natcert.json create mode 100644 static/api/index/page.json diff --git a/src/routes/results/[scope]/+page.js b/src/routes/results/[scope]/+page.js index 8b35f04e..ce114960 100644 --- a/src/routes/results/[scope]/+page.js +++ b/src/routes/results/[scope]/+page.js @@ -1,13 +1,19 @@ import { error } from '@sveltejs/kit'; import { validScopes } from '$lib/scope'; +import { base } from '$app/paths'; export async function load({ url, params }) { const vUrl = new URL(url.href); const searchParams = new URLSearchParams(vUrl.search); const scope = params.scope; + if (validScopes.includes(scope)) { + const jsonPath = `${base}/api/index/${scope}.json`; + const resp = await fetch(jsonPath); + const results = await resp.json() || []; return { scope: scope, + results: results, searchParams: searchParams }; } else { diff --git a/src/routes/results/[scope]/+page.svelte b/src/routes/results/[scope]/+page.svelte index 3c7766c7..401503ab 100644 --- a/src/routes/results/[scope]/+page.svelte +++ b/src/routes/results/[scope]/+page.svelte @@ -3,8 +3,9 @@ import { ClickableTile, Pagination } from 'carbon-components-svelte'; export let data; - console.log(data.scope); console.log(data.searchParams); + console.log(data.results); + const results = data.results; // import { addDocument, search } from '$lib/search'; @@ -22,25 +23,58 @@ // results = search(query, { suggest: true }); // } - import afiles from '$lib/data/afiles.json'; + const safeDetail = (result, label, key, method) => { + if (result?.fields?.[key]?.[method]) { + return `${label}: ${result.fields[key][method]}; `; + } + else { + return ''; + } + } - const totalItems = afiles.length; + const totalItems = results.length; $: currentPage = 1; $: itemsPerPage = 10; - $: items = getPageItems(currentPage); + $: items = getPaginatedItems(currentPage); + + const templatePageResult = (result) => { + const full_text = (result?.full_text ?? '').substring(0,266); + const page_number = (result.page_index || 0) + 1; + let details = ''; + details += safeDetail(result, "FORM TITLE", 'form_title', 'ms_form_title_llm_v1'); + details += safeDetail(result, "DOCUMENT TYPE", 'doctype', 'ms_doctype_v1'); + details += safeDetail(result, "COUNTRIES", 'countries', 'ms_countries_nlp_v1'); + + return { + id: result.id, + label: `${result.anumber} Page ${page_number}`, + thumbnail: `https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_${result.id}/square/300,/0/default.jpg`, + details: details, + full_text: full_text, + url: `${base}/view/afile/${result.id.replace('_', '/')}?tab=page`, + pageInfo: '' + }; + } + + const templateAFileResult = (result) => { + return { + id: result.id, + label: `${result.fields.last_name.nara}, ${result.fields.first_name.nara} | ${result.id}`, + thumbnail: `https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_${result.id}_0000/square/250,/0/default.jpg`, + details: `DOB: ${result.fields.dob?.nara}; SEX: ${result.fields.sex?.nara}; DOE: ${result.fields.doe?.nara}, COB: ${result.fields.cob?.nara}, POE: ${result.fields.poe?.nara}`, + full_text: '', + url: `${base}/view/afile/${result.id}/0000?tab=afile`, + pageInfo: (result.page_count || 0) + ' pages' + }; + } - const getPageItems = (page) => { + const getPaginatedItems = (page) => { const startIndex = (page - 1) * itemsPerPage; const endIndex = startIndex + itemsPerPage; - return afiles.slice(startIndex, endIndex).map((afile) => ({ - id: afile.id, - name: `${afile.fields.last_name.nara}, ${afile.fields.first_name.nara}`, - thumbnail: `https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_${afile.id}_0000/square/250,/0/default.jpg`, - details: `DOB: ${afile.fields.dob?.nara}; SEX: ${afile.fields.sex?.nara}; DOE: ${afile.fields.doe?.nara}, COB: ${afile.fields.cob?.nara}, POE: ${afile.fields.poe?.nara}`, - url: `${base}/view/afile/${afile.id}/0000`, - pageCount: afile.page_count || 0 - })); + return results.slice(startIndex, endIndex).map((result) => ( + data.scope === 'afile' ? templateAFileResult(result) : templatePageResult(result) + )); }; function handlePaginationChange(event) { @@ -48,7 +82,8 @@ itemsPerPage = pageSize; currentPage = page; - items = getPageItems(page); + console.log('updating!'); + items = getPaginatedItems(page); } @@ -69,11 +104,12 @@ class="rounded-lg border p-4 shadow transition-shadow duration-200 hover:shadow-lg" >
- {item.title} + {item.label}
-
{item.name} | {item.id}
-
{item.pageCount} pages
-
{item.details}
+
{item.label}
+
{item.pageInfo}
+
{item.details}
+
{item.full_text}
diff --git a/src/routes/view/afile/[anum]/[pageslug]/+page.svelte b/src/routes/view/afile/[anum]/[pageslug]/+page.svelte index 39a6d532..a6e476f4 100644 --- a/src/routes/view/afile/[anum]/[pageslug]/+page.svelte +++ b/src/routes/view/afile/[anum]/[pageslug]/+page.svelte @@ -13,7 +13,6 @@ goto(`${base}/404.html`); } - const afile = data.props.afile; const startCanvasId = data.props.canvasId; let scopeIndex = getScopeIndex(data.props.tab); diff --git a/static/api/index/afile.json b/static/api/index/afile.json new file mode 100644 index 00000000..9cb2431f --- /dev/null +++ b/static/api/index/afile.json @@ -0,0 +1,442 @@ +[ + { + "id": "A21203456", + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, I-181", + "INDEX CARD, G-361 (Rev. 10-1-70) N", + "EMPLOYMENT AUTHORIZED, FORM I-94", + "IMPORTANT NOTICE, FORM 1-94 (Rev. 9-1-73)N (Parole Edition)", + "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 10-1-74)", + "I-944 (Rev. 9-173), I-902", + "Surrender This copy when leaving the United States - see reverse, I-94", + "IMPORTANT NOTICE, Form I-94 (Rev. 9-1-73)N (Parole Edition)", + "United States Department of Justice Immigration and Naturalization Service, FORM G-325A ( (REV. 8-27-72N)", + "United States Department of Justice Immigration and Naturalization Service Form G-325A ( (REV. 8-27-72N)", + "AFFIDAVIT RE ASSETS AND LIABILITIES TO BE SUBMITTED BY EVERY REFUGEE 17 YEARS OF AGE OR OVER APPLYING FOR PAROLE INTO THE UNITED STATES, A-21 203 456", + "TAT CA MOI NGUOI TI NAN TU 17 TUOI TRE LON NHAP CANH VA HOA KY DUOC, COI NHU LA NGUOI VO QUOC TICH (PAROLE) PHAI NAP TO BAO DAM VA CHIU TRACH NIEN VE TAI SAN CU MINH., Mau G-648", + "Sworn Statement of Refugee Applying for Parole into the United States, G-64(5.12.75)", + "LỘI KHAI HƯU CÀNG THÀNH TINH NĂM XIN NHẬP CÁNH HÒA KÝ, 10", + "Chu ky va Chuc Vu ca Vien Chuc" + ] + }, + "last_name": { + "nara": "TA" + }, + "first_name": { + "nara": "THI" + }, + "dob": { + "nara": "1885" + }, + "doe": { + "nara": "1975" + }, + "poe": { + "nara": "LOS" + }, + "cob": { + "nara": "VIETN" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1975" + } + }, + "page_count": 25 + }, + { + "id": "A22484466", + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "I-94 (Rev. 9-1-73) N (Parole Edition), I-94", + "MEDICAL Examination of Visa Applicants, 157", + "SPINAL FLUID, 000082", + "INDEX CARD, G-361 (Rev. 4-1-76) N", + "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE, FC-239 ( (Rev. 8-17-75)", + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, 1-357", + "INSTRUCTIONS", + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form 1-357", + "APPLICATION BY INDOCHINESE REFUGEE FOR PERMANENT RESIDENCE, Form Approved", + "Application for Naturalization and Adjustment of Status, I-4129A", + "Title: SHERIFF-CORONER DEPARTMENT COUNTY OF ORANGE CALIFORNIA, Form Number: 501234", + "United States Department of Justice Immigration and Naturalization Service, G-325A", + "BIOGRAPHIC INFORMATION, G-325A", + "Information for Naturalization and Adjustment of Status Application, G-325A", + "United States Department of Justice Immigration and Naturalization Service Processing Sheet, I-485-c" + ] + }, + "last_name": { + "nara": "TRAN" + }, + "first_name": { + "nara": "LIEN THI" + }, + "dob": { + "nara": "1896" + }, + "doe": { + "nara": "1976" + }, + "poe": { + "nara": "LOS" + }, + "cob": { + "nara": "VIETN" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1976" + } + }, + "page_count": 28 + }, + { + "id": "A19240402", + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "Surrender this copy when leaving the united states - see reverse, N-530", + "ARRIVAL - DEPARTURE RECORD, FORM 1-94 ( (REV. 5-1-68)", + "Form G-360D ( (Rev. 1 - 1 - 72) N TICKLER, A19 240 402", + "ALIEN REGISTRATION, A-19 240 402", + "Naturalization Application,, N-4-102", + "APPLICATION TO FILE PETITION FOR NATURALIZATION, N-4 100 ( Rev. 5-1-76)", + "The Naturalization Application, N-4", + "MEMORANDUM OF CHANGE OF ADDITION TO RECORD OF LAWFUL PERMANENT RESIDENCE, A19 240 402", + "INSTRUCTIONS, I-59", + "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A19 240 402", + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, A19 240 402", + "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form I-18la ( (Rev. 5 - 1 - 74) N", + "United States Department of Justice Immigration and Naturalization Service, Form I-181a ( (Rev. 5 - 1 - 74) N", + "FILE ROUTED ON LOAN, G-102", + "APPLICATION FOR STATUS AS PERMANENT RESIDENT, 4-240-42", + "Alien Certification Form, AC-1295", + "Affidavit, 1602-0354", + "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A 19 240 402", + "United States Department of Justice Immigration and Naturalization Service, FORM 1-181a ( (REV. 12-1-72) Y", + "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, FORM 1-181a ( (REV. 12-1-72) Y", + "United States Department of Justice Immigration and Naturalization Service, Form No. 4-25-77N", + "Personal Description Form (N-604, Personal Description Form N-604", + "Naturalization Form, N-4", + "United States Department of Justice Immigration and Naturalization Service, G-325 ( (REV. 8-1-74)", + "Title: UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form Number: A19 240 402", + "Immigration and Naturalization Service", + "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS, GPO 926-907", + "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service, G-14", + "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS, Exp. 926-907", + "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet, G-228 filed by:", + "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form I-592", + "DEPARTMENT OF STATE FOREIGN SERVICE OF THE UNITED STATES OF AMERICA MEDICAL EXAMINATION OF VISA APPLICANTS, FS-398", + "United States Department of Justice Immigration and Naturalization Service, 443-R048", + "U.S. Government Printing Office, 1969 O-351-4, 203(a)(7)", + "Alien Registration Form, GPO 1968 OF - 315-001", + "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE, FD-258 ( (Rev. 12-12-67)", + "REGISTRATION FOR CLASSIFICATION AS CONDITIONAL ENTRANT, Form Approved Form No. 4-048", + "Registration Form for Immigrant Entry to the United States, GPO 870-899", + "DEPARTMENT OF THE UNITED STATES OF AMERICA FOREIGN SERVICE OF THE UNITED STATES MEDICAL EXAMINATION OF VISA APPLICANTS, FORM FS-398", + "BIOGRAPHIC INFORMATION, A19 240 402", + "Auskunft aus dem Strafregister, ABAGER-618", + "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 8-27-72)N" + ] + }, + "last_name": { + "nara": "NEMETH" + }, + "first_name": { + "nara": "ANNA" + }, + "dob": { + "nara": "1907" + }, + "doe": { + "nara": "1972" + }, + "poe": { + "nara": "NYC" + }, + "cob": { + "nara": "HUNGA" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1977" + } + }, + "page_count": 75 + }, + { + "id": "A10712436", + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "Processing Sheet", + "Application for Naturalization, N-4 (Rev. 07/17/91)N", + "Information about your residences and employment., N-400 ( (Rev 07/19)N", + "Part 9. Memberships and organizations., Form N-4 ( (Rev. 07/17'91)N", + "California Driver License, N0059160", + "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE CITIZENSHIP USA", + "U.S. Department of Justice INTERVIEW Application to File Petition for Naturalization", + "Marital Status and Immigration Information, N-400 ( (12/05/86) N", + "Naturalization and Citizenship Questionnaire, Form N-400 ( (12/05/86) N", + "Naturalization Application", + "Notice of Naturalization Oath Ceremony, N-445A (", + "Naturalization Oath Ceremony,, N-445", + "Naturalization Certificate, N-550 REV. 6/91", + "Application for Change of Name, N- 5 ( (1/96)", + "Application for Change of Name, N-5 (1/96", + "Title: BIOGRAPHIC INFORMATION\\nForm Number: OMB No. 1115-0066", + "United States Department of Justice Immigration and Naturalization Service, G-56 ( (11-1-56)", + "U.S. Government Printing Office, G-360A (Rev. 9-11-56)", + "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service, G-14", + "FOREIGN SERVICE MEDICAL EXAMINATION OF VISA APPLICANTS, FS-398", + "REPUBLICa DE EL SALVADOR - CONTE DE CUENTAS - QUARENTA CENTANOS, 165847", + "CERTIFICADO, T.R. 165846", + "Foreign Service of the United States of America, I- 980834", + "United States of America Immigrant Visa and Alien Registration, 2698", + "Certification of Good Moral Character and Employment for Rosa Aminta Renderos Dominquez", + "COMPTON COLLEGE, 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA", + "REPUBLICa DE EL SALVADOR EN LA AMERICA CENTRAL, CORTÉ DE CUENTAS", + "Timonio de esta escritura", + "REPUBLICa de El Salvador - Corte de Cuentasas, 253875, T.R. 253199", + "MEMORANDUM DE CASA GOLDTREE, La Idea 2-54", + "Certification of Employment and Good Moral Character for Rosa Aminta Renderos Dominquez" + ] + }, + "last_name": { + "nara": "DOMINGUEZ RENDEROS" + }, + "first_name": { + "nara": "ROSA" + }, + "dob": { + "nara": "1913" + }, + "cob": { + "nara": "ELSAL" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1994" + }, + "natz_date": { + "nara": "1996" + }, + "natz_location": { + "nara": "LOS" + } + }, + "page_count": 46 + }, + { + "id": "A28703181", + "fields": { + "sex": { + "nara": "M" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "U.S. Department of Justice, Immigration and Naturalization Service, A28 703 181", + "Embassy of the United States of America, A28 703181", + "Petition to Screened by NARA, 5/9/2023, FORM I-130", + "Petition for Alien Relative, I-550 Petition Filing Form", + "ESTADO LIBRE Y SOBERANO DE ZACATECAS, RECUBIACION DE RENTAS, PAPEL ESPECIAL PARA CERTIFICADOS DE LAS ACTAS", + "ESTADO LIBRE Y SOBERANO DE ZACATECAS, Nº 90 noventa", + "Screened by NARA, 5/9/2023, ARQUIVO GENERAL DEL ESTADO" + ] + }, + "last_name": { + "nara": "RUIZ RAMIREZ" + }, + "first_name": { + "nara": "ERNESTO" + }, + "dob": { + "nara": "1914" + }, + "doe": { + "nara": "1975" + }, + "poe": { + "nara": "SYS" + }, + "cob": { + "nara": "MEXIC" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1987" + } + }, + "page_count": 8 + }, + { + "id": "A10775863", + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "Memo, C 3645015", + "APPLICATION FOR A NEW NATURALIZATION OR CITIZENSHIP PAPER, 3645015", + "EXAMINER'S REPORT, GPO 945159", + "Registration of Marriages (Ireland) Act, 1863, 220", + "EMBASSY OF THE UNITED STATES OF AMERICA, PPT 9-16:0'NEILL Mrs. Margaret", + "Letter from the Assistant District Director for Citizenship, BOS 30/3 (O'Neill", + "UNITED STATES GOVERNMENT Memorandum, 5010-108", + "Operations Memorandum, FORM 05-682", + "Certificate of the Loss of the Nationality of the United States, F-324", + "Foreign Service Regulations and Reporting Procedures for Consular Officers in Ireland,, PM-1600/23", + "APPLICATION FOR REGISTRATION", + "AFFIDAVIT BY NATURALIZED AMERICAN TO OVERCOME PRESUMPTION OF NONCITIZENSHIP, 1-170", + "OPinion of Officer Taking Affidavit, N-14023", + "Naturalization, 30184", + "OATH OF ALLEGIANCE", + "The Acting Secretary of State presents his compliance to the Minister of the Irish Free State and has the honor to enclose for his disposal a passport which was issued to Margaret Horgan by the Government of the Irish Free State., PD-010-MR D", + "REQUEST FOR INFORMATION FROM NATURALIZATION FILE ( (N-585 is attached, fill in items 2, 3 and 6 only)", + "IMMIGRATION AND NATURALIZATION SERVICE, C 3 645 015 Temp.", + "CERTIFICATE OF THE LOSS OF NATIONALITY OF THE UNITED STATES, Form No. 568", + "United States Naturalization Certificate", + "United States of America Naturalization Certificate, 345016", + "Naturalization Petition,, N-4-1025" + ] + }, + "last_name": { + "nara": "HORGAN" + }, + "first_name": { + "nara": "MARGARET" + }, + "dob": { + "nara": "1907" + }, + "doe": { + "nara": "1959" + }, + "poe": { + "nara": "BOS" + }, + "cob": { + "nara": "IRELA" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "2014" + }, + "natz_date": { + "nara": "1932" + }, + "natz_location": { + "nara": "NYC" + } + }, + "page_count": 31 + }, + { + "id": "A19529822", + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "form_titles": { + "ms_form_titles_llm_v1": [ + "Application for Naturalization, N-4", + "Information about your residences and employment., N-4 (001", + "Part 9. Memberships and organizations.", + "Continued on back, N-4 ( Rev 07/19)N", + "Application for Naturalization", + "Processing Information., 1111-0009, 20503.", + "Naturalization Interview Request Form, A 19 529 822", + "Naturalization District Adjudication Officer Appointment Letter, A019 529 822", + "Pelvic Pain", + "U.S. Department of Justice, Immigration and Naturalization Service, A 19 529 822", + "COVER SHEET RECORD OF PROCEEDING, M-175 ( (Rev. 10-20-69)", + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, FORM I-181 ( (REV. 10-1-71) N", + "INSTRUCTIONS, I-123", + "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, A19 529 822", + "APPLICATION FOR STATUS AS PERMANENT RESIDENT, 443-R0400", + "Screeneded by NARA, 7/13/2023, I-590A Application for Adjustment of Status to Lawful Permanent Resident", + "Naturalization Application Packet, N-4-102", + "IMMIGRATION AND NATURALIZATION SERVICE APPLICATION FOR AGRICULTURAL EMPLOYMENT, I-458A", + "MEDICAL Examination and Immigration Interview, FORM 1-486 A", + "NEW YORK X-RAY Laboratory, Murray Hill 2-6767-8-9", + "New York X-Ray Laboratory, A 19 529 822", + "Affidavit of Support", + "FOIA ( (b)(6), GPO 950-733", + "CENTERVILLE MEDICAL GROUP, R.D. NO. 1", + "STATEMENT, 59445-5", + "STATEMENT", + "Biographic Information, FORM G-325A ( (REV. 4-1-71)", + "NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION", + "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE", + "Petition to Classify Status of Alien Relative for Issuance of Immigrant Grant Visa, Form I-130", + "Application for Adjustment of Status to Lawful Permanent Resident,, N-456.", + "AFFIDAVIT", + "INDEX CARD, G-361 (Rev. 4-1-76) N", + "HOME BOUND PRE-INTERVIEW WORKSSHEET, 19 529 822", + "Administratively Closed, I-760A", + "U.S. Department of Justice Immigration and Naturalization Service N-4 Continuation Processing Worksheet, N-650C ( (Rev. 1/1/98)", + "N-4 Processing Work Sheet - Newark, New Jersey, 19-529-822", + "Processing Sheet, I-485 ( (2445)", + "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, A19 529 822 ( (245)", + "Processing Sheet, I-485 ( (245)", + "ROUTE SLIP, Form 1 ( (Rev. 6-16-66)", + "NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION, Form I-171", + "Screened by NABAE 7/13/2023 CODE NO., G-361 (Rev. 10-1-70) N" + ] + }, + "last_name": { + "nara": "WADHWANI" + }, + "first_name": { + "nara": "DURUPADI" + }, + "dob": { + "nara": "1906" + }, + "doe": { + "nara": "1972" + }, + "poe": { + "nara": "NYC" + }, + "cob": { + "nara": "PAKIS" + }, + "pfco": { + "nara": "NRC" + }, + "dfo": { + "nara": "1973" + } + }, + "page_count": 71 + } +] diff --git a/static/api/index/g325a.json b/static/api/index/g325a.json new file mode 100644 index 00000000..6f93485b --- /dev/null +++ b/static/api/index/g325a.json @@ -0,0 +1,381 @@ +[ + { + "id": "A10712436_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: BIOGRAPHIC INFORMATION\\nForm Number: OMB No. 1115-0066" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Salvadoran" + } + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB No. 1115-0066 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY FILE NUMBER Renderos Rosa Aminta FEMALE 2-28-13 SALVADOREAN 10 712 436 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SAME NAHUIZALED EL SALVADOR C.A. 566-54-1023 (If. any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE. DominGuez RomuLo sonsonate, EL S a LV2DOR C.A. FATHER MOTHER(Maiden name) JuLiA CeLSA Renderos, same HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife. give maiden name) WIFE none FORMER HUSBANDS OR WIVES (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 11536 E. ImpERIaL Norwark CA. 12 79 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 13 C. OTe. 2-2 sonsonate EL SaLVaDor C 11 77 12 79 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE) LIST PRESENT EMPLOYMENT FIRST FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR none PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT DATE NATURALIZATION OTHER (SPECIFY): STATUS AS PERMANENT RESIDENT Rosal Aminta Renderos 4-18-88 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALFNABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) Form G-325 (Rev. 10-1-82) Y (1) Ident." + }, + { + "id": "A10712436_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: BIOGRAPHIC INFORMATION\\nForm Number: OMB No. 1115-0066" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Salvadoran" + } + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB No. 1115-0066 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY FILE NUMBER Renderos Rosa Aminta FEMALE 2-28-13 SALVADOREAN 10 712 436 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SAME NAHUIZALED EL SALVADOR C.A. 566-54-1023 (If. any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE. DominGuez RomuLo sonsonate, EL S a LV2DOR C.A. FATHER MOTHER(Maiden name) JuLiA CeLSA Renderos, same HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife. give maiden name) WIFE none FORMER HUSBANDS OR WIVES (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 11536 E. ImpERIaL Norwark CA. 12 79 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 13 C. OTe. 2-2 sonsonate EL SaLVaDor C 11 77 12 79 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE) LIST PRESENT EMPLOYMENT FIRST FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR none PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT DATE NATURALIZATION OTHER (SPECIFY): STATUS AS PERMANENT RESIDENT Rosal Aminta Renderos 4-18-88 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALFNABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) Form G-325 (Rev. 10-1-82) Y (1) Ident." + }, + { + "id": "A19529822_0050", + "page_index": 50, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0050/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Biographic Information, FORM G-325A ( (REV. 4-1-71)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Peru", "Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1962, 1972, 1906, 2023, 1926] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['housewife', ' none']" + }, + "nationality": { + "nationality_llm_v1": "INDIAN" + } + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 code 0300 - NYO FORM G-325A (REV. 4-1-71) office Form-Approved UNITED STATES DEPARTMENT OF JUSTICE Budget Bureay No.143-R436 BIOGRAPHIC Immigration and Naturalization Service 245 e 0830 Sec. INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE (Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. WADHWANI DURYPADI JAGAT FEMALE 11/28/1906 INDIAN H19529824 (If any ALL OTHER NAMES USED -RAI CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. BHAGWANANI ISAR KARACHI, WEST PAKISTAN (If any) - FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH (If known) CITY AND COUNTRY OF RESIDENCE FATHER BHAGWANANI MULRAJ - WEST \" PAKISTAN} \" DECEASE D MOTHER (Maiden name) BHAMBHANI GAYA - HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE JAGAT SUKKUR WADHWANI -RAI 11/5/1906 WEST PAKISTAN 4/17/1926 KHAIRPUR WEST PAK FORMER HUSBANDS OR WIVES (if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE NONE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR . 18K PERU, 97/11 HORACE LAFRAK N.Y. U.S.A. July 1972 PRESENT TIME HARDING EXPWY N.Y.CITY 2 203 SKYLINE DRIVE CALIFORNIA PA. U.S.A APRIL 1972 JUNE 1972 3 RAJAWADI ROAD GHATKOPAR MAHARASH INDIA NOV. 1962 APRIL 1972 A-19/76 BOMBAY -TRA Show below last foreign residence of more than one year if not shown above. (Include all information requested above.) - APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR NONE PRESENT TIME my House - Wife 4 all been life Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE Z NATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): 43 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A21203456_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 10-1-74)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "reason": { + "reason_llm_v1": "OTHER" + }, + "nationality": { + "nationality_llm_v1": "VIETNAM" + } + } + }, + "anumber": "A21203456", + "full_text": "Carbons: If ty FORM G-325A (REV. 10-1-74) Y Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. TA VIEN THI FEMALE 12/01/85 VIETNAM (If any) A 21 - 203456 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. one FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) SON TAY , VIETNAM (If any) 586-328421 CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG MOTHER (Maiden name) NGUYEN THE LAO VIETN NAM HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE PHAN Huy LIEU LIEU unk Vietnan Vulnant Deceased FORMER HUSBANDS OR WIVES( (if none;so state) FAMILY NAME (Fo wife, give maiden name) m/ FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 927 centennial STF4 LOSANGELES C.A U.S.A 10 82 PRESENT TIME 1212 WATERLOO ST 10 81 10 82 827NBeAuDRy CA 10 77 10 81 25000 S. NORMAN DiE HARboRCiTy CA 10 75 10 77 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR ReTiRED PRESENT TIME Too OCD Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS X 7-8-33 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TA VIEN THI A-21-203-456 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: FORM G-325A (1) Ident." + }, + { + "id": "A21203456_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, FORM G-325A ( (REV. 8-27-72N)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1970, 1975] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "Naturalization" + }, + "nationality": { + "nationality_llm_v1": "VN" + } + } + }, + "anumber": "A21203456", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr. NATIONALITY ALIEN REGISTRATION NO. TA THI FEMALE 1385 VN (421) 203 456 (If any) ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SON TAY NVN (If any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG NUN Deceased MOTHER (Maiden name) NAMEN THE NEU NVN Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE FORMER HUSBANDS OR WIVES none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 4631715 VAN ANYET PRESENT TIME street CAIGON SUN Jan 1970 Apr 1975 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS Refugee user 3 MAY (975 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TA VIEN THE (223) 203 456 (OTHER AGENCY USE) INS USE (Office of Origin) VIETNAM REFUGEE Not SL. & 8 low CP PENOLETON, CA FORM G-325A (3) C. 5-1-75" + }, + { + "id": "A21203456_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service Form G-325A ( (REV. 8-27-72N)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1970, 1975, 1885] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "Refugee" + }, + "nationality": { + "nationality_llm_v1": "VN" + } + } + }, + "anumber": "A21203456", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 BIOGRAPHIC Immigration and Naturalization Service INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. TA VIEW THI FEMALE 1885 VN (427) 203 456 (If ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SON TAY NVN (If any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG NVN Deceased MOTHER (Maiden name) NGUYEN THE NEU NVN Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH OR DATE OF MARRIAGE PLACE OF MARRIAGE WIFE (For wife, give maiden name) FORMER HUSBANDS OR WIVES (if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 46217 LE VAN DUYET PRESENT TIME Street SAIGON SVN Tan 1970 Apr 1975 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE INATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): Refugee men 3 MAY 1975 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A22484466_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1912, 1935, 1978] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "INSTRUCTIONS: USE TYPEWRITER. BE SURE ALL COPIES ARE LEGIBLE. Failure to answer fully all questions delays action. C C. -Ct C C C Do Not Remove Carbons: If typewriter is not available, print heavily in block letters with ball-point pen. U.S GOVERNMENT PRINTING OFFICE: 1977-237-015 FORM G-325A (REV. 10-1-74) Y Form Approved UNITED STATES DEPARTMENT OF JUSTICE LOS OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC T/C I INFORMATION SEP 23 1978 (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. FEMALE (If any) -TRAN, LIEN THI 1896 Vietnamese A 22 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. none Saigon, Vietnam -56-7200 FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER(Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES(if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 26981 Ayamonte Mission Viejo Ca USA 08 76 PRESENT TIME Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER none OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE INATURALIZATION ADJUSTMENT OF STATUS t 9 / 23 / 78 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN HI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (3) C. FORM G-325A" + }, + { + "id": "A22484466_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "BIOGRAPHIC INFORMATION, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1896, 1912, 1935] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "Form Approved OMB No. 43-R436 BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. (If any) -TRAN, LIEN THI FEMALE 1896 Vietnamese A 122 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. Saigon, Vietnam (580)56-7200 none FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER(Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES(if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 08 76 PRESENT TIME 26981 Ayamonte Mission Viejo Ca USA Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER YEAR MONTH none OCCUPATION (SPECIFY) MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN HI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (3) C. FORM G-325A" + }, + { + "id": "A22484466_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Information for Naturalization and Adjustment of Status Application, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1896, 1912, 1935] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "Form Approved PARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. -TRAN, LIEN THI FEMALE 1896 Vietnamese (If any) 22 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. none Saigon, Vietnam (580-56-7200 FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER (Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES( (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 26981 Ayamonte Mission Viejo Ca USA 08 76 PRESENT TIME Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER none OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS + OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN WHI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (4) Consul FORM G-325A" + }, + { + "id": "A19240402_0074", + "page_index": 74, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0074/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 8-27-72)N" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1907, 1903, 1972, 1872] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['housewife']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Hungarian" + } + } + }, + "anumber": "A19240402", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. NEMETH ANNA Gabriella FEMALE 3-16-1907 Huggground (If any) 419-240-402 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH BudAPEst- Hungory SOCIAL SECURITY NO. 326-54-4043 FAMILY NAME FATHER KARDOS. Dezso. 1872 Veszprem Hungery- Deceased FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE MOTHER(Maiden name) Csipes. Julienna. 1886 MEZOTUR. Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE n/A FORMER HUSBANDS OR WIVES(i none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Nemeth Gabor 1903 / 929 Minor 1966 Hungery by Death APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. Hangary FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 3172 N.Shendan Chicogo Illinois U.S.A Jan. 1972 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 6735Malkenner Schlorssth APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE.) LIST PRESENT EMPLOYMENT FIRST. 2/23 Gemmy- FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR Housewife PRESENT TIME Housewife FORM IS SUBMITTED IN CONNECTION WITH Show below last occupation abroad if not shown above. (Include all information requested above.) THIS APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER NATURALIZATION times Neweth 3/8/74 DATE ADJUSTMENT OF STATUS OTHER (SPECIFY): IF YOUR NATIVE ALPHABET is IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + } +] diff --git a/static/api/index/natcert.json b/static/api/index/natcert.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/static/api/index/natcert.json @@ -0,0 +1 @@ +[] diff --git a/static/api/index/page.json b/static/api/index/page.json new file mode 100644 index 00000000..6a41ce8d --- /dev/null +++ b/static/api/index/page.json @@ -0,0 +1,7535 @@ +[ + { + "id": "A28703181_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Department of Justice, Immigration and Naturalization Service, A28 703 181" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 1987] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 U.S. Department of Justice Immigration and Naturalization Service Cause Director 300 North Los Angeles Screes Los darsies. C.A. 80012 Maria Dolores Ruiz 1283 South Windsor Blvd. Los Angeles, CA. 90019 A28 703 181 MAR - 6 1987 Dear Ms. Ruiz: behal: of Reference 1: made to mode the visa petition you filed FOIA (b)(6) Yes are hereby notified that in accordance with Title S, Code e: Federal Regulations, Section 205.1, the VISI petition is cutomatically revoked as of the date of 1: 's approval. This revenution is automatic because: () Formal notice of withcrawal was filed by you with this Service. ( ) Your relationship with the beneficiary has legally terminated.\" () The bebeficiary has reached age 21 and there- fore is IN longer elicible for the benefit granted by the petition. bat The beneficiary has married and therefore is IN longer eligible for the benefit granted by the petition. Sincerely, Emest E. Gustafson District Director" + }, + { + "id": "A28703181_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Embassy of the United States of America, A28 703181" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 EMBASSY OF THE UNITED STATES OF AMERICA A28 203181 FEB 23 6 14 LOS TO: INS LOS ANGELES, CALIFORNIA FROM: AMEMBASSY MEXICO CITY, IMMIGRANT VISA UNIT We are returning herewith the approved I-130 on behalf of FOIA (b)(6) for the following reasons: (XX Applicant got married and therefore is no longer entitled to P2-2 classification. Marriage certificate attached. ( ) Applicant was issued an Immigrant Visa on . ( ) Applicant adjusted status in the United States on . ( ) Applicant died ( ) I-130 is returned as per your request (copy attached). . ( ) The enclosed I-130 (I-130's) is (are) being returned to your office for disposition in accordance with 22 CFR 42.65, 2.3(c). Case (s) has (have) been terminated under section 203e of the INA. Jane g. Tamenbarm" + }, + { + "id": "A28703181_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Petition to Screened by NARA, 5/9/2023, FORM I-130" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1980, 1914, 1977, 2023] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 UNITED STATES DEPARTMENT OF JUSTICE Form App oved Immigration and Naturalization Service OMB NO. 43-RO 401 PETITION TO Fee Stamp PLEASE NOTE CLASSIFY STATUS OF YOU ARE THE PETITIONER ALIEN RELATIVE FOR AND YOUR RELATIVE REC'D T/C SEP 15 1977 ISSUANCE OF IS THE IMMIGRANT VISA BENEFICIARY FOIA (b)(6) A28 703181 1. Name of benefic APS) (First) (Middle) 2. DotNot Write in This Space 3. Names, birthdates and countries of birth of FOIA (b)(6) NMP beneficiary's children. 4 Other names used including maiden name if married) R2002/20/8 NONE FOIA (b)( (6) uor 5 Country 6 Date nt beneficiary's birth (Month, day, year) FOIA (b)(6) FOIA (b)(6) 7. My name is: (Last, in CAPS) (First) (Middle) 8. My phone number is: 77:97 RUIZ MARIA DOLORES 936-3488 9. Other names used: (including maiden name if married woman) 10. Relationship of beneficiary to myself MARIA DOLORES RAMIREZ (DE RUIZ) FOIA (b)(6) any 11. ! was born: (Month) (Day) (Year) in: (Town or city) (State or Province) (Country) 7/20/1914 TLALTENANGO, ZAC., MEXICO FOLA (b) If you are a citizen of the United States, give the following: a. Citizenship was acquired: (Check one) through birth in the U.S. through parents through naturalization through marriage (1) If acquired through naturalization, give name under which naturalized, number of naturalization certificate, and date and place of naturalization: NOT APPLICABLE. (2) If acquired through parentage or marriage, have you obtained a certificate of citizenship in your own name? (a) If so, give number of certificate and date and place of issuance: (b) If no submit evidence of citizenship. in accordance with instruction 3 a (2) If you are a lawful permanent resident alien of the United States. give the following: a. Alien Registration Number b. Date, place, and means of admission for lawful permanent residence A-FOIA (b)(6) FOIA (b)(6) Beneficiary arital status: 15. Name of beneficiary's spouse, if married, and date and country of birth (Omit this item if petition is for your spouse) Married Widowed Divorced Single NOT APPLICABLE. Full address beneficiary's spouse and children. if any (Omit this item if petition is for your spouse) NONE. If this petition is for your spouse or child. give the following: a. Date and.place of your present marriage Names of my prior spouses Names of beneficiary's prior spouses 9/30/33 ZAC., MEXICO Has this beneficiary ever been in the U. S.? -0- YES NO OFFICIAL SEAL Are beneficiary and petitioner related by adoption? EDILIA ESPINOZA YES NO NOTARY PUBLIC - CALIFORNIA LOS ANGELES COUNTY (CONTINUE WITH ITEM 20 ON REVERSE) OATH OR AFFIRMATION OF PETITIONER My comm. expires FEB 7. 1980 I swear (affirm at I know the contents of this petition signed by me and that the statements herein are true and correct, 22 Pennsylvania Ave., Los Andeles CA 90033 Signature of petitioner (See Instruction No. 5) Maria Poloris Subscribed and sworn to (affirmed) before me this 13 day of A.D 19 at Cenzele (SEAL) My commission expires 2/7/80 Augustram Mcdon (TITL Putlic Bill (SIGNATURE OF OFFICER ADMINISTERING OATH) SIGNATURE OF PERSON PREPARING FORM IF OTHER THAN PETITIONER I declare that this document was prepared by me at the request of the petitioner and is based on all information of which I have any knowledge. Enyune (SIGNATURE) a magaen 958 SOUTH (ADDRESS) FLOWER ST. L.A. CAL. , 8/13/1977 (DATE) FORM 130 RECEIVED TRANS. IN RET'D TRANS. OUT COMPLETED (REV. 1-1-77) N" + }, + { + "id": "A28703181_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Petition for Alien Relative, I-550 Petition Filing Form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1971, 1977, 2023, 1974] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 TO THE SECRETARY OF STATE: 2/4 AUG 1977 The patition was filed on I REMARKS U.S. APPROVED INS. PERSONAL INTERVIEW CONDUCTED The petition is approved for status under section: OCJ 6 1977 DOCUMENT CHECK ONLY SPOUSE, 201 (b) CHILD 203 (a) (2) DATE FIELD INVESTIGATION COMPLETED OF ACTION APPROVAL PREVIOUSLY FORWARDED 201 (b) PARENT 203 (a) (4) DD LOS ANGELES CA2 203 (a) (1) 203 (a) (5) DISTRICT REMARKS/Continued) OFFICIAT SAG' (PETITIONER IS NOT TO WRITE ABOVE THIS LINE) 20. Check the appropriate box below and furnish the information required for the box checked: XBenaficial will anolv for a visa abroad at the GITA DALAJARA, JALISCO, MEXICO FOIA (b)(6) FOIA (b) CITY IN FOREIGN COUNTRY)IFOREIGN COUNTRY) Beneficiary is in the United States and will apply for adjustment of status to that of a lawful permanent resident in the office of the Immigration and Naturalization Service at (CITY) (STATE) If the application for adjustment of status is denied. the beneficiary will apply for a visa abroad at the American Consulate in (CITY IN FOREIGN COUNTRY) (FOREIGN COUNTRY) 21. My residence in the United States is: (C/O. if appropriate) (Apt. No.) (Number and Street) (Town or city) (State) (ZIP Code) 1283 SOUTH -WINDSOR BLVD., LOS ANGELES, CALIFORNIA, 90019 22. My address abroad (if any) is: (Number and street) (Town or city) (Province) (Country) NONE. 23. Last address at which I and my spouse resided together From To (Town or city) (State or Province) (Country) (Apt. No.) (Number and street) (Month) (Year) (Month) (Year) LOS ANGELES, CALIFORNIA, U.S.A. 1223 17th ST. 6/1971 to 8/1974 24. Address in the United States where beneficiary will reside (City) (State) 1283 SOUTH WINDSOR BLVD., LOS ANGELES, CALIFORNIA 90019 25. Address at which beneficiary is presently residing (Apt. No.) (Number and street) (Town or city) (Province or State) (ZIP Code) 1283 SOUTH WINDSOR BLVD., LOS ANGELES, CALIFORNIA 90019 26. If this petition is for a child. (a). Is the child married? NO (b). Is the child your adopted child? N/A if so, give the names, dates, and places of birth of all other children adopted by you. If none, so state. FOIA (b) (6) FOIA (b) (6) 27. If this petition is for a brother or sister. are both your parents the same as the alien's parents? N/A If not, submit a separate statement giving full details as to parentage. dates of marriage of parents. and the number of previous marriages of each parent. 28. If separate petitions are also being submitted for other relatives. give names of each and relationship to petitioner. CELIA MARIA DE JESUS RUIZ RAMIREZ, SISTERS. 29. Have you ever filed a petition for this alien before? YES. If so. give place and date of filing and result. I-550 PETITION FILED INS LOS ANGELES, CAL. 7/8/75 -130 UNDER NEW LEGISLATTON-PRIOR 30. If beneficiary is in the United States give the following information concerning beneficiary: PETITION PENDING CONSUMNATION (a) Last arrived in U.S. On (b) Last arrived in U. S. as & FILING OF I-130 FORN Date beneficiary's stay expired or will (Month) (Day) (Year) (Visitor, student, exchange alien, crewman, stowaway, etc.) expire as shown on his Form 1-94 or I-95 FOIA (b)(6) WITHOUT PASSPORT OF VISA NOT APPLICABLE (d) Name and address of present employer (e) Date alien began this employment FOIA b)(6) FOIA (b)(6)" + }, + { + "id": "A28703181_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 WITHDRAWN ITEM RG: 566: Records of the US Citizenship and Immigration Service [USCIS] Series: Alien Case Files Folder: A28703181 Subject: 3rd Party Vital Record (2 pages) Reason for Withdrawal: Freedom of Information Act (FOIA) Exemption (b)(6) Date of Review: 5/9/2023" + }, + { + "id": "A28703181_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "ESTADO LIBRE Y SOBERANO DE ZACATECAS, RECUBIACION DE RENTAS, PAPEL ESPECIAL PARA CERTIFICADOS DE LAS ACTAS" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 1957] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 GENERAL UNITED ULT ESTADO LIBRE TAFATEFAS, ZAC. RECAUSACION DE RENTAS UNIDOS DE EXACATION SECURITY DEPARTMENT PAPEL ESPECIAL PARA CERTIFICADOS DE LAS ACTAS DEL REGISTRO CIVIL Ano demil novecientos En nombre de. la Republica de Mexicoy comos Iuez del Estado civil deeste. lugar hago saber a los que la presente vieren, y certifico ser cierto, queenellibros número del registro civil que es amicargoaia foja se.encuentra asentada una Actudeltenor siguienta del- CIUDADAN 0 Jesús Medrano Jefe Departamento de Archivo General del Estado, CERTIFICA Que en el libro de copias de actas de Nacimientos, per- teneciente al Registro Civil del Municipio de Tlattenango de-us Zac., y que corresponde al primer semestre del año de 1957 mil- novecientos cincuenta y siete, a fojas ocho aparece una partida del tenor siguiente: AL MARGEN -Número 18 dieciocho Ernesto Ruiz. -9/0.-AL CEN - TRO .-En Tlaltenango de Sánchez Roman, Zac., a las 13.15 trece - ESTADO LIBRE horas quince minutos del día 9 hueve de enero de 1957 mil nove-- cientos cincuenta y siete, ante m1 Antonio Salinas, Presidente-- Municipal encargado del Registro Civil de esta ciudad, compare-- ció el señor Manuel Ruiz, mexicano, casado agricultor de 42 cua- renta y dos anos, vecino de esta ciudad presentó para su regis-- tro un niño vivo que nació el día 27 veintisiete de diciembre -- próximo pasado a las 7 siete horas en la casa número 20 veinte- ARCHIVO GENERA de la calle Obregon y a quien lepone el nombre de Ephesto, hijo- DEL ESTADO legítimo-del exponente y de su esposa Dolores R mirez de 41 cua- renta y un años; abuelos paternos Cesareo Ruiz y Epigmenia Ortiz finados: maternos Pablo Ramirez y María Castro, esta finada. Fue ron testigos los señores Felipe Orozco y Francisco Castro, mexi- canos, solteros mayores de edad y vecinos de esta ciudad. Leida- la presente firmóel que supo. -Antonio Salinas Felipe Orozco. --- Francisco Castro. Rubricas. Es copia fielmente sacada del libro antes citado que se ex- pide a solicitud del interesado, para los us os legales que al -- mismo convengan, en la ciudad de Zacatecas, Zac., a veintinueve- de julio de mil novecien setenta y dos. Jesús Medran Avalos." + }, + { + "id": "A28703181_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "ESTADO LIBRE Y SOBERANO DE ZACATECAS, Nº 90 noventa" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 1933] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 GENERAL ESTADO LIBRE LACATIFIES VECRUBACIUN DE REMYER FAMILY UNIDOS DE LACKYTICLE SECURITY DEPARTMENT PAPEL ESPECIAL PARA CERTIFICADOS DE LAS ACTAS DEL Anodemilnovecientes En nombredela Republica de Mexico y comos Juoz del Estado civil de este lugar hago saber alos que la presente vieren, y certifico ser cierto, queenellibro número registro civil STAD@ micargo ala foja. asentada una Acta del tenor siguiente: E L CIUDADANO Jesús Medrano Avalos, Jefe del Depar tamento de Archivo General del Estado: C E R T I F I C A: ARCHIVO CANERAD Que enel libro de copias de actas de Matrimonios, pertene DEL ESTADE ciente al Registro Civil del Municipio de Sanchez Roman, Zac., y- que corresponde al año de mil novecientos treinta y tres, a fojas doce vuelta, aparece una partida del tenor siguiente: AL MARGEN Numero 90 noventa.- Matrimonio de Manuel Ruiz y- María Dolores Ramirez.- AL CENTRO.- En Sanchez Roman a las (11) once horas del dia 30 treinta de septiembre de 1933 mil novecien- tos treinta y tres, ante mi J. Refugio Dávila Presidente \"unici-- pal encargado del Registro Civil de esta ciudad se presentó ante- este Juzgado el seoor Manuel Ruiz y la seorita María Dolores Ra- mírez con objeto de celebrar su contrato de matrimonio asi como los testigos que al fin se expresarán, en seguida interrogué a los testigos, si el seror Manuel Ruiz y la Srta. María Dolores Ra mirez son las personas que estan presentes, y contestando por la- afirmativa bajo protesta de ley me diriji a los contrayentes expre sandolos por sus nombres, si es su voluntad unirse en matrimonio- el uno con el otro, y habiendo contestado ambos en sentido afirma tivo dije en alta VOZ: Declaro en nombre de la Ley y de la Socie- dad que el señor Manuel Ruiz y la señorita María Dolores Ramirez- quedan unidos en legítimo matrimonio, con todos los derechos y prerrogativas que la ley otorga y con las obligaciones que la mis ma ley impone. desde luego se procedió a levantar la presente acta haciendose constar que no se ha presentado impedimento alguno pa- ra la celebración del matrimonio de cue se trata.- Que los contra yentes por ser mayores de edad fueron libres en su elección.- Las generales de los contrayentes y testigos son como sigue: el señor Manuel Ruiz es soltero, agricultor, de 21 años de edad, erigina-- rio y vecino del rancho de Tamoloaxco, de este municipio. hijo -- legítimo de Cesareo Ruiz y Epigmenia Ortiz finados. y la señorita María Dolores Ramirez, es célibe, de 22 años de edad, originaria- y vecina del citado rancho, hija natural de padre no conocido, y- de la seoora María Ramirez que vive. y con el fin indicado presen tan un certificado del Doctor Luis de Alva Luna, medico legalmen-" + }, + { + "id": "A28703181_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A28703181_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Screened by NARA, 5/9/2023, ARQUIVO GENERAL DEL ESTADO" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A28703181", + "full_text": "Screened by NARA, 5/9/2023 te autorizado manifestande: que los contrayentes no padecen ningu na de las enfermedades querse-ala el artículo 103 cientro tres del Codigo Sanitario de los Estados Unidos Mexicanos ni defecto fisi- CO que les impida el matrimonio.- Presentan como testigos por par te del contrayente a los ciudadanos Geronimo López y J.Jesus Maga llanes, casados, agricultores y vecinos del rancho de la Palma y- Guadalupe respectivamente, y por parte de la seorita a los seño- res Juan Villareal y Leonardo Gonzalez, casado el primero, y el - segundo soltero, y vecinos de este lugar. - Leída que les fue la presente fueron conformes y firmó el que supo.- A. Castrellón. María Dolores Ramirez. - Leonardo Gonzalez. - Juan Villareal.- - Geró nimo López. - Rúbricas. Es copia sacada fielmente del libro antes citado, se expide- a solicitud el interesado, para los usos legales que al mismo con vengan, en la ciudad de Zacatecas, Zac. a cinco de julio de mil- novecientos setenta y cuatro. Jesus Medrano Avalos. ESTADO DEL UNIDOS LIDER SECTION SECURITY ARCHIVO GENERAL DEL ESTADO" + }, + { + "id": "A10712436_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Processing Sheet" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Immigration and Naturalization Service DEPARTMENT D 0 PROCESSING SHEET File No: A 10712436 DESCRIPTION SECTION OF LAW Sex: Male Female 316(a) 325 Marital Status: Single Married Divorce 1 WidonsAnt 319(a) 328 Height: Feet S Inches 0 319(b) 329 Nationality: Elsaluador 322 405 FINAL ACTION INITIAL INTERVIEW: MAY 21 1996 English 65/20 (Date) Denial: Date & Initials 0 Speaks Reads Writes ii° Understands ] Withdrawal: Date & Initials Government: OK LNS E.T.S. CASAS NAS Oath Taken Certificate Issued: REEXAM: ACTION or DOCUMENTS REQUIRED (Date and Initials) See Attached N-14b Reexamination SEC DOCUMENTS PRESENTED Visa File Post Audit A.R.C. : 10712436 Other: D.O.B. : 2-2-83 P.O.E. : BRO C.O.A.: 0-1 COMMENTS D.O.E. : 01-9-57 CID/CDL : N0059160 Recommendation 6P JR. AF APPROVAL (STAMP) FINAL HEARING INS DISTRICT DIRECTOR 8/9/96 MAY 9.1 1996 DATE Joseph 8 Recommended by: LOS 4688 TIME Attorney Waiver Executed. If Attorney Present, List Name: 3 Months Residence OK Fingerprints NEG. 40 Nazi Negative Day-Time Phone: ( 310 ) - 925 - 4265 Ext OATH OF ALLEGIANCE Name Change: now Modified Oath; Delete Part(s): Promise to Bear Arms, Noncombat Duty OATH WITH U.S. DISTRICT COURT: 246 Jane I HEREBY DECLARE, on oath. That I absolutely and entirely renounce and abjure all allegiance and fidelity to any foreign prince, potentate, state, or sovereignty of whom or which I have heretofore been a subject or citizen; That I will support and defend the Constitution and the laws of the United States of America against all enemies, foreign and domestic; that I will bear true faith and allegiance to the same; that I will bear arms on behalf of the United States when required by the law, that I will perform noncombatant service in the Armed Forces of the United States when required by the law, that I will perform work of national importance under civilian direction when required by the law; and that I take this obligation freely, without any mental reservation or purpose of evasion; so HELP ME God. In acknowledgment whereof I have hereunto affixed my signature. Form I-468 Signature: Rosa fominta Renderos" + }, + { + "id": "A10712436_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Naturalization, N-4 (Rev. 07/17/91)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1995, 1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB 1 1115-0009 Immigration and Naturalization Servic Application for Naturalization START HERE - Please Type or Print FOR INS USE ONLY Returned Receipt Part 1. Information about you. 2 Family Name DOMINGUEZ 3 Renderos Given Name Rosa Initial Middle Aminta U.S. Mailing Address - Care of Rosa Aminta Renderos 0063 001 R 4 06/16/95 16:01 Resubmitted N400 95.00 Street Number and Name 9843 Ramona St. Apt. # 405 City County Bellflower State Los Angeles California ZIP Code 90706 Reloc Sent Date of Birth (month/day/year) 2-28-13/ Country Birth El Satrador of Social A Security # 566-54-1023 # 10712436 Reloc Rec'd Part 2. Basis for Eligibility (check one). a. I have been a permanent resident for at least five (5) years b. I have been a permanent resident for at least three (3) years and have been married to a United States Citizen for those three years. Applicant Interviewed C. I am a permanent resident child of United States citizen parent(s) d. I am applying on the basis of qualifying military service in the Armed Forces of the U.S. and have attached completed Forms N-426 and G-325B At interview e. Other. (Please specify section of law) request naturalization ceremony at court Part 3. Additional information about you. Remarks Date you became a permanent Port admitted with an immmigrant visa or INS Office resident (month/day/year) where granted adjustment of status. 3/c.a) 1-9-570 BRO, TEXAS 0-1 Citizenship E1 Salvador Name on alien registration card (if different than in Part 1) DOMINGUEZ -Renderos, Rosa Aminta Other names used since you became a permanent resident (including maiden name) None Sex Male Height Marital Status: Single Divorced Female 5-00 Married Widowed NOV 07 1995 Can you speak, read and write English ? No Yes. Action APPROVED Absences from the U.S.: INS DISTRICT DIRECTOR Have you been absent from the U.S. since becoming a permanent resident? No Yes. If you answered \"Yes\" , complete the following, Begin with your most recent absence. If you MAY 21 1996 need more room to explain the reason for an absence or to list more trips, continue on separate paper. Did absence last Repommended by Jun Prem Date left U.S. Date returned 6 months or more? Destination Reason for trip LOS 4688 9/78 9/79 Yes No Salvador Vacation 10/77 6/78 Yes No Salvador vacation To Be Completed by Attorney or Representative, if any Yes No Fill in box if G-28 is attached to represent Yes No 2 axa 54 the applicant VOLAG# Yes No Tast Yes No ATTY State License # Form N-400 (Rev. 07/17/91)N Continued on back." + }, + { + "id": "A10712436_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Information about your residences and employment., N-400 ( (Rev 07/19)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + } + }, + "anumber": "A10712436", + "full_text": "Part 4. Information about your residences and employment. A. List your addresses during the last five (5) years or since you became a permanent resident, whichever IS less. Begin with your current address. If you need more space, continue on separate paper: Street Number and Name, City, State, Country, and Zip Code The Dates (month/day/year) From 9843 90706 Ramona St., Bollflower, you CA.U.So To 1/89 Present B. List your employers during the last five (5) years. List your present or most recent employer first. If none, write \"None\". If you need more space, continue on separate paper. Employer's Name Employer's Address Dates Employed (month/day/year) Occupation/position Street Name and Number - City, State and ZIP Code From To Retired ©Retire Reseives 55 1/3/18 Present Retired worwed forth last time in 78 $ 650 Grooth MOA monthly Part 5. Information about your marital history. (io died 59 Dor 30 A. Total number of times you have been married 1 . If you are now married, complete the following regarding your husband or wife. Family name N/A Sea Given name Middle initial Jose Meria Address Date of birth Country of birth (month/day/year) Salvador for Citizenship Salvador Social A# (if applicable) Immigration status Security# 7 (If not a U.S. citizen) Naturalization (If applicable) (month/day/year) Place (City State) If you have ever previously been married or if your current spouse has been previously married, please provide the following on separate paper: Name of prior spouse, date of marriage, date marriage ended, how marriage ended and immigration status of prior spouse. Part 6. Information about your children. B. Total Number of Children / . Complete the following information for each of your children. If the child lives with you, state \"with me\" in the address column; otherwise give city/state/country of child's current residence. If deceased, write \"deceased\" III the address column. If you need more space, continue on separate paper. Full name of child Date of birth Country of birth EI Salvador the Citizenship A Number Address Sonia Quinones 1-8-34 U.S. 16641 Moorbrook Ave. Cerritos, CA 90703 8 Form N-400 (Rev 07/17/91)N Cr ed on next page" + }, + { + "id": "A10712436_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1978, 1933, 1945] + } + }, + "anumber": "A10712436", + "full_text": "Continued on back Part 7. Additional eligibility factors. Please answer each of the following questions. If your answer IS \"Yes\", explain on a separate paper. 1. Are you now, or have you ever been a member of, or in any way connected or associated with the Communist Party, or ever knowingly aided or supported the Communist Party directly, or indirectly through another organization, group or person, or ever advocated, taught, believed in, or knowingly supported or furthered the interests of communism? Yes No 2. During the period March 23, 1933 to May 8, 1945, did you serve in, or were you in any way affiliated with, either directly or indirectly, any military unit, paramilitary unit, police unit, self-defense unit, vigilante unit, citizen unit of the Nazi party or SS, government agency or office, extermination camp, concentration camp, prisoner of war camp, prison, labor camp, detention camp or transit camp, under the control or affiliated with: a. The Nazi Government of Germany? Yes No b. Any government in any area occupied by, allied with, or established with the assistance or cooperation of, the Nazi Government of Germany? Yes No 3. Have you at any time, anywhere, ever ordered, incited, assisted, or otherwise participated in the persecution of any person. because of race, religion, national origin, or political opinion? Yes No 4. Have you ever left the United States to avoid being drafted into the U.S. Armed Forces? Yes No 5. Have you ever failed to comply with Selective Service laws? Yes No If you have registered under the Selective Service laws, complete the following information: Selective Service Number: Date Registered: If you registered before 1978, also provide the following: Local Board Number: Classification: 6. Did you ever apply for exemption from military service because of alienage, conscientious objections or other reasons? Yes No 7. Have you ever deserted from the military, air or naval forces of the United States? Yes No 8. Since becoming a permanent resident have you ever failed to file a federal income tax return ? Yes No 9. Since becoming a permanent resident have you filed a federal income tax return as a nonresident or failed to file a federal return because you considered yourself to be a nonresident? Yes NO 10 Are deportation proceedings pending against you, or have you ever been deported, or ordered deported, or have you ever applied for suspension of deportation? Yes No 11. Have you ever claimed in writing, or in any way, to be a United States citizen? Yes No 12. Have you ever: ARRESTS a. been a habitual drunkard? EXPUNGEMENTS Yes No b. advocated or practiced polygamy? 9 TRAFFIC VIOLATIONS Yes No C. been a prostitute or procured anyone for prostitution? Yes No d. knowingly and for gain helped any alien to enter the U.S. illegally? CONVICTIONS Yes No e. been an illicit trafficker in narcotic drugs or marijuana? Yes No f. received income from illegal gambling? Yes No g. given false testimony for the purpose of obtaining any immigration benefit? Yes No 13. Have you ever been declared legally incompetent or have you ever been confined as a patient in a mental institution? Yes No 14. Were you born with, or have you acquired in same way, any title or order of nobility in any foreign State? Yes No 15. Have you ever: a. knowingly committed any crime for which you have not been arrested? Yes No b. been arrested, cited, charged, indicted, convicted, fined or imprisoned for breaking or violating any law or ordinance excluding traffic regulations? Yes No ( If you answer yes to 15, in your explanation give the following information for each incident or occurrence the city, state, and country, where the offense took place, the date and nature of the offense, and the outcome or disposition of the case). Part 8. Allegiance to the U.S. If your answer to any of the following questions is \"NO\", attach a full explanation: 1. Do you believe in the Constitution and form of government of the U.S.? Yes No 2. Are you willing to take the full Oath of Allegiance to the U.S.? (see instructions) Yes No 3. If the law requires it, are you willing to bear arms on behalf of the U.S.? Yes No 4. If the law requires it, are you willing to perform noncombatant services in the Armed Forces of the U.S.? Yes No 5. If the law requires it, are you willing to perform work of national importance under civilian direction? Yes No Form N-400 (Rev 07/17/91)N Continued on back" + }, + { + "id": "A10712436_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Part 9. Memberships and organizations., Form N-4 ( (Rev. 07/17'91)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "Part 9. Memberships and organizations. A. List your present and past membership in or affiliation with every organization, association, fund, foundation, party, club, society, or similar group in the United States or in any other place. Include any military service III this part. If none, write \"none\". Include the name of organization, location, dates of membership and the nature of the organization. If additional space IS needed, use separate paper. None 10 Part 10. Complete only if you checked block \" C \" in Part 2. How many of your parents are U.S. citizens? One Both (Give the following about one U.S. citizen parent:) Family Given Middle Name Name Name Address 11 Basis for citizenship: Relationship to you (check one): natural parent adoptive parent Birth parent of child legitimated after birth Naturalization Cert. No. 1042 If adopted or legitimated after birth, give date of adoption or, legitimation: (month.day.year) IBVELIC ALORY LIONE Does this parent have legal custody of you? Yes No (Attach a copy of relating evidence to establish that you are the child of this U.S. citizen and evidence of this parent's citizenship.) Part 11. Signature. (Read the information on penalties in the instructions before completing this section). I certify or, if outside the United States, I swear or affirm, under penalty of perjury under the laws of the United States of America that this application, and the evidence submitted with it, IS all true and correct. I authorize the release of any information from my records which the Immigration and Naturalization Service needs to determine eligibility for the benefit I am seeking. Signature Date Renderos 3/18/95 Please Note: If you do not completely fill out this form, or fail to submit required documents listed in the instructions, you may not be found eligible for naturalization and this application may be denied. Part 12. Signature of person preparing form if other than above. (Sign below) I declare that I prepared this application at the request of the above person and it is based on all information of which I have knowledge. Signature Print Your Name Date DOLORES RIVERA Firm Name 3/18/95 and Address DO NOT COMPLETE THE FOLLOWING UNTIL INSTRUCTED TO DO so AT THE INTERVIEW I swear that I know the contents of this application, and supplemental pages 1 through Z. that the corrections , numbered 1 Subscribed and sworn to before me by the applicant. through 11 were made at my request, and that this amended application, is true to the best of my knowledge and belief. (Examiner's Jun Ru Signature ) 5-21-96 Date Rosa Aminta Renderos (Complete and true signature of applicant) Form N .100 (Rev 07/17/91)N *U.S. Government Printing Office: 1993-301-164/92716" + }, + { + "id": "A10712436_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "California Driver License, N0059160" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Canada", "Mexico"] + } + }, + "anumber": "A10712436", + "full_text": "UMM CALIFORNIA UMM DRIVER LICENSE N0059160 CLASS: C EXPIRES 02-28-97 ROSA AMINTA RENDEROS 9843 RAMONA ST APT 405 BELLFLOWER CA 90706 SEX: F HAIR: BLK EYES: BRN HT: 5-00 HT: 118 DOB 02-28-13 RSTR: CORR LENS Roa fo. Renderos 04/06/93 606 18/ FD/97 1418 ADDRESS REPORTS You are required by law to notify the Attorney General of of of address January change each of year during your notification the current month days and to furnish address alty from Forms is the provided date be of obtained change. within from to 10 A do pen- any 80. such for failure may and cations post Naturalization office. letters Address Service, reports, Immigration should appli- or to the include the \"A\" number shown on the other side: BORDER CROSSING CARD This card will be honored for bor- der crossing purposes on condition holder is visit ceeding the that United the to 6 rightful Canada months, States and Mexico. is returning not temporary not subject ex- to from a or . to exclusion under any provision of 3 the immigration laws." + }, + { + "id": "A10712436_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "A10 772 1,36 This is to certify that (REG ISTRATION NUMBER) DOMINGUEZ-Renderos, - Rosa Aminta was admitted to the United States as an immigrant on 01 09 57 BRO MONTH DAY YEAR DISTRICT PORT Date of 0-1 02 28 17 F Birth MONTH DAY YEAR SEX TYPE and has been duly registered according to law. Commissioner of Immigration and Naturalization UNITED STATES DEPARTMENT OF JUSTICE 1118 years of age or older, you are required by law to have this card with you atail times." + }, + { + "id": "A10712436_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "ATTACHMENT TO APPLICATION FOR NATURALIZATION APPLICANT: A#: INFORMATION ABOUT PREVIOUS MARRIAGES: NAME OF PRIOR SPOUSE Jose Maria Cea DATE OF MARRIAGE: 1933 DATE MARRIAGE ENDED: 1944 MANNER MARRIAGE ENDED: Divorce IMMIGRATION STATUS OF PRIOR SPOUSE: Was a permanent resident in El Salvador; never migrated to the U.S." + }, + { + "id": "A10712436_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE CITIZENSHIP USA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE CITIZENSHIP USA A # MAY 2 1996 A 10712436 PASSED $312 TEST GOVERNMENT HISTORY ROSA DOMINGUEZ-RENDEROS * * WRITTEN I READING 9843 RAMONA ST. #405 BELLFLOWER CA 90706 Mark OFFICER You are hereby notified to appear for an interview on your (your child's) application for naturalization at the date, time and place shown below. DATE: 5/21/1996 TIME: 1:15 PM PLACE: 9650 FLAIR DRIVE EL MONTE, CA 91731 PARK PLACE SECOND FLOOR Please see following page of additional requirements for your interview. PLEASE KEEP THIS APPOINTMENT, EVEN IF YOU DO NOT HAVE ALL THE ITEMS NOTED ABOVE. PROPER ATTIRE IS REQUESTED. PLEASE DO NOT ARRIVE EARLIER THAN 30 MINUTES BEFORE YOUR APPOINTMENT. - CC: LOSUSA. 3 45/20 213 526 7647" + }, + { + "id": "A10712436_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "Diah 09237813" + }, + { + "id": "A10712436_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436" + }, + { + "id": "A10712436_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "® provided . Roso AminTA Renderos , - A=40 -12436 ." + }, + { + "id": "A10712436_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Department of Justice INTERVIEW Application to File Petition for Naturalization" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1988, 2010] + } + }, + "anumber": "A10712436", + "full_text": "68A 270 436 U.S. Depar mentorjustice CITIZENSHIP INTERVIEW Application to File OMB #1115-0009 Immigration and Waltralization Service Petition for Naturalization DEC 20 1988 Please read the instructions before filling out this form. 246 This block for government use only. Section of Law NO SHOW 1. Your name (Exactly as it appears on your Alien Registration Receipt Card) 14. Place you were admitted for permanent residency (City and State) Rosa Aminta DominGUEZ Renderos Los AnGELES, cah. 2. Your Alien Registration number 3. Your Social Security Number 15. Date your continuous residency began in the U.S. (Month/Day/Year) A-10 712 436 566-54-1023 1-9-57 4. Your name (Full true and correct name, if different from above) 16. How long have you continuously resided in the State where you now live? (Number of Months) 108 5. Any other names you have used (Including maiden) 17. Do you intend to reside permanently in the United States? Rosa Aminta Renderos (If No, explain fully) Yes No 6. Your date of birth (Month/Day/Year) 7. Your Sex 2-28-13 Male Female 8. Your place of birth (City or Town) Nahuizalco, EL SaLVaDOR C.A. (County, Province or State) (Country) 9. Was your father or mother ever a United States citizen? 18. Have you served in the United States Armed Forces? (If Yes, explain fully) Yes No (If Yes, complete all of #18.) Yes No Branch of Service (Indicate if Reserve or National Guard) Inducted Enlisted Location where you entered (City and State) Service began (Month/Day/Year) Service ended (Month/Day/Year) 10. Can you read and write English? Service number Yes No 11. Can you speak English? Rank at discharge Yes No 12. Can you sign your name in English? Type of discharge (Honorable, Dishonorable, etc.) Yes No 13. Date you were admitted for permanent residency (Month/Day/Year) Reason for discharge (Alienage, conscientious objector, other) 19. At what addresses in the United States have you lived during the last 5 years? List present address first. Street Address City county and State From (Month/Day/Year) To (Month/Day/Year) 11536 Imperial#4 NorwaLK, CAL 12-12-79 Present 20. What employment have you held during the last 5 years? List present or most recent employment first. (If none, write \"None\".) 2010 Name and Address of Employer Occupation or Type of Business From (Month/Day/Year) To (Month/Day/Year) none Form N-400 (12/05/86)" + }, + { + "id": "A10712436_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Marital Status and Immigration Information, N-400 ( (12/05/86) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1977] + } + }, + "anumber": "A10712436", + "full_text": "21. What is your present marital status? Married Widowed Divorced Single 22. Complete the following regarding your husband or wife if you are currently married. First (given) name Date married (Month/Day/Year) Date of birth (Month/Day/Year) Country of birth none Place he or she entered the U.S. Date entered the U.S. (Month/Day/Year) His or her Alien Registration Number Present immigration status Date naturalized (Month/Day/Year) Place naturalized Present address (street and number) City and State or country 23. Complete the following if you were previously married. Total number of times you have been married. Name of prior husband or wife Date of marriage (Month/Day/Year) Date marriage ended (Month/Day/Year) How marriage ended INS status Alien none Citizen Alien Citizen Alien Citizen 24. Complete the following if your present husband or wife was previously married. Total number of times your husband or wife has been married. Name of prior husband or wife Date of marriage (Month/Day/Year) Date marriage ended (Month/Day/Year) How marriage ended INS status Alien Citizen Alien Citizen Alien Citizen 25. Complete all columns for each of your children. (If child lives with you, state \"with me\" in Location column; otherwise, give the City and State of that child's residence.) Indicate your total number of children. Given name Date of birth Country of birth Date of entry Port of entry Location Alien Registration No. Sex u.s. Male SONIA 01/08/34 EL SALYADOR 02/24/58 Los AngElES AIRPORT CiTiZEN Female Male Female Male Female Male Female Male Female Male Female Male Female 26. Complete the following with regard to each absence you have had from the United States for a period of six months or less since you entered for permanent residence. (If none, write \"None\".) Ship, airline, railroad or bus company, or other means used to return to the United States. Returned at (Place or port of entry) Date departed Date returned AiRPLANE Los ANGELES 1977 12-12-1979 2-25-86 4-29-86 27. Complete the following with regard to each absence you have had from the United States for a period of six months or more since you entered for permanent residence. (If none, write \"None\") Ship, airline, railroad or bus company, or other means used to return to the United States. Returned at (Place or port of entry) Date departed Date returned MIEBAIEM Form N-400 (12/05/86) N Page 2" + }, + { + "id": "A10712436_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization and Citizenship Questionnaire, Form N-400 ( (12/05/86) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1933, 1945] + } + }, + "anumber": "A10712436", + "full_text": "28. The law provides that you may not be regarded as qualified for naturalization, a) knowingly committed any crime for which you have not been arrested? if you knowingly committed certain offenses or crimes, even though you may Yes No not have been arrested. Have you ever, in or outside the United States: b) been arrested, cited, charged, indicted, convicted, fined or imprisoned for (If you answer \"Yes\" to a) or b), give the following information as to each breaking or violating any law or ordinance, including traffic regulations? incident.) Yes No Where (City, State and Country) Date of Offense Nature of Offense Outcome of case, if any 29. List your present and past membership in or affiliation with every organization, association, fund, foundation, party, club, society or similar group in the United States or in any other place, and your foreign military service (If none, write \"None\".) Name of organization Location of organization Membership from Membership to 30. Are you now, or have you ever, in the United States or in any other place, been 34. During the period of March 23, 1933 to May 8, 1945, did you ever order, incite, a member of, or in any other way connected or associated with the assist, or otherwise participate in the persecution of any person because of Communist Party? (If \"Yes\", attach full explanation) race, religion, national origin, or political opinion? Yes No Yes No 31. Have you ever knowingly aided or supported the Communist Party directly, or 35. Were you born with, or have you acquired in some way, any title or order of indirectly through another organization, group or person? (If \"Yes\", attach full nobility in any foreign state? explanation) Yes No Yes No 36. Have you ever been declared legally incompetent or have you ever been 32. Do you now or have you ever advocated, taught, believed in or knowingly confined as a patient in a mental institution? supported or furthered the interests of Communism? (If \"Yes\", attach full Yes No explanation) Yes No 37. Are deportation proceedings pending against you, or have you ever been deported or ordered deported, or have you ever applied for suspension of 33. During the period March 23, 1933 to May 8, 1945, did you serve in, or were you deportation? in any way affiliated with, either directly or indirectly, any military unit, Yes No paramilitary unit, police unit, self-defense unit, vigilante unit, citizen unit, unit of the Nazi Party or SS, government agency or office, extermination camp, 38. When was your last federal income tax return filed? concentration camp, prisoner of war camp, prison, labor camp, detention (year) camp or transit camp, under the control or affiliated with: 39. Since becoming a permanent resident of the United States, have you filed an income tax return as a nonresident? (If \"Yes\", explain fully). a) the Nazi Government of Germany? Yes No Yes No 40. Since becoming a permanent resident of the United States, have you failed to b) any Government in any area occupied by, allied with, or established with file an income tax return because you regarded yourself as a nonresident? (If the assistance or cooperation of, the Nazi Government of Germany? \"Yes\", explain fully). Yes No Yes No Form N-400 (12/05/86) N Page 3" + }, + { + "id": "A10712436_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Application" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1987] + } + }, + "anumber": "A10712436", + "full_text": "41. Have you ever claimed in writing, or in any other way, to be a United States 49. Did you ever apply for exemption from military service because of alienage, citizen? conscientious objections, or other reasons? (If \"Yes\", attach a full explana- Yes No tion) Yes No 42. Have you ever deserted from the military, air or naval forces of the United States? 50. Did you ever register under United States Selective Service laws or draft Yes No laws? (If \"Yes\", complete the following) Yes No 43. Have you ever left the United States to avoid being drafted into the Armed Date registered Forces of the United States? Yes No Selective Service Number 44. Do you believe in the Constitution and form of government of the United States? Local Board Number Yes No Present classification 45. Are you willing to take the full oath of allegiance to the United States? (See instruction #5) Yes No 51. The law provides that you may not be regarded as qualified for naturalization, 46. If the law requires it, are you willing to bear arms on behalf of the United if, at any time during the period for which you are required to prove good moral States? (If \"No\", attach a full explanation) character, you have been a habitual drunkard; advocated or practiced Yes No polygamy; have been a prostitute or procured anyone for prostitution; have knowingly and for gain helped any alien to enter the United States illegally; 47. If the law requires it, are you willing to perform noncombatant services in the have been an illicit trafficker in narcotic drugs or marijuana; have received Armed Forces of the United States? (If \"No\", attach a full explanation) your income mostly from illegal gambling, or have given false testimony for Yes No the purpose of obtaining any benefits under this Act. Have you ever, 48. If the law requires it, are you willing to perform work of national importance anywhere, been such a person or committed any of these acts? (If you under civilian direction? (If \"No\", attach a full explanation) answer yes to any of these, attach full explanation.) Yes No Yes No This block is to be completed by the person preparing form, if other than You may, by law, change your name at the time you are naturalized. If you wish the applicant. to do so, please print or type that name below, or the name you want your certificate of naturalization issued under. / declare that this document was prepared by me at the request of the applicant and is based on all information of which / have any knowledge. Rosa Aminta Renderos Signature Signature of Applicant X Sania Immoney X 11536 E. Imperial Henry # 4 Address 16441 So Moorbrooka Mailing Address Norwalk, Cal. 90650 Cerritor Ca. 90701 (213) 929-2175 4-18-88 Telephone Number (213) 926- 5698 Date 4/18/88 Telephone Number Date Do not fill in blanks below these lines: This application must be sworn to before an officer of the Immigration and Naturalization Service. AFFIDAVIT / do swear that / know the contents of this application, comprising pages 1 to 4, Subscribed and sworn to before me by applicant at the preliminary investigation inclusive, and the supplemental forms thereto, (Form Numbers ) subscribed to by me; that the same are true to the best of my knowledge and At belief; that corrections numbered: to This day of 19 were made by me or at my request, and that this application was signed by me / certify that before verification of the above applicant stated in my presence he or with my full, true and correct name, so help me God. she had (heard) read the foregoing application, corrections therein and supplemental form(s) and understood the contents thereof. (Complete and true signature of applicant) (Naturalization Examiner) (Demonstrate applicant's ability to write English) Non Filed (Date, reasons) Form N-400 (12/05/86) N Page 4 GPO : 1987 o - 168-434" + }, + { + "id": "A10712436_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Notice of Naturalization Oath Ceremony, N-445A (" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB #1115-0052 Immigration and Naturalization Service Notice of Naturalization Oath Ceremony Naturalization and Citizenship Branch File or A # 300 NORTH LOS ANGELES STREET A10 712 436 LES ANGELES, CA 90012 Date 7/20/1996 You are hereby notified to appear for a Naturalization Oath Ceremony at the DATE, TIME AND LACE SHOWN BELOW. Date 8/09/1996 RESA DOMINGUE RENDEROS Time 3:00 AR 984.3 RAMONA $ 17. #405 LIFLOWER CA 90706 Place LCS ARGELES CONVENT tun CENTER 1201 source LEVERON STREET You must bring the following with you: This letter, with ALL of the QUESTIONS ON THE REVERSE side answered in ink or on a typewriter. Alien Registration Card. Reentry Permit or Refugee Travel Document. Any immigration documents you may have. If the naturalization application is ON BEHALF OF YOUR CHILD (children), BRING your CHILD (children). If you cannot come to this ceremony, return this notice immediately and state why you cannot appear. In such case, please use the return address in the extreme upper left hand corner of this letter. You will be sent another notice of ceremony at a later date. You must appear at an oath ceremony to complete the naturalization process. Form N-445A (Rev. 5/23/94)Y IMPORTANT - PLEASE SEE REVERSE" + }, + { + "id": "A10712436_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Oath Ceremony,, N-445" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "Authority for collection of the information requested You should answer these questions the day you are to appear for the naturalization oath ceremony. These questions refer to actions on Form N-445 is contained in Sections 101(f), 316, 332, 335 since the date you were first interviewed on your Application for Naturalization. They do not refer to anything that happened before and 336 of the Immigration and Nationality Act (8 U.S.C. that interview. 1101 (f), 1427, 1443, 1446 and 1447). Submission of the After you have answered every question, sign your name and fill in the date and place of signing, and provide your current address. information is voluntary. The principal purposes for requesting the information are to enable examiners of the You must bring this completed questionnaire with you to the oath ceremony, as well as the documents indicated on the front, and give Immigration and Naturalization Service to determine an them to the Immigration employee at the oath ceremony. You may be questioned further on your answers at that time. applicant's eligibility for naturalization. The information requested may, as a matter of routine use, be disclosed to naturalization courts and to other federal, state, local or AFTER THE DATE you were first interviewed on your Application for Naturalization, Form N-400: ANSWERS foreign law enforcement and regulatory agencies, the Department of Defense, including any component thereof, 1. Have you married, or been widowed, separated, or divorced? (If \"Yes\" please bring documented the Selective Service System, the Department of State, the proof of marriage, death, separation or divorce.) 1. Yes No Department of the Treasury, the Department of 2. Have you traveled outside the United States? 2. Yes No Transportation, Central Intelligence Agency, Interpol and 3. Have you knowingly committed any crime or offense, for which you have not been arrested; or individuals and organizations in the processing of any have you been arrested, cited, charged, indicted, convicted, fined, or imprisoned for breaking or application for naturalization, or during the course of violating any law or ordinance, including traffic violations? 3. Yes No investigation to elicit further information required by the 4. H you joined any organization, including the Communist Party, or become associated or Immigration and Naturalization Service to carry out its functions. Information solicited which indicates a violation CO sted therewith in any way? 4. Yes No or potential violation of law, whether civil, criminal, or 5. Have you claimed exemption from military service 5. Yes No regulatory in nature, may be referred, as a routine use, to the 6. Has there been any change in your willingness to bear arms on behalf of the United States; to appropriate agency, whether federal, state, local or foreign, perform non-combatant service in the armed forces of the United States, to perform work of charged with the responsibility of investigating, enforcing or national importance under civilian direction, if the law require it? 6. Yes No prosecuting such violations. Failure to provide all or any of 7. Have you practiced polygamy,; received income from illegal gambling; been a prostitute, procured the requested information may result in a denial of the anyone for prostitution or been involved in any other unlawful commercialized vice; encouraged or application for naturalization. helped any alien to enter the United States illegally; illicitly trafficked in drugs or marihuana; Public Reporting burden for this collection of information is given any false testimony to obtain immigration benefits; or been a habitual drunkard? 7. Yes No estimated to average 5 minutes per response, including the time for reviewing instructions, searching existing data I certify that each of the answers shown above were made by me or at my direction, and that they are true and correct. sources, gathering and maintaining the data needed, and Signed at BEllFlowER CA. , on 8/9/96 completing and reviewing the collection of information. Send comments regarding this burden estimate or any other (City and State) (Date) aspect of this collection of information, including suggestions for reducing this burden to: U.S. Department of Justice, 9843 RAMONA ST., APT 405 Immigration and Naturalization Service, (Room 5304), Washington, DC 20536; and to the Office of Management (FuH Signature) (Full Address and ZIP Code) and Budget, Paperwork Reduction Project: OMB No. 1115- BELLFLOWER, CA. 90706 0052,; Washington, DC 20503." + }, + { + "id": "A10712436_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Certificate, N-550 REV. 6/91" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1913, 1996] + } + }, + "anumber": "A10712436", + "full_text": "No. 22915481 Personal description of holder INS RegistrationNo. A10 712 436 as of date of naturalization: I certify that the description given is true, and that the photograph affixed Dati of birth: FEBRUARY 28, 1913 hereto is a likeness of me. Sex: FEMALE Height: 5 feel 00 inches Complete and true signature of holder) Marital status: WIDOWED Be it known that, pursuant to an application filed with the Attorney General Country of former nationality: at: LOS ANGELES, CA EL SALVADOR The All orney General having found that: ROSA AMINTA DOMINGUEZ-RENDEROS then residing in the United States, intends to reside in the United States when so required by the Naturalization Laws of the United States, and had in all other respects complied with the applicable provisions of such naturalization laws and was entitled to be admitted to citizenship, such person having taken the oath of allegiance in a ceremony conducted by the U.S. DISTRICT COURT FOR THE CENTRAL DIST. OF CALIFORNIA at: LOS ANGELES, CA on:AUGUST 9, 1996 that such person is admitted as a citizen of the United States of America. 11:3 PUN) MABLE Bills LAW 10 COPY PRINT OR PHONOGRAPH THIS CERTIFICATE Daris meisines witche LAYERS AUTHORITY Commissioner of Immigration and Naturalization FORM N.550 REV. 6.91" + }, + { + "id": "A10712436_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Change of Name, N- 5 ( (1/96)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DISTRICT COURT SEAL OF THE us DISTRICT 8/9/96 CENTRAL DISTRICT OF CALIFORNIA 8- APPLICATION FOR CHANGE OF NAME DIST. OF As part of the naturalization process, you have the opportunity to legally change your name. If you would like to change your name, complete lines 1, 2, 3, and 4. Please print clearly and press firmly (USE INK ONLY). If you do not want to change your name, complete lines 1, 3, and 4 only, (WRITE \"N/A\" ON LINE 2). Name on your Alien Registration Card (Green Card): 1. Domingurz- Renderos Rosa Aminta (Last) (First) (Middle) Name you would like on your Naturalization Certificate (if different): 2. \"SAME\" (First) (Middle) (Last) 3. Alien Registration Card (Green Card) Number: A 10-712-436 4. Date of Birth: 2 / 28 / 1> (Month) (Day) (Year) IMPORTANT INFORMATION Your copy of this application, along with your Certificate of Naturalization, which you will receive upon taking the oath of allegiance, will verify that you elected to change your name. Your Certificate of Naturalization bears your new name as changed per Order of the Court. FOR OFFICIAL USE ONLY Granted Denied Dated: 5/21/196 N- 5 (1/96) *U.S.GPO 1996-779-934 INS (COPY)" + }, + { + "id": "A10712436_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Change of Name, N-5 (1/96" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DISTRICT COURT SEAL of THE us DASTRICT 8/9/96 CENTRAL DISTRICT OF CALIFORNIA f- APPLICATION FOR CHANGE OF NAME DIST. OF AND As part of the naturalization process, you have the opportunity to legally change your name. If you would like to change your name, complete lines 1, 2, 3, and 4. Please print clearly and press firmly (USE INK ONLY). If you do not want to change your name, complete lines 1, 3, and 4 only, (WRITE \"N/A\" ON LINE 2). Name on your Alien Registration Card (Green Card): 1. Domingurz- Renderos Rosa Aminta (Last) (First) (Middle) Name you would like on your Naturalization Certificate (if different): 2. SAMP (First) (Middle) (Last) 3. Alien Registration Card (Green Card) Number: A 10-712-436 4. Date of Birth: / 28 / 1> (Month) (Day) (Year) IMPORTANT INFORMATION Your copy of this application, along with your Certificate of Naturalization, which you will receive upon taking the oath of allegiance, will verify that you elected to change your name. Your Certificate of Naturalization bears your new name as changed per Order of the Court. FOR OFFICIAL USE ONLY Granted Denied Dated: 5/21/166. N-5 (1/96) *U.S.GPO 1996-779-934 APPLICANT (COPY)" + }, + { + "id": "A10712436_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: BIOGRAPHIC INFORMATION\\nForm Number: OMB No. 1115-0066" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Salvadoran" + } + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB No. 1115-0066 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY FILE NUMBER Renderos Rosa Aminta FEMALE 2-28-13 SALVADOREAN 10 712 436 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SAME NAHUIZALED EL SALVADOR C.A. 566-54-1023 (If. any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE. DominGuez RomuLo sonsonate, EL S a LV2DOR C.A. FATHER MOTHER(Maiden name) JuLiA CeLSA Renderos, same HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife. give maiden name) WIFE none FORMER HUSBANDS OR WIVES (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 11536 E. ImpERIaL Norwark CA. 12 79 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 13 C. OTe. 2-2 sonsonate EL SaLVaDor C 11 77 12 79 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE) LIST PRESENT EMPLOYMENT FIRST FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR none PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT DATE NATURALIZATION OTHER (SPECIFY): STATUS AS PERMANENT RESIDENT Rosal Aminta Renderos 4-18-88 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALFNABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) Form G-325 (Rev. 10-1-82) Y (1) Ident." + }, + { + "id": "A10712436_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-56 ( (11-1-56)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1957] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service 458 S. Spring St. Los Angeles 13, Calif. September 19, 1957 PLEASE REFER TO THIS FILE NUMBER AR Rosa Aminta Renderos 3207 Sanborn Ave., Lynwood, Calif. Dear Madama Please call at the office listed below, at the time and place indicated, for an inter- view in connection with an official matter. It is important that you keep this appointment. If you are unable to do so, please notify us promptly, using the reverse side of this letter, and we will arrange another appoint- ment. You should bring this letter with you and present it at the location indicated below. Very truly yours, Richard C. Hoy Autg. DISTRICT DIRECTOR OFFICE AT: 458 So Spring St., Los Angeles, Calif. ROOM NO. 229 DATE AND HOUR 9:00 Aath Thursday, Septia 26, 1957 FLOOR NO. 2nd ASK FOR Mr. Trujillo REASON FOR APPOINTMENT interview regarding your. notice of non-receipt of Alien Registration Receipt Card. BRING WITH YOU: Your Passport and. exp: other Designation documentages n.have in your possession. G-56 (11-1-56) * GPO 972708" + }, + { + "id": "A10712436_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "UNITE ATES DEPARTMENT OF JUSTICE PENALTY FOR PRIVATE USE TO AVOIL IMMIG ON AND NATURALIZATION SERVICE HEAPTON PAYMENT OF POSTAGE, $300 IAN 23 7 1957 OFFICIAL BUSINESS CALIF A10 712 436 Rosa Aminta DOMINGUEZ-Renderos 1111 East Artesia Street Any Compton, California to All materials E POSTMASTER li thoughts DO NOT FORWARD OR TRANSFER 18 FORM 3547 REQUESTED" + }, + { + "id": "A10712436_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "COMPTON AN 24 12 30 p PM 1957 CALIF DEIVED 3 AM 10 38 RATION" + }, + { + "id": "A10712436_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1957] + } + }, + "anumber": "A10712436", + "full_text": "ALIEN REGISTRATION,NO.: 9291 IA HE UNITED STATES AS: (Check one) (Copy letter and number from registration receipt OR PERMANENT RESIDENT or other alien certification document) STUDENT OTHER (Specify) MY NATIONALITY IS EL SALVADOR Set 1 WAS BORN ON 28,7EB. 1917 (Date) MY NAME IS RENDEROS ROSA AMIN TA (Last) (First) (Middle) MY PRESENT ADDRESS IS: 3207 SANBORN AVE LYNWOOD SALIF (Street address or rural route) (City or post office) (State) (IF ABOVE ADDRESS IS TEMPORARY) I EXPECT TO REMAIN THERE YRS. MOS. MY LAST ADDRESS CALLE WAS: CHILE #6 Bo. CANDELARIA SAN SALVADOR, EL SAL. C.A. 5 (Street address or rural route) (City or post office) (State) I WORK FOR OR ATTEND SCHOOL AT St. FRANCIS HOSPITAL (Employer's name or name of school) 3630 IMPERIAL/HIGHUMYL YNWOOD, CALIF. (Street address) (City or post office) (State) I ENTERED THE UNITED STATES AT LOS ANGELES AIRPORT - ON JAN & 10 1957 (Port of entry into United States) (Date of entry) (IF NOT A PERMANENT RESIDENT) I WAS ADMITTED TO THE U. S. A. UNTIL OR RECEIVED AN EXTENSION OF STAY UNTIL (Date) DATE MAR 22,1957 (SIGNATURE) Roca aminta Renderso" + }, + { + "id": "A10712436_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "PLACE STAMP HERE DEPARTMENT OF JUSTICE Immigration and Naturalization Service 119 D Street NE. Washington 25, D. C." + }, + { + "id": "A10712436_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Government Printing Office, G-360A (Rev. 9-11-56)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Mexico"] + } + }, + "anumber": "A10712436", + "full_text": "1. Name (Last in CAPS) First RENDEROS, Rosa Aminta O Middle 2. No. Sndx. Code 3. Name under which admitted, Record created or Aliases A553 R536 4, Country of Birth 5. Date of Birth Month Day Year Mexico 6. Place of Entry NO RECORD 02 28 17 INDEX7. Date of Entry Alien Month Day Year LOS 01 10 57 8. Appl. Form No. or reason 9. Date Appl. Received 10. Date of Request for request es. AR-11 Visa m 04/10/57 11. Receiving FCO Symbol 12. Forwarding FCO Symbol 13. Date of Transfer LOS 14. REMARKS: Indices 3207 Sanborn Avenue Lynwood, California Form G-360A (Rev. 9-11-56) C. O. COPY FILE TRANSFER" + }, + { + "id": "A10712436_0028", + "page_index": 28, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0028/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "ALIEN INDEX APR 15 PM 4:32 RECEIVED" + }, + { + "id": "A10712436_0029", + "page_index": 29, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0029/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service, G-14" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1957] + } + }, + "anumber": "A10712436", + "full_text": "G-14 (3-5-56) UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service NR Initials: Date: Your communication is returned, as this office is unable to identify your case. Please fill in the blanks below and send this letter, together with your attached communication, back to this office. Your \"A-\" (Alien Registration) No. 9291 Any other file No., if known Your Full Name RENDEROS, ROSA AMINTA Complete Present Address 3207 SANBORN AVE.LVNWOOD, CAL . Former Address in U.S. Birthdate 7EB 28 1917 Birthplace NAHUIZAL.CO. Date of Entry JAN 10 1957 Place of entry LOS ANGELES AIRPORT Type of Entry (Temporary Visitor, Student, Permanent Residence Visa, Reentry Permit, etc.) RESIDENCE VISA Destination in U.S. as Shown on Entry Document 3207 SANBORN AVE LVNWOOD,CA2 Name Used at Time of Arrival RENDEROS, ROSA AMINTA Other Names Used at Any Time - If you filed an application, please also fill in below: Type of Application Date of Application MAR 22 1957 Address you showed on application 3207 SANBORN AVE LYNWOOD, CAL GPO 971271" + }, + { + "id": "A10712436_0030", + "page_index": 30, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0030/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FOREIGN SERVICE MEDICAL EXAMINATION OF VISA APPLICANTS, FS-398" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1953, 1957, 1956] + } + }, + "anumber": "A10712436", + "full_text": "Form FS-398 PLACE (Rev. May 1953) FOREIGN SERVICE San Salvador UNITED STATES OF AMERICA DATE MEDICAL EXAMINATION OF VISA APPLICANTS Dec. 13th.1956 CITY COUNTRY At the request of the American Consul at San Salvador El Salvador NAME AGE SEX I certify that on the above date I examined Rosa Aminta Renderos 39 F I examined specifically for evidence of any of the following conditions: CLASS A: TUBERCULOSIS (in any form) LEPROSY (Hansen's Disease) DANGEROUS CONTAGIOUS DISEASES: Actinomycosis Granuloma Inguinale Ringworm of scalp Amebiasis Keratoconjunctivitis infections Schistosomiasis Blastomycosis Leishmaniasis Syphilis, infectious stage Chancroid Lymphogranuloma Venereum Trachoma Favus Mycetoma Trypanosomiasis Filariasis Paragonimiasis Yaws Gonorrhea MENTAL CONDITIONS: Feeble-mindedness Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Epilepsy (Idiopathic) (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. (Check number (1) below or complete number (2) ) My examination, including the X-ray and other reports below, revealed: (1) No defect, disease, or disability (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class-A, B, or C-diagnosis, and pertinent details*) : Passed JAN 9 - 1957 U. S. QUARANTINE STATION Halmmen BROWNSVILLE TEXAS BY: QUARANTINE INSPECTOR EOR: MED. OFFICER IN- CHARGE- Chest X-ray report Negative from Dr. Esquivel Blood serological report Negative from Dr. Bloch Urinalysis report Normal from Dr. Bloch SIGNATURE OF MEDICAL EXAMINER Think TITLE *Continue on reverse side if necessary. GPO 945912" + }, + { + "id": "A10712436_0031", + "page_index": 31, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0031/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa DE EL SALVADOR - CONTE DE CUENTAS - QUARENTA CENTANOS, 165847" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "165235 1956 SECURITY DE EL SECURITY SALVADOR 5 oo( 00 I , CORTE DE CUENTIS C NEW CUARENTA CENTAVOS T.R. 165847 EL INFRASCRITO ALCALDE MUNICIPAL DE ESTA CIUDAD, I 2 HACE CONSTAR: que no se encuentra en esta Oficina la Partida de Naimien- 25 25 INTERNATIONAL 3 to de la señora ROSA AMINTA RENDEROS, por haber sido incendiado en Archivo Munici- de SECURITY pal de esta Ciudad el dia veintitres de Enero del affo de mil novecientos treinti- 4 25 dos, por las hordas comunistas que invadieron este lugar en aquella feoha .Pero por 5 VEINTICINCO CENTAV B datos recabados fidedignamente en esta Oficina, dicha señora Renderos, mació en es- 7 ta Ciudad de Nahuizalco,allá por el 200 de mil novecientos diez y siete, siendo - 8 hija dlegitima de Celsa Renderos, yra fallecida.- Ige solicitud do parte interesada, expido la presente, en la Alcaldia Municipal :Nehui-- 10 00.8 las quince horas del dia once de Octubre de mil novecientow circuenta y seis - Enendado-ilegitima.Vale.- 11 12 families Jose Gilbert Larin, 13 Farmer Alcalde Myniciapl.- Alejandro Madrid Cierra.- 14 are SONSOWATE Secretario Mynicipal.- 15 16 17 over SONSOMAIE 18 19 20 21 22 23 24 25" + }, + { + "id": "A10712436_0032", + "page_index": 32, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0032/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "CERTIFICADO, T.R. 165846" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "5236 SECURITY DE EL SECURITY I CORTE DE CUENTIS NEW CUARENTA CENTAVOS 25 25 T.R. 165846 de C SECURITY 25 1 El infrascrito Alcalde Municipal 2 CERTIFICA: que a fojas tres fronte y vuelto de las diligencias seguidas or esta Oficina, solicitud de la señora Rosa Aminta Renderos mayor de edad, de O- 3 ficios domesticos y de este domicilio,a efecto de comprobar su buena conducta, 4 se encuentra el auto y resolución que dice : Alcaldia Municipal de 12 Ciudad de 5 B Nahuizalco, a las quince horas del dia primero de Octubre de mil novecientos oin 7 cuenta y seis. -Vistas las declaraciones unanimes V contestes de los testigos ha 8 bilez señores Pablo Albetto Magafia y don Francisco Ramirez Alvarado, ambos mayo 9 res de edad, oficinistas y de este Origen y domioilio, quienes en lo sustancial 10 de sus declaraciones que corren agregadas a las mismas diligencias, dicen conocer desde su tierna infancia a la señorita Rosa Aminta Renderos quien es de treinti- 11 mueve años de edad, de Oficios domésticos, de este Origen y domicilio, hija de Cel- 12 sa Renderos, constándoles que la expresada señora Renderos todo el tiempo que tie 13 nen de conocerla ha observado y observa muy buena conducta, siendo dedicada OX- 14 clusivamente al trabajo honesto y muy respetuosa con las autoridades y particu- 15 16 lares, el infrascrito Alcalde en vista de 10 dicho por los testigos y constándo- 17 les de vista y oídas por ser de este mismo Origen,tienese comprobada la buena conducta de la señora Rosa Aminta Renderos, désele certificación de este auto 18- 18 19 ra que le sirva de legal constancia Larin.-Ante mi-Alejandro Madrid Cierra.- Srio. 20 Rubricadas.- 21 ES CONFORME con su Original con el oual se confrontó,y para que sirva de legal 22 comprobante, extiendo la presente,en la Alcaldia Municipal Nahuizalco,a las diez 23 y seis horas del dia once de Octubre de mil novecientos cincuenta y seis.-Emen- dado-Alberto-para- Alejandro.Vale - 24 25 Jose Gilberto Larin, MAHURZAICO Statement AI Lajandro Madrid Cierra, Alcalde Minicipal.- Secretario Murioipal- Li" + }, + { + "id": "A10712436_0033", + "page_index": 33, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0033/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "SOLVENCIA DE BUENA CONDUCTA PARA SALIR DEL PAIS IM EL INFRASCRITO JEFE DE LA SECCION DE INVESTIGACIONES ESPECIALES, r HACE CONSTAR: que a ROSA AMINTA RENDEROS. de 39 años de edad, profesión u oficio Empleada 1 hij a leg. O ileg. de Rómulo Dominguez y de Celsa Renderos originari ade Nahuizalco, Depto. de el Sonsonate , con residencia en Calle Chile N°. 6, B°. Candelaria, San Salvador. su Cédula de Vecindad es N° 450850, extendida en la Acladia Muni- rt cipal de Sonsonate el dia 24 de Febrero de 1956. or er , después de haber revisado los libros [a led que al efecto se llevan en los A archivos del Departamento de In we vestigaciones, se ha establecido que no le apareçen anotaziones denfavorables a su conducta. En consecuencia y para los efectos IS de VISA de pasaporte en el Consulado de. Estados Unidos de Norte America en esta capital; se extiende la presente SOLVFNCIA DE BUENA CONDUCTA por duplicado, en la Jefatura de la Sección de Investigaciones Especiales de la Policía Nacional de El Salvador, a los cinco días del mes de Octubre de mil novecientos cincuenta y seis. . (f) d 2 AVESTIGACIONES Comdte. 1° LUIS LARA GAVIDIA Jefe de la Secc. de Inv. Esp. (f) M Tulio A. Gutierrez Secretario, jlr/M.P.G. of n" + }, + { + "id": "A10712436_0034", + "page_index": 34, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0034/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Foreign Service of the United States of America, I- 980834" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1956] + } + }, + "anumber": "A10712436", + "full_text": "1 FOREIGN SERVICE OF THE UNITED STATES OF AMERICA Bureau Budget No. 47-R108.2 APPLICATION FOR IMMIGRANT VISA I- 980834 AND ALIEN REGISTRATION I, the undersigned, being duly sworn, state the following facts regarding myself and hereby make application for an IMMIGRANT VISA and ALIEN REGISTRATION under the Immigration and Nationality Act to the American Embassy Consul ar Section at San Salvador, E1 Salvador 1. Family name Given name Pi Initial 2. Place and date of birth Age RENDEROS Nahuizalco Sonsonate, E1 Salvador Rosa Aminta D. February 28, 1917 39 3. Other names by which I have been known 0/8 MAS ALICE GREENOUGH 4. Last permanent residence comption COLLEGE IIII EAS ARTESIMST Calle Chile No. 6 B, Barrio Candelaria A San Salvador, El Salvador 5. Address in the United States CompToN CALIFORNIA 6. Name and address of person to whom destined, if any 1151 So. Van Ness Ave. San Francis Call Jose Rafael Brito Same as No. 5 7. Name and address of nearest relative in home country 8. Travel documents presented Passport No. 29086 Sonia Renderos Cea (daughter) Same as No.4 Issued by Ministry of Foreign Affairs of El Salvador on October 11, 1956 9. Hair 10. Eyes 11. Height 12. Weight 13. Nationality 15. Race 17. Sex 18. Marital status Salvadoran Span. Amari can - M Married Single brown black 14. Complexion 16. Ethnic Classification 5 ft. 1 in. 122 lbs. medium Spanish F Widowed Divorced 19. Occupation 20. Distinguishing marks 21. Languages spoken, read, or written Employee none Spanish only 22. Intended United States port of entry 23. Final destination 24. I have (a) (no) 25. Purpose of going to the United States through ticket to Los Angeles, California San Francisco destination to reside 26. Places of previous residence None 27. Names and places of residence of spouse and minor children 28. Name and address of father 29. Name and address of mother Romulo DOMINGUEZ IND Sonsonate, E1 Salvador Celsa RENDEROS - Deceased 30. I claim to be a fnonquota immigrant and my claim is based on the 31. Available documents required by the Immigration and Nationality Act are filed herewith and made a part hereof, as follows (Sec. 222 (b)): following facts: I was born in El Salvador AFFIDAVITS OF SUPPORT: Birth, Medical and Police certificates 32. I have never been: Arrested; convicted; in prison; in an almshouse; treated in an institution, hospital, or other place, for insanity or other mental disease; the beneficiary of a pardon or amnesty, except as hereinafter stated: Never 33. I have never applied to any American consular officer, either formally or informally, for a visa or other documentation as an immigrant or nonimmigrant, except as hereinafter stated: Never 34. I have never been excluded, deported, or removed from the United States at Government expense, except as hereinafter stated: Never II 16-67444-2 (Application continued on reverse side)" + }, + { + "id": "A10712436_0035", + "page_index": 35, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0035/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States of America Immigrant Visa and Alien Registration, 2698" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956, 1957] + } + }, + "anumber": "A10712436", + "full_text": "2 35. I intend to remain in the United States for the following period of time: 36. I have previously been in the United Staw Indefinite never 37. I have had the following excludable clauses explained to me and state that I am not, except as hereinafter noted, a member of any one of the follo classes of individuals excluded from the United States under the Immigration and Nationality Act: (1) persons who have had one or more attacks of insanity; (2) persons who are narcotic drug addicts or chronic alcoholics; (3) persons who are afflicted with tuberculosis in any form, leprosy, or any dangerous contagious disease (4) persons afflicted with any other disease, physical defect or disability which is of such a nature as may affect such persons' ability to earn a living unless affirma- tively established that they will not have to earn a living; (5) paupers, professional beggars or vagrants; (6) persons convicted of, or who have admitted committing, a crime involving moral turpitude, or committing acts constituting the essential elements of such a crime, with the exceptions noted in the Act; (7) persons con- victed of two or more offenses for which the aggregate sentences to confinement actually imposed were 5 years or more; (8) polygamists, practitioners or advocates of polygamy; (9) prostitutes, persons who have engaged in prostitution, persons coming to the United States solely, principally or incidentally to engage in pros- titution, procurers and persons attempting to procure, or persons who have procured or attempted to procure or import, prostitutes or persons for the purpose of prostitution or for any other immoral purpose, or persons who are or have been supported by or receive or have received the proceeds of prostitution, or persons coming to the United States to engage in any other unlawful commercialized vice; (10) persons coming to the United States to engage in any immoral sexual act; (11) persons coming to the United States to perform skilled or unskilled labor who do not meet the requirements of the Act; (12) persons likely to become public charges; (13) persons excluded from admission and deported, or persons arrested and deported, or persons fallen into distress and removed, or persons removed as enemy aliens, or persons removed at Government expense, who do not have the Attorney General's permission to reapply for admission; (14) stowaways; persons procuring, or who have sought to procure, visas or other documentation, or who seek to enter the United States by fraud or willful misrepresentation of a material fact; (15) immigrants not possessing valid unexpired immigrant visas, reentry permits, border crossing identification cards or other documentation required by the Act, and a valid unexpired passport or other suitable travel document or document of identity and nationality; (16) quota immigrants possessing visas not issued in compliance with the quota provisions of the Act; (17) persons ineligible to citizenship of the United States, or persons who have departed from or have remained outside the United States to evade or avoid military training or service in time of war or national emergency; (18) persons convicted of a violation of any law or regulation relating to the illicit narcotics drug traffic or of any law or regulation governing commerce or manufacture of narcotic drugs as provided in the Act; (19) persons who seek admission-from foreign contiguous territory or adjacent islands after arriving therein by nonsignatory or noncomplying transportation lines; (20) persons seeking to enter the United States solely, principally, or incidentally to engage in activities which would be prejudicial to the public interest, or endanger the welfare, safety, or security of the United States; (21) persons who are, or at any time have been, anarchists, Communists, or other political subversives, as specified in Sec. 212 (a) (28) of the Act; (22) persons who after entering the United States probably would engage in activities prohibited by the laws of the United States relating to espionage, sabotage, public disorder, or in any other activity subversive to the national security, or engage in any activity a purpose of which is opposition to, control or overthrow of, the United States Government by force, violence or other unconstitutional means, or join, affiliate with, or participate in the activities of any organization registered or required to be registered under Sec. 7 of the Subversive Activities Control Act of 1950; (23) persons accompanying other persons ordered excluded, deported, and certified to be helpless from sickness or mental or physical disability or infancy pursuant to Sec. 237 (e) of the Act, whose protection or guardianship is required by the persons excluded and deported; (24) persons who at any time, knowingly and for gain, encouraged, induced, assisted, abetted, or aided any other alien to enter or try to enter the United States in violation of law. 38. I have had the exceptions to the foregoing excludable classes explained to me and claim to be exempt from exclusion on account of membership in the class or classes noted above because: Service No. 2768 Tariff Item No. 7 Rosa liminta (Signature of applicant) Rendero D Fee Raid: U.S.$ 5.00 [SPACIFUL 12.50 Subscribed and sworn to before me this 21st. day of December 19 56 Edwin G. Goswell Fee No. Edwin Go Croswell, Vice-Consul of the United States of America. Fee: $5. UNITED STATES OF AMERICA BRO 141 IMMIGRANT VISA AND ALIEN REGISTRATION PORT OF Brownsville, Texas IMMIGRANT CLASSIFICATION: I certify that the immigrant named herein arrived in the United States at this port on the JAN 9 1957 Nonquota 0-1 Quota on N6/10 C (Symbol) (Symbol) (Day, month, year) American Embassy (Consular Section) (admitted and was inspected by me and detained further inquiry by special inquiry officer at San Salvador, El Salvador under Section the Immigration and Nationality Act. IMMIGRANT VISA NO. 96 - (State quota) (Immigration officer) Issued on 21 December, 1956 ACTION OF SPECIAL INQUIRY OFFICER (Day, month, year) The immigrant named herein was (admitted) (excluded) and and no appeal appeal taken taken The validity of this visa expires midnight, E. S. T., at the end of under Section of the Immigration and Nationality Act. 21 April, 1957 (Day, month, year) Date Nationality (if stateless, SO state, and give previous nationality) (Special Inquiry officer) Salvadoran This visa is issued under Section 221 of the Immigration and Nationality Act ACTION ON APPEAL and upon the basis of the facts stated in the application. This visa does not entitle the bearer to enter the United States if, upon arrival at a port of entry Admitted Excluded Date of the United States, he is found to be inadmissible under the law. JAN 15 1957 Servi e No. 2769 Teriff [SEAL] No. 7 Edwin G. Goswell Form I-1.51 issued Fee Paid U.S.$20.00 Edwin G. Croswell Local. Cy equiv. 50.00 Vice-Consul of the United States of America. Fee No. Fee: $20. e h al Passport No. 29086/9291 or other travel document (describe) r. Issued- To Rosa Aminta Renderos By Ministry of Foreign Affairs of El Salvador On ld October, 1956 Expires 11 October, 1957 U. S. GOVERNMENT PRINTING OFFICE 16- 7444-1" + }, + { + "id": "A10712436_0036", + "page_index": 36, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0036/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436" + }, + { + "id": "A10712436_0037", + "page_index": 37, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0037/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "THE FOREIGN SERVICE OF THE UNITED STATES OF AMERICA OFFICIAL BUSINESS \"TO BE OPENED ONLY BY A UNIT ED STATES IMMIGRATION OFFIC ER\"" + }, + { + "id": "A10712436_0038", + "page_index": 38, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0038/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Certification of Good Moral Character and Employment for Rosa Aminta Renderos Dominquez" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "November 5th, 1956 4317 Tweedy Blvd. South Gate, California TO WHOM IT MAY CONCERN This is to certify that ROSA AMINTA RENDEROS DOMINQUEZ is my cousin. I have always found Rosa to be of good moral character and an industrious worker. I have found employment for her with Mrs Alice Greenough, Director of Vocational Nurse Program at Compton Junior College, and have made arrangement for her financial security should she be given admission to the United States. Yous very sincerely Martha Dominguez Smith Martha Dominquez Smith" + }, + { + "id": "A10712436_0039", + "page_index": 39, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0039/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "COMPTON COLLEGE, 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "COMPTON COLLEGE 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA LUCILE DOUGLASS PAUL MARTIN Dean President November 5th, 1956 Rosa Aminta Renderos Dominquez Calle Chile # 6 Bo. Candelaria San Salvador, E. Salvador, C.A. Dear Madams On the recommendation of your oousin and my student, Martha Dominques Smith, I wish to offer you employment doing housework. The remuneration, contingent on the amount of work hours you wish to put in, could amount to thirty=two dollars a week and your board and room. I would appreciate hearing from you as soon as possible. Yours very sincerely, Sheenough R.N Alice Greenough, R.N., M.A. AG/hf Director of Vocational Nurse Program" + }, + { + "id": "A10712436_0040", + "page_index": 40, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0040/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa DE EL SALVADOR EN LA AMERICA CENTRAL, CORTÉ DE CUENTAS" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1955] + } + }, + "anumber": "A10712436", + "full_text": "No 019578 1955 SALVADO, DOR ENLA DE EL SECURITY SIGNATURE AMERICAN I CORTE DE CUENTIS HOMELAND CINCO COLONES CINCUENTA CENTAVOS T.R. 019487 I Número noventidos. -En la ciudad de San Salvador, a las diez horas del 2 día ocho de octubre de mil novecientos cincuentiseis. -Ante mi,Nicolás 3 Rogerio Melara,Abogado y Notario, de este domicilio, y testigos hábi- 4 les y de mi conocimiento que adelante diré, comparece don Rafael Ren- deros Menéndez, quien firma \"Raf. Renderos M. If de cincuentinueve años 5 de edad, Tenedor de Libros, de este domicilio,con cédula de vecindad- 6 7 número setecientos sesenticuatro mil trescientos cuatro Serie \"A\" y- 8 dice:que para asegurar la realización del viaje que la señora Rosa A- 9 minta Renderos desea hacer a Estados Unidos de America y la posibili- 10 dad de que permanezca en ese país durante el tiempo que fuere necesa- ric o sea por el tiempo que se le permita residir en aquel país por- 11 las Autoridades correspondientes, el compareciente se compromete a - 12 13 pagar los gastos necesarios para su regreso a este país, cuando desee regresar Q cuando expire o sea cancelado el permiso de permanencia - 14 que las Autoridades americanas lo concedan;que formalizan este com- 15 promiso de pago de los gastos indicados porque quiere facilitar la - 16 entrada y permanencia de su sobrina legítima Rosa Aminta Renderos, , pa- 17 ra que pueda permanecer en los Estados Unidos de America el tiempo - 18 que le sea permitido y quiere asegurar que en ningún caso será una - 19 carga para dicho Estado;que se considera ser persona suficientemente 20 abonada para contraer este compromiso porque es propietario de varias 21 fincas de café en la jurisdicción de Nahuizalco del Departamento de- 22 Sonsonate, habiendo vendido a la Casa Goldtree Lieves y Compañía de 23 la cosecha del año próximo pasado la suma de nneve mil seiscientos - 24 colones, según constancia que tuve a la vista y que se agregará al tes 25" + }, + { + "id": "A10712436_0041", + "page_index": 41, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0041/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Timonio de esta escritura" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "I timonio de esta escritura; dichas fincas están inscritas a los números 2 ciento sesentisiete del Tomo ciento dos ciento noventisiete del Tomo 3 ciento treintiseis, cien del Tomo ciento diecinueve setentiuno del To- 4 mo ochenticuatro, ciento dos y ciento tres del Tomo ochenta y ciento- 5 cusrentinueve del Tomo noventinueve, todos del Registro de la Propie- e dad del Departamento de Sonsonate; que además le pertenece una casa- 7 urbana de sistema mixto, situada en la ciudad de Nahuizalco, inscrita- 8 al número doscientos nueve del Tomo sesenta del Registro de la Pro-- 9 piedad de Sonsonate las propiedades de café las valua el comparecien- 10 te en la suma de SESENTA MIL COLONES y la propiedad urbana en refe-- 11 rencia en VEINTICINCO MIL COLONES produciendo de renta anual cuatro- 12 cientos ochenta colones y además trabaja en el Tribunal de Apelacio- nes devengando el sueldo anual de siete mil ochocientos colones.-Pre 13 14 sente la señora Rosa Aminta Renderos, quien firma de la misma manera, 15 de treintinueve años de edad, Empleada de Comercio, de este domicilio, con cédula de vecindad número cuatrocientos cincuenta mil ochocientos 16 17 cincuenta Serie \"B\" y dice: que acepta las obligaciones de pago que- por esta escritura contrae su mencionado tío y que de acuerdo con el 18 19 cede y transfiere al Gobierno de Estados Unidos de America su derecho 20 personal de exigir de su mencionado tio, el cumplimiento de esas obli 21 gaciones por el contraídas. -En este estado el compareciente don Ra-- 22 fael Renderos Menéndez manifiesta: que está de acuerdo con lo expre- sado por su sobrina y que se dá por notificado de la cesión y traspa- 23 24 SO que de su derecho de exigir el cumplimiento de las expresadas Q-- 25 bligaciones de pago que hace ella al Gobierno de los Estados Unidos-" + }, + { + "id": "A10712436_0042", + "page_index": 42, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0042/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa de El Salvador - Corte de Cuentasas, 253875, T.R. 253199" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "No 253875 1956 DE EL AlVADOR DEPARTMENT 100 REVENUE $300 I CORTE DE CUENTIS HOMELAND NEW QUINCE CENTAVOS T.R. 253199 paid de América. Expliqué a los otorgantes a quienes conozco, los efectos 2 legales de esta escritura y leído que les fué por mi lo escrito en . 3 un solo acto no interrunpido, en presencia de los testigos señores 4 Doctor Victor Manuel Marticcrena, de cuarentiseis años de edad, Aboga 5 do y don Jose Manuel Mármol, de cuarenta años de edad, Oficinista,an e bos de este domicilio, ratificaron su contenido por estar redactado a 7 conforme a sus voluntades y todos firmamos. De todo lo cual doy fé.- gEnmendado-sistema-el-el-Vale.-Testado-Dirección General-No Vale.-En- 8 tre lineas-la señora-Vale.-Raf.Renderos M. -Rosa Aminta Renderos. -V. 9 10 M. Marticorena. -J osé Manuel Mármol. -Ante mi, N.Rogerio Melara. -Rubri- cada.- - - 11 Pasó ante mi, de los folios veintitres vuelto al folio veinti-- 12 13 cinco frente del Libro Segundo de mi Protocolo que llevo en el CO 14 priente año;y para los efectos de ley expido, firmo y sello el pre-- sente testimonio en la ciudad de San Salvador, a nueve de octubre de 15 16 mil novecientos cincuentiseis. -Enmendado-A-desee-nueve-las-producie: do-Vale. - 17 18 Dz. NOTARIO ROGERID SAN GETARA 19 40% de El Salmede 20 21 22 23 24 25" + }, + { + "id": "A10712436_0043", + "page_index": 43, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0043/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM DE CASA GOLDTREE, La Idea 2-54" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "MEMORANDUM San Salvador, Octubre 8 de 1956 DE CASA GOLDTREE Señor don LIEBES & CO. SAN SALVADOR Rafael Rendero Menéndez EL SALVADOR, C. A. Pte.- TELEFONO: 1300 APARTADO 195 La Idea 2-54 Muy señor nuestro: por medio de la presente nos permitimos confirmarle que este año le hemos comprado café maduro por valor de $9,600. / segun contrato N°112. de Agencia de Juayua. Quedamos de Ud. Atentos y seguros servidores. CASA GOIDTREE Liebes & C° Mayma" + }, + { + "id": "A10712436_0044", + "page_index": 44, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0044/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Certification of Employment and Good Moral Character for Rosa Aminta Renderos Dominquez" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "November 5th, 1956 4317 Tweedy Blvd South Gate, California To Whom It May Concern : This is to certify that Rosa Aminta Renderos Dominquez is my cousin and is of good moral character. I have secured employment for her with Mrs. Alice Greenough, R.N. Director of Vocational Nurse Program at Compton Junior College and have made all arrangements for her financial security should she be allowed admission to the United States. Yours very sincerely, Martha Drivinguy Smith Martha Dominquez Smith" + }, + { + "id": "A10712436_0045", + "page_index": 45, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0045/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "COMPTON COLLEGE, 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "COMPTON COLLEGE 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA LUCILE DOUGLASS PAUL MARTIN November 5th, 1956 Dean President Rosa Aminta Renderos Dominquez Calle Chile # 6 Bo. Candelaria San Salvador, E. Salvador, C.A. Dear Madam: On the recommendation of your cousin and my student, Martha Dominquez Smith, I wish to offer you employment doing housework. The remuneration ,contingent on the amount of work hours you wish to put in, could amount to thirty two dollars a week and your board and room. I would appreciate hearing from you as soon as possible. Yours very sincerely, Alice Greenough R.N.,M.A. Alice Greenough, R.N. 9 M.A. Director of Vocational Nurse Program AG/hf" + }, + { + "id": "A10712436_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Processing Sheet" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Immigration and Naturalization Service DEPARTMENT D 0 PROCESSING SHEET File No: A 10712436 DESCRIPTION SECTION OF LAW Sex: Male Female 316(a) 325 Marital Status: Single Married Divorce 1 WidonsAnt 319(a) 328 Height: Feet S Inches 0 319(b) 329 Nationality: Elsaluador 322 405 FINAL ACTION INITIAL INTERVIEW: MAY 21 1996 English 65/20 (Date) Denial: Date & Initials 0 Speaks Reads Writes ii° Understands ] Withdrawal: Date & Initials Government: OK LNS E.T.S. CASAS NAS Oath Taken Certificate Issued: REEXAM: ACTION or DOCUMENTS REQUIRED (Date and Initials) See Attached N-14b Reexamination SEC DOCUMENTS PRESENTED Visa File Post Audit A.R.C. : 10712436 Other: D.O.B. : 2-2-83 P.O.E. : BRO C.O.A.: 0-1 COMMENTS D.O.E. : 01-9-57 CID/CDL : N0059160 Recommendation 6P JR. AF APPROVAL (STAMP) FINAL HEARING INS DISTRICT DIRECTOR 8/9/96 MAY 9.1 1996 DATE Joseph 8 Recommended by: LOS 4688 TIME Attorney Waiver Executed. If Attorney Present, List Name: 3 Months Residence OK Fingerprints NEG. 40 Nazi Negative Day-Time Phone: ( 310 ) - 925 - 4265 Ext OATH OF ALLEGIANCE Name Change: now Modified Oath; Delete Part(s): Promise to Bear Arms, Noncombat Duty OATH WITH U.S. DISTRICT COURT: 246 Jane I HEREBY DECLARE, on oath. That I absolutely and entirely renounce and abjure all allegiance and fidelity to any foreign prince, potentate, state, or sovereignty of whom or which I have heretofore been a subject or citizen; That I will support and defend the Constitution and the laws of the United States of America against all enemies, foreign and domestic; that I will bear true faith and allegiance to the same; that I will bear arms on behalf of the United States when required by the law, that I will perform noncombatant service in the Armed Forces of the United States when required by the law, that I will perform work of national importance under civilian direction when required by the law; and that I take this obligation freely, without any mental reservation or purpose of evasion; so HELP ME God. In acknowledgment whereof I have hereunto affixed my signature. Form I-468 Signature: Rosa fominta Renderos" + }, + { + "id": "A10712436_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Naturalization, N-4 (Rev. 07/17/91)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1995, 1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB 1 1115-0009 Immigration and Naturalization Servic Application for Naturalization START HERE - Please Type or Print FOR INS USE ONLY Returned Receipt Part 1. Information about you. 2 Family Name DOMINGUEZ 3 Renderos Given Name Rosa Initial Middle Aminta U.S. Mailing Address - Care of Rosa Aminta Renderos 0063 001 R 4 06/16/95 16:01 Resubmitted N400 95.00 Street Number and Name 9843 Ramona St. Apt. # 405 City County Bellflower State Los Angeles California ZIP Code 90706 Reloc Sent Date of Birth (month/day/year) 2-28-13/ Country Birth El Satrador of Social A Security # 566-54-1023 # 10712436 Reloc Rec'd Part 2. Basis for Eligibility (check one). a. I have been a permanent resident for at least five (5) years b. I have been a permanent resident for at least three (3) years and have been married to a United States Citizen for those three years. Applicant Interviewed C. I am a permanent resident child of United States citizen parent(s) d. I am applying on the basis of qualifying military service in the Armed Forces of the U.S. and have attached completed Forms N-426 and G-325B At interview e. Other. (Please specify section of law) request naturalization ceremony at court Part 3. Additional information about you. Remarks Date you became a permanent Port admitted with an immmigrant visa or INS Office resident (month/day/year) where granted adjustment of status. 3/c.a) 1-9-570 BRO, TEXAS 0-1 Citizenship E1 Salvador Name on alien registration card (if different than in Part 1) DOMINGUEZ -Renderos, Rosa Aminta Other names used since you became a permanent resident (including maiden name) None Sex Male Height Marital Status: Single Divorced Female 5-00 Married Widowed NOV 07 1995 Can you speak, read and write English ? No Yes. Action APPROVED Absences from the U.S.: INS DISTRICT DIRECTOR Have you been absent from the U.S. since becoming a permanent resident? No Yes. If you answered \"Yes\" , complete the following, Begin with your most recent absence. If you MAY 21 1996 need more room to explain the reason for an absence or to list more trips, continue on separate paper. Did absence last Repommended by Jun Prem Date left U.S. Date returned 6 months or more? Destination Reason for trip LOS 4688 9/78 9/79 Yes No Salvador Vacation 10/77 6/78 Yes No Salvador vacation To Be Completed by Attorney or Representative, if any Yes No Fill in box if G-28 is attached to represent Yes No 2 axa 54 the applicant VOLAG# Yes No Tast Yes No ATTY State License # Form N-400 (Rev. 07/17/91)N Continued on back." + }, + { + "id": "A10712436_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Information about your residences and employment., N-400 ( (Rev 07/19)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + } + }, + "anumber": "A10712436", + "full_text": "Part 4. Information about your residences and employment. A. List your addresses during the last five (5) years or since you became a permanent resident, whichever IS less. Begin with your current address. If you need more space, continue on separate paper: Street Number and Name, City, State, Country, and Zip Code The Dates (month/day/year) From 9843 90706 Ramona St., Bollflower, you CA.U.So To 1/89 Present B. List your employers during the last five (5) years. List your present or most recent employer first. If none, write \"None\". If you need more space, continue on separate paper. Employer's Name Employer's Address Dates Employed (month/day/year) Occupation/position Street Name and Number - City, State and ZIP Code From To Retired ©Retire Reseives 55 1/3/18 Present Retired worwed forth last time in 78 $ 650 Grooth MOA monthly Part 5. Information about your marital history. (io died 59 Dor 30 A. Total number of times you have been married 1 . If you are now married, complete the following regarding your husband or wife. Family name N/A Sea Given name Middle initial Jose Meria Address Date of birth Country of birth (month/day/year) Salvador for Citizenship Salvador Social A# (if applicable) Immigration status Security# 7 (If not a U.S. citizen) Naturalization (If applicable) (month/day/year) Place (City State) If you have ever previously been married or if your current spouse has been previously married, please provide the following on separate paper: Name of prior spouse, date of marriage, date marriage ended, how marriage ended and immigration status of prior spouse. Part 6. Information about your children. B. Total Number of Children / . Complete the following information for each of your children. If the child lives with you, state \"with me\" in the address column; otherwise give city/state/country of child's current residence. If deceased, write \"deceased\" III the address column. If you need more space, continue on separate paper. Full name of child Date of birth Country of birth EI Salvador the Citizenship A Number Address Sonia Quinones 1-8-34 U.S. 16641 Moorbrook Ave. Cerritos, CA 90703 8 Form N-400 (Rev 07/17/91)N Cr ed on next page" + }, + { + "id": "A10712436_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1978, 1933, 1945] + } + }, + "anumber": "A10712436", + "full_text": "Continued on back Part 7. Additional eligibility factors. Please answer each of the following questions. If your answer IS \"Yes\", explain on a separate paper. 1. Are you now, or have you ever been a member of, or in any way connected or associated with the Communist Party, or ever knowingly aided or supported the Communist Party directly, or indirectly through another organization, group or person, or ever advocated, taught, believed in, or knowingly supported or furthered the interests of communism? Yes No 2. During the period March 23, 1933 to May 8, 1945, did you serve in, or were you in any way affiliated with, either directly or indirectly, any military unit, paramilitary unit, police unit, self-defense unit, vigilante unit, citizen unit of the Nazi party or SS, government agency or office, extermination camp, concentration camp, prisoner of war camp, prison, labor camp, detention camp or transit camp, under the control or affiliated with: a. The Nazi Government of Germany? Yes No b. Any government in any area occupied by, allied with, or established with the assistance or cooperation of, the Nazi Government of Germany? Yes No 3. Have you at any time, anywhere, ever ordered, incited, assisted, or otherwise participated in the persecution of any person. because of race, religion, national origin, or political opinion? Yes No 4. Have you ever left the United States to avoid being drafted into the U.S. Armed Forces? Yes No 5. Have you ever failed to comply with Selective Service laws? Yes No If you have registered under the Selective Service laws, complete the following information: Selective Service Number: Date Registered: If you registered before 1978, also provide the following: Local Board Number: Classification: 6. Did you ever apply for exemption from military service because of alienage, conscientious objections or other reasons? Yes No 7. Have you ever deserted from the military, air or naval forces of the United States? Yes No 8. Since becoming a permanent resident have you ever failed to file a federal income tax return ? Yes No 9. Since becoming a permanent resident have you filed a federal income tax return as a nonresident or failed to file a federal return because you considered yourself to be a nonresident? Yes NO 10 Are deportation proceedings pending against you, or have you ever been deported, or ordered deported, or have you ever applied for suspension of deportation? Yes No 11. Have you ever claimed in writing, or in any way, to be a United States citizen? Yes No 12. Have you ever: ARRESTS a. been a habitual drunkard? EXPUNGEMENTS Yes No b. advocated or practiced polygamy? 9 TRAFFIC VIOLATIONS Yes No C. been a prostitute or procured anyone for prostitution? Yes No d. knowingly and for gain helped any alien to enter the U.S. illegally? CONVICTIONS Yes No e. been an illicit trafficker in narcotic drugs or marijuana? Yes No f. received income from illegal gambling? Yes No g. given false testimony for the purpose of obtaining any immigration benefit? Yes No 13. Have you ever been declared legally incompetent or have you ever been confined as a patient in a mental institution? Yes No 14. Were you born with, or have you acquired in same way, any title or order of nobility in any foreign State? Yes No 15. Have you ever: a. knowingly committed any crime for which you have not been arrested? Yes No b. been arrested, cited, charged, indicted, convicted, fined or imprisoned for breaking or violating any law or ordinance excluding traffic regulations? Yes No ( If you answer yes to 15, in your explanation give the following information for each incident or occurrence the city, state, and country, where the offense took place, the date and nature of the offense, and the outcome or disposition of the case). Part 8. Allegiance to the U.S. If your answer to any of the following questions is \"NO\", attach a full explanation: 1. Do you believe in the Constitution and form of government of the U.S.? Yes No 2. Are you willing to take the full Oath of Allegiance to the U.S.? (see instructions) Yes No 3. If the law requires it, are you willing to bear arms on behalf of the U.S.? Yes No 4. If the law requires it, are you willing to perform noncombatant services in the Armed Forces of the U.S.? Yes No 5. If the law requires it, are you willing to perform work of national importance under civilian direction? Yes No Form N-400 (Rev 07/17/91)N Continued on back" + }, + { + "id": "A10712436_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Part 9. Memberships and organizations., Form N-4 ( (Rev. 07/17'91)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "Part 9. Memberships and organizations. A. List your present and past membership in or affiliation with every organization, association, fund, foundation, party, club, society, or similar group in the United States or in any other place. Include any military service III this part. If none, write \"none\". Include the name of organization, location, dates of membership and the nature of the organization. If additional space IS needed, use separate paper. None 10 Part 10. Complete only if you checked block \" C \" in Part 2. How many of your parents are U.S. citizens? One Both (Give the following about one U.S. citizen parent:) Family Given Middle Name Name Name Address 11 Basis for citizenship: Relationship to you (check one): natural parent adoptive parent Birth parent of child legitimated after birth Naturalization Cert. No. 1042 If adopted or legitimated after birth, give date of adoption or, legitimation: (month.day.year) IBVELIC ALORY LIONE Does this parent have legal custody of you? Yes No (Attach a copy of relating evidence to establish that you are the child of this U.S. citizen and evidence of this parent's citizenship.) Part 11. Signature. (Read the information on penalties in the instructions before completing this section). I certify or, if outside the United States, I swear or affirm, under penalty of perjury under the laws of the United States of America that this application, and the evidence submitted with it, IS all true and correct. I authorize the release of any information from my records which the Immigration and Naturalization Service needs to determine eligibility for the benefit I am seeking. Signature Date Renderos 3/18/95 Please Note: If you do not completely fill out this form, or fail to submit required documents listed in the instructions, you may not be found eligible for naturalization and this application may be denied. Part 12. Signature of person preparing form if other than above. (Sign below) I declare that I prepared this application at the request of the above person and it is based on all information of which I have knowledge. Signature Print Your Name Date DOLORES RIVERA Firm Name 3/18/95 and Address DO NOT COMPLETE THE FOLLOWING UNTIL INSTRUCTED TO DO so AT THE INTERVIEW I swear that I know the contents of this application, and supplemental pages 1 through Z. that the corrections , numbered 1 Subscribed and sworn to before me by the applicant. through 11 were made at my request, and that this amended application, is true to the best of my knowledge and belief. (Examiner's Jun Ru Signature ) 5-21-96 Date Rosa Aminta Renderos (Complete and true signature of applicant) Form N .100 (Rev 07/17/91)N *U.S. Government Printing Office: 1993-301-164/92716" + }, + { + "id": "A10712436_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "California Driver License, N0059160" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Canada", "Mexico"] + } + }, + "anumber": "A10712436", + "full_text": "UMM CALIFORNIA UMM DRIVER LICENSE N0059160 CLASS: C EXPIRES 02-28-97 ROSA AMINTA RENDEROS 9843 RAMONA ST APT 405 BELLFLOWER CA 90706 SEX: F HAIR: BLK EYES: BRN HT: 5-00 HT: 118 DOB 02-28-13 RSTR: CORR LENS Roa fo. Renderos 04/06/93 606 18/ FD/97 1418 ADDRESS REPORTS You are required by law to notify the Attorney General of of of address January change each of year during your notification the current month days and to furnish address alty from Forms is the provided date be of obtained change. within from to 10 A do pen- any 80. such for failure may and cations post Naturalization office. letters Address Service, reports, Immigration should appli- or to the include the \"A\" number shown on the other side: BORDER CROSSING CARD This card will be honored for bor- der crossing purposes on condition holder is visit ceeding the that United the to 6 rightful Canada months, States and Mexico. is returning not temporary not subject ex- to from a or . to exclusion under any provision of 3 the immigration laws." + }, + { + "id": "A10712436_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "A10 772 1,36 This is to certify that (REG ISTRATION NUMBER) DOMINGUEZ-Renderos, - Rosa Aminta was admitted to the United States as an immigrant on 01 09 57 BRO MONTH DAY YEAR DISTRICT PORT Date of 0-1 02 28 17 F Birth MONTH DAY YEAR SEX TYPE and has been duly registered according to law. Commissioner of Immigration and Naturalization UNITED STATES DEPARTMENT OF JUSTICE 1118 years of age or older, you are required by law to have this card with you atail times." + }, + { + "id": "A10712436_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "ATTACHMENT TO APPLICATION FOR NATURALIZATION APPLICANT: A#: INFORMATION ABOUT PREVIOUS MARRIAGES: NAME OF PRIOR SPOUSE Jose Maria Cea DATE OF MARRIAGE: 1933 DATE MARRIAGE ENDED: 1944 MANNER MARRIAGE ENDED: Divorce IMMIGRATION STATUS OF PRIOR SPOUSE: Was a permanent resident in El Salvador; never migrated to the U.S." + }, + { + "id": "A10712436_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE CITIZENSHIP USA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE CITIZENSHIP USA A # MAY 2 1996 A 10712436 PASSED $312 TEST GOVERNMENT HISTORY ROSA DOMINGUEZ-RENDEROS * * WRITTEN I READING 9843 RAMONA ST. #405 BELLFLOWER CA 90706 Mark OFFICER You are hereby notified to appear for an interview on your (your child's) application for naturalization at the date, time and place shown below. DATE: 5/21/1996 TIME: 1:15 PM PLACE: 9650 FLAIR DRIVE EL MONTE, CA 91731 PARK PLACE SECOND FLOOR Please see following page of additional requirements for your interview. PLEASE KEEP THIS APPOINTMENT, EVEN IF YOU DO NOT HAVE ALL THE ITEMS NOTED ABOVE. PROPER ATTIRE IS REQUESTED. PLEASE DO NOT ARRIVE EARLIER THAN 30 MINUTES BEFORE YOUR APPOINTMENT. - CC: LOSUSA. 3 45/20 213 526 7647" + }, + { + "id": "A10712436_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "Diah 09237813" + }, + { + "id": "A10712436_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436" + }, + { + "id": "A10712436_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "® provided . Roso AminTA Renderos , - A=40 -12436 ." + }, + { + "id": "A10712436_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Department of Justice INTERVIEW Application to File Petition for Naturalization" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1988, 2010] + } + }, + "anumber": "A10712436", + "full_text": "68A 270 436 U.S. Depar mentorjustice CITIZENSHIP INTERVIEW Application to File OMB #1115-0009 Immigration and Waltralization Service Petition for Naturalization DEC 20 1988 Please read the instructions before filling out this form. 246 This block for government use only. Section of Law NO SHOW 1. Your name (Exactly as it appears on your Alien Registration Receipt Card) 14. Place you were admitted for permanent residency (City and State) Rosa Aminta DominGUEZ Renderos Los AnGELES, cah. 2. Your Alien Registration number 3. Your Social Security Number 15. Date your continuous residency began in the U.S. (Month/Day/Year) A-10 712 436 566-54-1023 1-9-57 4. Your name (Full true and correct name, if different from above) 16. How long have you continuously resided in the State where you now live? (Number of Months) 108 5. Any other names you have used (Including maiden) 17. Do you intend to reside permanently in the United States? Rosa Aminta Renderos (If No, explain fully) Yes No 6. Your date of birth (Month/Day/Year) 7. Your Sex 2-28-13 Male Female 8. Your place of birth (City or Town) Nahuizalco, EL SaLVaDOR C.A. (County, Province or State) (Country) 9. Was your father or mother ever a United States citizen? 18. Have you served in the United States Armed Forces? (If Yes, explain fully) Yes No (If Yes, complete all of #18.) Yes No Branch of Service (Indicate if Reserve or National Guard) Inducted Enlisted Location where you entered (City and State) Service began (Month/Day/Year) Service ended (Month/Day/Year) 10. Can you read and write English? Service number Yes No 11. Can you speak English? Rank at discharge Yes No 12. Can you sign your name in English? Type of discharge (Honorable, Dishonorable, etc.) Yes No 13. Date you were admitted for permanent residency (Month/Day/Year) Reason for discharge (Alienage, conscientious objector, other) 19. At what addresses in the United States have you lived during the last 5 years? List present address first. Street Address City county and State From (Month/Day/Year) To (Month/Day/Year) 11536 Imperial#4 NorwaLK, CAL 12-12-79 Present 20. What employment have you held during the last 5 years? List present or most recent employment first. (If none, write \"None\".) 2010 Name and Address of Employer Occupation or Type of Business From (Month/Day/Year) To (Month/Day/Year) none Form N-400 (12/05/86)" + }, + { + "id": "A10712436_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Marital Status and Immigration Information, N-400 ( (12/05/86) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1977] + } + }, + "anumber": "A10712436", + "full_text": "21. What is your present marital status? Married Widowed Divorced Single 22. Complete the following regarding your husband or wife if you are currently married. First (given) name Date married (Month/Day/Year) Date of birth (Month/Day/Year) Country of birth none Place he or she entered the U.S. Date entered the U.S. (Month/Day/Year) His or her Alien Registration Number Present immigration status Date naturalized (Month/Day/Year) Place naturalized Present address (street and number) City and State or country 23. Complete the following if you were previously married. Total number of times you have been married. Name of prior husband or wife Date of marriage (Month/Day/Year) Date marriage ended (Month/Day/Year) How marriage ended INS status Alien none Citizen Alien Citizen Alien Citizen 24. Complete the following if your present husband or wife was previously married. Total number of times your husband or wife has been married. Name of prior husband or wife Date of marriage (Month/Day/Year) Date marriage ended (Month/Day/Year) How marriage ended INS status Alien Citizen Alien Citizen Alien Citizen 25. Complete all columns for each of your children. (If child lives with you, state \"with me\" in Location column; otherwise, give the City and State of that child's residence.) Indicate your total number of children. Given name Date of birth Country of birth Date of entry Port of entry Location Alien Registration No. Sex u.s. Male SONIA 01/08/34 EL SALYADOR 02/24/58 Los AngElES AIRPORT CiTiZEN Female Male Female Male Female Male Female Male Female Male Female Male Female 26. Complete the following with regard to each absence you have had from the United States for a period of six months or less since you entered for permanent residence. (If none, write \"None\".) Ship, airline, railroad or bus company, or other means used to return to the United States. Returned at (Place or port of entry) Date departed Date returned AiRPLANE Los ANGELES 1977 12-12-1979 2-25-86 4-29-86 27. Complete the following with regard to each absence you have had from the United States for a period of six months or more since you entered for permanent residence. (If none, write \"None\") Ship, airline, railroad or bus company, or other means used to return to the United States. Returned at (Place or port of entry) Date departed Date returned MIEBAIEM Form N-400 (12/05/86) N Page 2" + }, + { + "id": "A10712436_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization and Citizenship Questionnaire, Form N-400 ( (12/05/86) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1933, 1945] + } + }, + "anumber": "A10712436", + "full_text": "28. The law provides that you may not be regarded as qualified for naturalization, a) knowingly committed any crime for which you have not been arrested? if you knowingly committed certain offenses or crimes, even though you may Yes No not have been arrested. Have you ever, in or outside the United States: b) been arrested, cited, charged, indicted, convicted, fined or imprisoned for (If you answer \"Yes\" to a) or b), give the following information as to each breaking or violating any law or ordinance, including traffic regulations? incident.) Yes No Where (City, State and Country) Date of Offense Nature of Offense Outcome of case, if any 29. List your present and past membership in or affiliation with every organization, association, fund, foundation, party, club, society or similar group in the United States or in any other place, and your foreign military service (If none, write \"None\".) Name of organization Location of organization Membership from Membership to 30. Are you now, or have you ever, in the United States or in any other place, been 34. During the period of March 23, 1933 to May 8, 1945, did you ever order, incite, a member of, or in any other way connected or associated with the assist, or otherwise participate in the persecution of any person because of Communist Party? (If \"Yes\", attach full explanation) race, religion, national origin, or political opinion? Yes No Yes No 31. Have you ever knowingly aided or supported the Communist Party directly, or 35. Were you born with, or have you acquired in some way, any title or order of indirectly through another organization, group or person? (If \"Yes\", attach full nobility in any foreign state? explanation) Yes No Yes No 36. Have you ever been declared legally incompetent or have you ever been 32. Do you now or have you ever advocated, taught, believed in or knowingly confined as a patient in a mental institution? supported or furthered the interests of Communism? (If \"Yes\", attach full Yes No explanation) Yes No 37. Are deportation proceedings pending against you, or have you ever been deported or ordered deported, or have you ever applied for suspension of 33. During the period March 23, 1933 to May 8, 1945, did you serve in, or were you deportation? in any way affiliated with, either directly or indirectly, any military unit, Yes No paramilitary unit, police unit, self-defense unit, vigilante unit, citizen unit, unit of the Nazi Party or SS, government agency or office, extermination camp, 38. When was your last federal income tax return filed? concentration camp, prisoner of war camp, prison, labor camp, detention (year) camp or transit camp, under the control or affiliated with: 39. Since becoming a permanent resident of the United States, have you filed an income tax return as a nonresident? (If \"Yes\", explain fully). a) the Nazi Government of Germany? Yes No Yes No 40. Since becoming a permanent resident of the United States, have you failed to b) any Government in any area occupied by, allied with, or established with file an income tax return because you regarded yourself as a nonresident? (If the assistance or cooperation of, the Nazi Government of Germany? \"Yes\", explain fully). Yes No Yes No Form N-400 (12/05/86) N Page 3" + }, + { + "id": "A10712436_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Application" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1987] + } + }, + "anumber": "A10712436", + "full_text": "41. Have you ever claimed in writing, or in any other way, to be a United States 49. Did you ever apply for exemption from military service because of alienage, citizen? conscientious objections, or other reasons? (If \"Yes\", attach a full explana- Yes No tion) Yes No 42. Have you ever deserted from the military, air or naval forces of the United States? 50. Did you ever register under United States Selective Service laws or draft Yes No laws? (If \"Yes\", complete the following) Yes No 43. Have you ever left the United States to avoid being drafted into the Armed Date registered Forces of the United States? Yes No Selective Service Number 44. Do you believe in the Constitution and form of government of the United States? Local Board Number Yes No Present classification 45. Are you willing to take the full oath of allegiance to the United States? (See instruction #5) Yes No 51. The law provides that you may not be regarded as qualified for naturalization, 46. If the law requires it, are you willing to bear arms on behalf of the United if, at any time during the period for which you are required to prove good moral States? (If \"No\", attach a full explanation) character, you have been a habitual drunkard; advocated or practiced Yes No polygamy; have been a prostitute or procured anyone for prostitution; have knowingly and for gain helped any alien to enter the United States illegally; 47. If the law requires it, are you willing to perform noncombatant services in the have been an illicit trafficker in narcotic drugs or marijuana; have received Armed Forces of the United States? (If \"No\", attach a full explanation) your income mostly from illegal gambling, or have given false testimony for Yes No the purpose of obtaining any benefits under this Act. Have you ever, 48. If the law requires it, are you willing to perform work of national importance anywhere, been such a person or committed any of these acts? (If you under civilian direction? (If \"No\", attach a full explanation) answer yes to any of these, attach full explanation.) Yes No Yes No This block is to be completed by the person preparing form, if other than You may, by law, change your name at the time you are naturalized. If you wish the applicant. to do so, please print or type that name below, or the name you want your certificate of naturalization issued under. / declare that this document was prepared by me at the request of the applicant and is based on all information of which / have any knowledge. Rosa Aminta Renderos Signature Signature of Applicant X Sania Immoney X 11536 E. Imperial Henry # 4 Address 16441 So Moorbrooka Mailing Address Norwalk, Cal. 90650 Cerritor Ca. 90701 (213) 929-2175 4-18-88 Telephone Number (213) 926- 5698 Date 4/18/88 Telephone Number Date Do not fill in blanks below these lines: This application must be sworn to before an officer of the Immigration and Naturalization Service. AFFIDAVIT / do swear that / know the contents of this application, comprising pages 1 to 4, Subscribed and sworn to before me by applicant at the preliminary investigation inclusive, and the supplemental forms thereto, (Form Numbers ) subscribed to by me; that the same are true to the best of my knowledge and At belief; that corrections numbered: to This day of 19 were made by me or at my request, and that this application was signed by me / certify that before verification of the above applicant stated in my presence he or with my full, true and correct name, so help me God. she had (heard) read the foregoing application, corrections therein and supplemental form(s) and understood the contents thereof. (Complete and true signature of applicant) (Naturalization Examiner) (Demonstrate applicant's ability to write English) Non Filed (Date, reasons) Form N-400 (12/05/86) N Page 4 GPO : 1987 o - 168-434" + }, + { + "id": "A10712436_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Notice of Naturalization Oath Ceremony, N-445A (" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1996] + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB #1115-0052 Immigration and Naturalization Service Notice of Naturalization Oath Ceremony Naturalization and Citizenship Branch File or A # 300 NORTH LOS ANGELES STREET A10 712 436 LES ANGELES, CA 90012 Date 7/20/1996 You are hereby notified to appear for a Naturalization Oath Ceremony at the DATE, TIME AND LACE SHOWN BELOW. Date 8/09/1996 RESA DOMINGUE RENDEROS Time 3:00 AR 984.3 RAMONA $ 17. #405 LIFLOWER CA 90706 Place LCS ARGELES CONVENT tun CENTER 1201 source LEVERON STREET You must bring the following with you: This letter, with ALL of the QUESTIONS ON THE REVERSE side answered in ink or on a typewriter. Alien Registration Card. Reentry Permit or Refugee Travel Document. Any immigration documents you may have. If the naturalization application is ON BEHALF OF YOUR CHILD (children), BRING your CHILD (children). If you cannot come to this ceremony, return this notice immediately and state why you cannot appear. In such case, please use the return address in the extreme upper left hand corner of this letter. You will be sent another notice of ceremony at a later date. You must appear at an oath ceremony to complete the naturalization process. Form N-445A (Rev. 5/23/94)Y IMPORTANT - PLEASE SEE REVERSE" + }, + { + "id": "A10712436_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Oath Ceremony,, N-445" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "Authority for collection of the information requested You should answer these questions the day you are to appear for the naturalization oath ceremony. These questions refer to actions on Form N-445 is contained in Sections 101(f), 316, 332, 335 since the date you were first interviewed on your Application for Naturalization. They do not refer to anything that happened before and 336 of the Immigration and Nationality Act (8 U.S.C. that interview. 1101 (f), 1427, 1443, 1446 and 1447). Submission of the After you have answered every question, sign your name and fill in the date and place of signing, and provide your current address. information is voluntary. The principal purposes for requesting the information are to enable examiners of the You must bring this completed questionnaire with you to the oath ceremony, as well as the documents indicated on the front, and give Immigration and Naturalization Service to determine an them to the Immigration employee at the oath ceremony. You may be questioned further on your answers at that time. applicant's eligibility for naturalization. The information requested may, as a matter of routine use, be disclosed to naturalization courts and to other federal, state, local or AFTER THE DATE you were first interviewed on your Application for Naturalization, Form N-400: ANSWERS foreign law enforcement and regulatory agencies, the Department of Defense, including any component thereof, 1. Have you married, or been widowed, separated, or divorced? (If \"Yes\" please bring documented the Selective Service System, the Department of State, the proof of marriage, death, separation or divorce.) 1. Yes No Department of the Treasury, the Department of 2. Have you traveled outside the United States? 2. Yes No Transportation, Central Intelligence Agency, Interpol and 3. Have you knowingly committed any crime or offense, for which you have not been arrested; or individuals and organizations in the processing of any have you been arrested, cited, charged, indicted, convicted, fined, or imprisoned for breaking or application for naturalization, or during the course of violating any law or ordinance, including traffic violations? 3. Yes No investigation to elicit further information required by the 4. H you joined any organization, including the Communist Party, or become associated or Immigration and Naturalization Service to carry out its functions. Information solicited which indicates a violation CO sted therewith in any way? 4. Yes No or potential violation of law, whether civil, criminal, or 5. Have you claimed exemption from military service 5. Yes No regulatory in nature, may be referred, as a routine use, to the 6. Has there been any change in your willingness to bear arms on behalf of the United States; to appropriate agency, whether federal, state, local or foreign, perform non-combatant service in the armed forces of the United States, to perform work of charged with the responsibility of investigating, enforcing or national importance under civilian direction, if the law require it? 6. Yes No prosecuting such violations. Failure to provide all or any of 7. Have you practiced polygamy,; received income from illegal gambling; been a prostitute, procured the requested information may result in a denial of the anyone for prostitution or been involved in any other unlawful commercialized vice; encouraged or application for naturalization. helped any alien to enter the United States illegally; illicitly trafficked in drugs or marihuana; Public Reporting burden for this collection of information is given any false testimony to obtain immigration benefits; or been a habitual drunkard? 7. Yes No estimated to average 5 minutes per response, including the time for reviewing instructions, searching existing data I certify that each of the answers shown above were made by me or at my direction, and that they are true and correct. sources, gathering and maintaining the data needed, and Signed at BEllFlowER CA. , on 8/9/96 completing and reviewing the collection of information. Send comments regarding this burden estimate or any other (City and State) (Date) aspect of this collection of information, including suggestions for reducing this burden to: U.S. Department of Justice, 9843 RAMONA ST., APT 405 Immigration and Naturalization Service, (Room 5304), Washington, DC 20536; and to the Office of Management (FuH Signature) (Full Address and ZIP Code) and Budget, Paperwork Reduction Project: OMB No. 1115- BELLFLOWER, CA. 90706 0052,; Washington, DC 20503." + }, + { + "id": "A10712436_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Certificate, N-550 REV. 6/91" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1913, 1996] + } + }, + "anumber": "A10712436", + "full_text": "No. 22915481 Personal description of holder INS RegistrationNo. A10 712 436 as of date of naturalization: I certify that the description given is true, and that the photograph affixed Dati of birth: FEBRUARY 28, 1913 hereto is a likeness of me. Sex: FEMALE Height: 5 feel 00 inches Complete and true signature of holder) Marital status: WIDOWED Be it known that, pursuant to an application filed with the Attorney General Country of former nationality: at: LOS ANGELES, CA EL SALVADOR The All orney General having found that: ROSA AMINTA DOMINGUEZ-RENDEROS then residing in the United States, intends to reside in the United States when so required by the Naturalization Laws of the United States, and had in all other respects complied with the applicable provisions of such naturalization laws and was entitled to be admitted to citizenship, such person having taken the oath of allegiance in a ceremony conducted by the U.S. DISTRICT COURT FOR THE CENTRAL DIST. OF CALIFORNIA at: LOS ANGELES, CA on:AUGUST 9, 1996 that such person is admitted as a citizen of the United States of America. 11:3 PUN) MABLE Bills LAW 10 COPY PRINT OR PHONOGRAPH THIS CERTIFICATE Daris meisines witche LAYERS AUTHORITY Commissioner of Immigration and Naturalization FORM N.550 REV. 6.91" + }, + { + "id": "A10712436_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Change of Name, N- 5 ( (1/96)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DISTRICT COURT SEAL OF THE us DISTRICT 8/9/96 CENTRAL DISTRICT OF CALIFORNIA 8- APPLICATION FOR CHANGE OF NAME DIST. OF As part of the naturalization process, you have the opportunity to legally change your name. If you would like to change your name, complete lines 1, 2, 3, and 4. Please print clearly and press firmly (USE INK ONLY). If you do not want to change your name, complete lines 1, 3, and 4 only, (WRITE \"N/A\" ON LINE 2). Name on your Alien Registration Card (Green Card): 1. Domingurz- Renderos Rosa Aminta (Last) (First) (Middle) Name you would like on your Naturalization Certificate (if different): 2. \"SAME\" (First) (Middle) (Last) 3. Alien Registration Card (Green Card) Number: A 10-712-436 4. Date of Birth: 2 / 28 / 1> (Month) (Day) (Year) IMPORTANT INFORMATION Your copy of this application, along with your Certificate of Naturalization, which you will receive upon taking the oath of allegiance, will verify that you elected to change your name. Your Certificate of Naturalization bears your new name as changed per Order of the Court. FOR OFFICIAL USE ONLY Granted Denied Dated: 5/21/196 N- 5 (1/96) *U.S.GPO 1996-779-934 INS (COPY)" + }, + { + "id": "A10712436_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Change of Name, N-5 (1/96" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DISTRICT COURT SEAL of THE us DASTRICT 8/9/96 CENTRAL DISTRICT OF CALIFORNIA f- APPLICATION FOR CHANGE OF NAME DIST. OF AND As part of the naturalization process, you have the opportunity to legally change your name. If you would like to change your name, complete lines 1, 2, 3, and 4. Please print clearly and press firmly (USE INK ONLY). If you do not want to change your name, complete lines 1, 3, and 4 only, (WRITE \"N/A\" ON LINE 2). Name on your Alien Registration Card (Green Card): 1. Domingurz- Renderos Rosa Aminta (Last) (First) (Middle) Name you would like on your Naturalization Certificate (if different): 2. SAMP (First) (Middle) (Last) 3. Alien Registration Card (Green Card) Number: A 10-712-436 4. Date of Birth: / 28 / 1> (Month) (Day) (Year) IMPORTANT INFORMATION Your copy of this application, along with your Certificate of Naturalization, which you will receive upon taking the oath of allegiance, will verify that you elected to change your name. Your Certificate of Naturalization bears your new name as changed per Order of the Court. FOR OFFICIAL USE ONLY Granted Denied Dated: 5/21/166. N-5 (1/96) *U.S.GPO 1996-779-934 APPLICANT (COPY)" + }, + { + "id": "A10712436_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: BIOGRAPHIC INFORMATION\\nForm Number: OMB No. 1115-0066" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Salvadoran" + } + } + }, + "anumber": "A10712436", + "full_text": "U.S. Department of Justice OMB No. 1115-0066 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY FILE NUMBER Renderos Rosa Aminta FEMALE 2-28-13 SALVADOREAN 10 712 436 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SAME NAHUIZALED EL SALVADOR C.A. 566-54-1023 (If. any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE. DominGuez RomuLo sonsonate, EL S a LV2DOR C.A. FATHER MOTHER(Maiden name) JuLiA CeLSA Renderos, same HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife. give maiden name) WIFE none FORMER HUSBANDS OR WIVES (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 11536 E. ImpERIaL Norwark CA. 12 79 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 13 C. OTe. 2-2 sonsonate EL SaLVaDor C 11 77 12 79 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE) LIST PRESENT EMPLOYMENT FIRST FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR none PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT DATE NATURALIZATION OTHER (SPECIFY): STATUS AS PERMANENT RESIDENT Rosal Aminta Renderos 4-18-88 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALFNABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) Form G-325 (Rev. 10-1-82) Y (1) Ident." + }, + { + "id": "A10712436_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-56 ( (11-1-56)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1957] + } + }, + "anumber": "A10712436", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service 458 S. Spring St. Los Angeles 13, Calif. September 19, 1957 PLEASE REFER TO THIS FILE NUMBER AR Rosa Aminta Renderos 3207 Sanborn Ave., Lynwood, Calif. Dear Madama Please call at the office listed below, at the time and place indicated, for an inter- view in connection with an official matter. It is important that you keep this appointment. If you are unable to do so, please notify us promptly, using the reverse side of this letter, and we will arrange another appoint- ment. You should bring this letter with you and present it at the location indicated below. Very truly yours, Richard C. Hoy Autg. DISTRICT DIRECTOR OFFICE AT: 458 So Spring St., Los Angeles, Calif. ROOM NO. 229 DATE AND HOUR 9:00 Aath Thursday, Septia 26, 1957 FLOOR NO. 2nd ASK FOR Mr. Trujillo REASON FOR APPOINTMENT interview regarding your. notice of non-receipt of Alien Registration Receipt Card. BRING WITH YOU: Your Passport and. exp: other Designation documentages n.have in your possession. G-56 (11-1-56) * GPO 972708" + }, + { + "id": "A10712436_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "UNITE ATES DEPARTMENT OF JUSTICE PENALTY FOR PRIVATE USE TO AVOIL IMMIG ON AND NATURALIZATION SERVICE HEAPTON PAYMENT OF POSTAGE, $300 IAN 23 7 1957 OFFICIAL BUSINESS CALIF A10 712 436 Rosa Aminta DOMINGUEZ-Renderos 1111 East Artesia Street Any Compton, California to All materials E POSTMASTER li thoughts DO NOT FORWARD OR TRANSFER 18 FORM 3547 REQUESTED" + }, + { + "id": "A10712436_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "COMPTON AN 24 12 30 p PM 1957 CALIF DEIVED 3 AM 10 38 RATION" + }, + { + "id": "A10712436_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1957] + } + }, + "anumber": "A10712436", + "full_text": "ALIEN REGISTRATION,NO.: 9291 IA HE UNITED STATES AS: (Check one) (Copy letter and number from registration receipt OR PERMANENT RESIDENT or other alien certification document) STUDENT OTHER (Specify) MY NATIONALITY IS EL SALVADOR Set 1 WAS BORN ON 28,7EB. 1917 (Date) MY NAME IS RENDEROS ROSA AMIN TA (Last) (First) (Middle) MY PRESENT ADDRESS IS: 3207 SANBORN AVE LYNWOOD SALIF (Street address or rural route) (City or post office) (State) (IF ABOVE ADDRESS IS TEMPORARY) I EXPECT TO REMAIN THERE YRS. MOS. MY LAST ADDRESS CALLE WAS: CHILE #6 Bo. CANDELARIA SAN SALVADOR, EL SAL. C.A. 5 (Street address or rural route) (City or post office) (State) I WORK FOR OR ATTEND SCHOOL AT St. FRANCIS HOSPITAL (Employer's name or name of school) 3630 IMPERIAL/HIGHUMYL YNWOOD, CALIF. (Street address) (City or post office) (State) I ENTERED THE UNITED STATES AT LOS ANGELES AIRPORT - ON JAN & 10 1957 (Port of entry into United States) (Date of entry) (IF NOT A PERMANENT RESIDENT) I WAS ADMITTED TO THE U. S. A. UNTIL OR RECEIVED AN EXTENSION OF STAY UNTIL (Date) DATE MAR 22,1957 (SIGNATURE) Roca aminta Renderso" + }, + { + "id": "A10712436_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "PLACE STAMP HERE DEPARTMENT OF JUSTICE Immigration and Naturalization Service 119 D Street NE. Washington 25, D. C." + }, + { + "id": "A10712436_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Government Printing Office, G-360A (Rev. 9-11-56)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Mexico"] + } + }, + "anumber": "A10712436", + "full_text": "1. Name (Last in CAPS) First RENDEROS, Rosa Aminta O Middle 2. No. Sndx. Code 3. Name under which admitted, Record created or Aliases A553 R536 4, Country of Birth 5. Date of Birth Month Day Year Mexico 6. Place of Entry NO RECORD 02 28 17 INDEX7. Date of Entry Alien Month Day Year LOS 01 10 57 8. Appl. Form No. or reason 9. Date Appl. Received 10. Date of Request for request es. AR-11 Visa m 04/10/57 11. Receiving FCO Symbol 12. Forwarding FCO Symbol 13. Date of Transfer LOS 14. REMARKS: Indices 3207 Sanborn Avenue Lynwood, California Form G-360A (Rev. 9-11-56) C. O. COPY FILE TRANSFER" + }, + { + "id": "A10712436_0028", + "page_index": 28, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0028/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "ALIEN INDEX APR 15 PM 4:32 RECEIVED" + }, + { + "id": "A10712436_0029", + "page_index": 29, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0029/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service, G-14" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1957] + } + }, + "anumber": "A10712436", + "full_text": "G-14 (3-5-56) UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service NR Initials: Date: Your communication is returned, as this office is unable to identify your case. Please fill in the blanks below and send this letter, together with your attached communication, back to this office. Your \"A-\" (Alien Registration) No. 9291 Any other file No., if known Your Full Name RENDEROS, ROSA AMINTA Complete Present Address 3207 SANBORN AVE.LVNWOOD, CAL . Former Address in U.S. Birthdate 7EB 28 1917 Birthplace NAHUIZAL.CO. Date of Entry JAN 10 1957 Place of entry LOS ANGELES AIRPORT Type of Entry (Temporary Visitor, Student, Permanent Residence Visa, Reentry Permit, etc.) RESIDENCE VISA Destination in U.S. as Shown on Entry Document 3207 SANBORN AVE LVNWOOD,CA2 Name Used at Time of Arrival RENDEROS, ROSA AMINTA Other Names Used at Any Time - If you filed an application, please also fill in below: Type of Application Date of Application MAR 22 1957 Address you showed on application 3207 SANBORN AVE LYNWOOD, CAL GPO 971271" + }, + { + "id": "A10712436_0030", + "page_index": 30, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0030/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FOREIGN SERVICE MEDICAL EXAMINATION OF VISA APPLICANTS, FS-398" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1953, 1957, 1956] + } + }, + "anumber": "A10712436", + "full_text": "Form FS-398 PLACE (Rev. May 1953) FOREIGN SERVICE San Salvador UNITED STATES OF AMERICA DATE MEDICAL EXAMINATION OF VISA APPLICANTS Dec. 13th.1956 CITY COUNTRY At the request of the American Consul at San Salvador El Salvador NAME AGE SEX I certify that on the above date I examined Rosa Aminta Renderos 39 F I examined specifically for evidence of any of the following conditions: CLASS A: TUBERCULOSIS (in any form) LEPROSY (Hansen's Disease) DANGEROUS CONTAGIOUS DISEASES: Actinomycosis Granuloma Inguinale Ringworm of scalp Amebiasis Keratoconjunctivitis infections Schistosomiasis Blastomycosis Leishmaniasis Syphilis, infectious stage Chancroid Lymphogranuloma Venereum Trachoma Favus Mycetoma Trypanosomiasis Filariasis Paragonimiasis Yaws Gonorrhea MENTAL CONDITIONS: Feeble-mindedness Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Epilepsy (Idiopathic) (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. (Check number (1) below or complete number (2) ) My examination, including the X-ray and other reports below, revealed: (1) No defect, disease, or disability (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class-A, B, or C-diagnosis, and pertinent details*) : Passed JAN 9 - 1957 U. S. QUARANTINE STATION Halmmen BROWNSVILLE TEXAS BY: QUARANTINE INSPECTOR EOR: MED. OFFICER IN- CHARGE- Chest X-ray report Negative from Dr. Esquivel Blood serological report Negative from Dr. Bloch Urinalysis report Normal from Dr. Bloch SIGNATURE OF MEDICAL EXAMINER Think TITLE *Continue on reverse side if necessary. GPO 945912" + }, + { + "id": "A10712436_0031", + "page_index": 31, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0031/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa DE EL SALVADOR - CONTE DE CUENTAS - QUARENTA CENTANOS, 165847" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "165235 1956 SECURITY DE EL SECURITY SALVADOR 5 oo( 00 I , CORTE DE CUENTIS C NEW CUARENTA CENTAVOS T.R. 165847 EL INFRASCRITO ALCALDE MUNICIPAL DE ESTA CIUDAD, I 2 HACE CONSTAR: que no se encuentra en esta Oficina la Partida de Naimien- 25 25 INTERNATIONAL 3 to de la señora ROSA AMINTA RENDEROS, por haber sido incendiado en Archivo Munici- de SECURITY pal de esta Ciudad el dia veintitres de Enero del affo de mil novecientos treinti- 4 25 dos, por las hordas comunistas que invadieron este lugar en aquella feoha .Pero por 5 VEINTICINCO CENTAV B datos recabados fidedignamente en esta Oficina, dicha señora Renderos, mació en es- 7 ta Ciudad de Nahuizalco,allá por el 200 de mil novecientos diez y siete, siendo - 8 hija dlegitima de Celsa Renderos, yra fallecida.- Ige solicitud do parte interesada, expido la presente, en la Alcaldia Municipal :Nehui-- 10 00.8 las quince horas del dia once de Octubre de mil novecientow circuenta y seis - Enendado-ilegitima.Vale.- 11 12 families Jose Gilbert Larin, 13 Farmer Alcalde Myniciapl.- Alejandro Madrid Cierra.- 14 are SONSOWATE Secretario Mynicipal.- 15 16 17 over SONSOMAIE 18 19 20 21 22 23 24 25" + }, + { + "id": "A10712436_0032", + "page_index": 32, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0032/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "CERTIFICADO, T.R. 165846" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "5236 SECURITY DE EL SECURITY I CORTE DE CUENTIS NEW CUARENTA CENTAVOS 25 25 T.R. 165846 de C SECURITY 25 1 El infrascrito Alcalde Municipal 2 CERTIFICA: que a fojas tres fronte y vuelto de las diligencias seguidas or esta Oficina, solicitud de la señora Rosa Aminta Renderos mayor de edad, de O- 3 ficios domesticos y de este domicilio,a efecto de comprobar su buena conducta, 4 se encuentra el auto y resolución que dice : Alcaldia Municipal de 12 Ciudad de 5 B Nahuizalco, a las quince horas del dia primero de Octubre de mil novecientos oin 7 cuenta y seis. -Vistas las declaraciones unanimes V contestes de los testigos ha 8 bilez señores Pablo Albetto Magafia y don Francisco Ramirez Alvarado, ambos mayo 9 res de edad, oficinistas y de este Origen y domioilio, quienes en lo sustancial 10 de sus declaraciones que corren agregadas a las mismas diligencias, dicen conocer desde su tierna infancia a la señorita Rosa Aminta Renderos quien es de treinti- 11 mueve años de edad, de Oficios domésticos, de este Origen y domicilio, hija de Cel- 12 sa Renderos, constándoles que la expresada señora Renderos todo el tiempo que tie 13 nen de conocerla ha observado y observa muy buena conducta, siendo dedicada OX- 14 clusivamente al trabajo honesto y muy respetuosa con las autoridades y particu- 15 16 lares, el infrascrito Alcalde en vista de 10 dicho por los testigos y constándo- 17 les de vista y oídas por ser de este mismo Origen,tienese comprobada la buena conducta de la señora Rosa Aminta Renderos, désele certificación de este auto 18- 18 19 ra que le sirva de legal constancia Larin.-Ante mi-Alejandro Madrid Cierra.- Srio. 20 Rubricadas.- 21 ES CONFORME con su Original con el oual se confrontó,y para que sirva de legal 22 comprobante, extiendo la presente,en la Alcaldia Municipal Nahuizalco,a las diez 23 y seis horas del dia once de Octubre de mil novecientos cincuenta y seis.-Emen- dado-Alberto-para- Alejandro.Vale - 24 25 Jose Gilberto Larin, MAHURZAICO Statement AI Lajandro Madrid Cierra, Alcalde Minicipal.- Secretario Murioipal- Li" + }, + { + "id": "A10712436_0033", + "page_index": 33, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0033/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "SOLVENCIA DE BUENA CONDUCTA PARA SALIR DEL PAIS IM EL INFRASCRITO JEFE DE LA SECCION DE INVESTIGACIONES ESPECIALES, r HACE CONSTAR: que a ROSA AMINTA RENDEROS. de 39 años de edad, profesión u oficio Empleada 1 hij a leg. O ileg. de Rómulo Dominguez y de Celsa Renderos originari ade Nahuizalco, Depto. de el Sonsonate , con residencia en Calle Chile N°. 6, B°. Candelaria, San Salvador. su Cédula de Vecindad es N° 450850, extendida en la Acladia Muni- rt cipal de Sonsonate el dia 24 de Febrero de 1956. or er , después de haber revisado los libros [a led que al efecto se llevan en los A archivos del Departamento de In we vestigaciones, se ha establecido que no le apareçen anotaziones denfavorables a su conducta. En consecuencia y para los efectos IS de VISA de pasaporte en el Consulado de. Estados Unidos de Norte America en esta capital; se extiende la presente SOLVFNCIA DE BUENA CONDUCTA por duplicado, en la Jefatura de la Sección de Investigaciones Especiales de la Policía Nacional de El Salvador, a los cinco días del mes de Octubre de mil novecientos cincuenta y seis. . (f) d 2 AVESTIGACIONES Comdte. 1° LUIS LARA GAVIDIA Jefe de la Secc. de Inv. Esp. (f) M Tulio A. Gutierrez Secretario, jlr/M.P.G. of n" + }, + { + "id": "A10712436_0034", + "page_index": 34, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0034/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Foreign Service of the United States of America, I- 980834" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1956] + } + }, + "anumber": "A10712436", + "full_text": "1 FOREIGN SERVICE OF THE UNITED STATES OF AMERICA Bureau Budget No. 47-R108.2 APPLICATION FOR IMMIGRANT VISA I- 980834 AND ALIEN REGISTRATION I, the undersigned, being duly sworn, state the following facts regarding myself and hereby make application for an IMMIGRANT VISA and ALIEN REGISTRATION under the Immigration and Nationality Act to the American Embassy Consul ar Section at San Salvador, E1 Salvador 1. Family name Given name Pi Initial 2. Place and date of birth Age RENDEROS Nahuizalco Sonsonate, E1 Salvador Rosa Aminta D. February 28, 1917 39 3. Other names by which I have been known 0/8 MAS ALICE GREENOUGH 4. Last permanent residence comption COLLEGE IIII EAS ARTESIMST Calle Chile No. 6 B, Barrio Candelaria A San Salvador, El Salvador 5. Address in the United States CompToN CALIFORNIA 6. Name and address of person to whom destined, if any 1151 So. Van Ness Ave. San Francis Call Jose Rafael Brito Same as No. 5 7. Name and address of nearest relative in home country 8. Travel documents presented Passport No. 29086 Sonia Renderos Cea (daughter) Same as No.4 Issued by Ministry of Foreign Affairs of El Salvador on October 11, 1956 9. Hair 10. Eyes 11. Height 12. Weight 13. Nationality 15. Race 17. Sex 18. Marital status Salvadoran Span. Amari can - M Married Single brown black 14. Complexion 16. Ethnic Classification 5 ft. 1 in. 122 lbs. medium Spanish F Widowed Divorced 19. Occupation 20. Distinguishing marks 21. Languages spoken, read, or written Employee none Spanish only 22. Intended United States port of entry 23. Final destination 24. I have (a) (no) 25. Purpose of going to the United States through ticket to Los Angeles, California San Francisco destination to reside 26. Places of previous residence None 27. Names and places of residence of spouse and minor children 28. Name and address of father 29. Name and address of mother Romulo DOMINGUEZ IND Sonsonate, E1 Salvador Celsa RENDEROS - Deceased 30. I claim to be a fnonquota immigrant and my claim is based on the 31. Available documents required by the Immigration and Nationality Act are filed herewith and made a part hereof, as follows (Sec. 222 (b)): following facts: I was born in El Salvador AFFIDAVITS OF SUPPORT: Birth, Medical and Police certificates 32. I have never been: Arrested; convicted; in prison; in an almshouse; treated in an institution, hospital, or other place, for insanity or other mental disease; the beneficiary of a pardon or amnesty, except as hereinafter stated: Never 33. I have never applied to any American consular officer, either formally or informally, for a visa or other documentation as an immigrant or nonimmigrant, except as hereinafter stated: Never 34. I have never been excluded, deported, or removed from the United States at Government expense, except as hereinafter stated: Never II 16-67444-2 (Application continued on reverse side)" + }, + { + "id": "A10712436_0035", + "page_index": 35, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0035/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States of America Immigrant Visa and Alien Registration, 2698" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956, 1957] + } + }, + "anumber": "A10712436", + "full_text": "2 35. I intend to remain in the United States for the following period of time: 36. I have previously been in the United Staw Indefinite never 37. I have had the following excludable clauses explained to me and state that I am not, except as hereinafter noted, a member of any one of the follo classes of individuals excluded from the United States under the Immigration and Nationality Act: (1) persons who have had one or more attacks of insanity; (2) persons who are narcotic drug addicts or chronic alcoholics; (3) persons who are afflicted with tuberculosis in any form, leprosy, or any dangerous contagious disease (4) persons afflicted with any other disease, physical defect or disability which is of such a nature as may affect such persons' ability to earn a living unless affirma- tively established that they will not have to earn a living; (5) paupers, professional beggars or vagrants; (6) persons convicted of, or who have admitted committing, a crime involving moral turpitude, or committing acts constituting the essential elements of such a crime, with the exceptions noted in the Act; (7) persons con- victed of two or more offenses for which the aggregate sentences to confinement actually imposed were 5 years or more; (8) polygamists, practitioners or advocates of polygamy; (9) prostitutes, persons who have engaged in prostitution, persons coming to the United States solely, principally or incidentally to engage in pros- titution, procurers and persons attempting to procure, or persons who have procured or attempted to procure or import, prostitutes or persons for the purpose of prostitution or for any other immoral purpose, or persons who are or have been supported by or receive or have received the proceeds of prostitution, or persons coming to the United States to engage in any other unlawful commercialized vice; (10) persons coming to the United States to engage in any immoral sexual act; (11) persons coming to the United States to perform skilled or unskilled labor who do not meet the requirements of the Act; (12) persons likely to become public charges; (13) persons excluded from admission and deported, or persons arrested and deported, or persons fallen into distress and removed, or persons removed as enemy aliens, or persons removed at Government expense, who do not have the Attorney General's permission to reapply for admission; (14) stowaways; persons procuring, or who have sought to procure, visas or other documentation, or who seek to enter the United States by fraud or willful misrepresentation of a material fact; (15) immigrants not possessing valid unexpired immigrant visas, reentry permits, border crossing identification cards or other documentation required by the Act, and a valid unexpired passport or other suitable travel document or document of identity and nationality; (16) quota immigrants possessing visas not issued in compliance with the quota provisions of the Act; (17) persons ineligible to citizenship of the United States, or persons who have departed from or have remained outside the United States to evade or avoid military training or service in time of war or national emergency; (18) persons convicted of a violation of any law or regulation relating to the illicit narcotics drug traffic or of any law or regulation governing commerce or manufacture of narcotic drugs as provided in the Act; (19) persons who seek admission-from foreign contiguous territory or adjacent islands after arriving therein by nonsignatory or noncomplying transportation lines; (20) persons seeking to enter the United States solely, principally, or incidentally to engage in activities which would be prejudicial to the public interest, or endanger the welfare, safety, or security of the United States; (21) persons who are, or at any time have been, anarchists, Communists, or other political subversives, as specified in Sec. 212 (a) (28) of the Act; (22) persons who after entering the United States probably would engage in activities prohibited by the laws of the United States relating to espionage, sabotage, public disorder, or in any other activity subversive to the national security, or engage in any activity a purpose of which is opposition to, control or overthrow of, the United States Government by force, violence or other unconstitutional means, or join, affiliate with, or participate in the activities of any organization registered or required to be registered under Sec. 7 of the Subversive Activities Control Act of 1950; (23) persons accompanying other persons ordered excluded, deported, and certified to be helpless from sickness or mental or physical disability or infancy pursuant to Sec. 237 (e) of the Act, whose protection or guardianship is required by the persons excluded and deported; (24) persons who at any time, knowingly and for gain, encouraged, induced, assisted, abetted, or aided any other alien to enter or try to enter the United States in violation of law. 38. I have had the exceptions to the foregoing excludable classes explained to me and claim to be exempt from exclusion on account of membership in the class or classes noted above because: Service No. 2768 Tariff Item No. 7 Rosa liminta (Signature of applicant) Rendero D Fee Raid: U.S.$ 5.00 [SPACIFUL 12.50 Subscribed and sworn to before me this 21st. day of December 19 56 Edwin G. Goswell Fee No. Edwin Go Croswell, Vice-Consul of the United States of America. Fee: $5. UNITED STATES OF AMERICA BRO 141 IMMIGRANT VISA AND ALIEN REGISTRATION PORT OF Brownsville, Texas IMMIGRANT CLASSIFICATION: I certify that the immigrant named herein arrived in the United States at this port on the JAN 9 1957 Nonquota 0-1 Quota on N6/10 C (Symbol) (Symbol) (Day, month, year) American Embassy (Consular Section) (admitted and was inspected by me and detained further inquiry by special inquiry officer at San Salvador, El Salvador under Section the Immigration and Nationality Act. IMMIGRANT VISA NO. 96 - (State quota) (Immigration officer) Issued on 21 December, 1956 ACTION OF SPECIAL INQUIRY OFFICER (Day, month, year) The immigrant named herein was (admitted) (excluded) and and no appeal appeal taken taken The validity of this visa expires midnight, E. S. T., at the end of under Section of the Immigration and Nationality Act. 21 April, 1957 (Day, month, year) Date Nationality (if stateless, SO state, and give previous nationality) (Special Inquiry officer) Salvadoran This visa is issued under Section 221 of the Immigration and Nationality Act ACTION ON APPEAL and upon the basis of the facts stated in the application. This visa does not entitle the bearer to enter the United States if, upon arrival at a port of entry Admitted Excluded Date of the United States, he is found to be inadmissible under the law. JAN 15 1957 Servi e No. 2769 Teriff [SEAL] No. 7 Edwin G. Goswell Form I-1.51 issued Fee Paid U.S.$20.00 Edwin G. Croswell Local. Cy equiv. 50.00 Vice-Consul of the United States of America. Fee No. Fee: $20. e h al Passport No. 29086/9291 or other travel document (describe) r. Issued- To Rosa Aminta Renderos By Ministry of Foreign Affairs of El Salvador On ld October, 1956 Expires 11 October, 1957 U. S. GOVERNMENT PRINTING OFFICE 16- 7444-1" + }, + { + "id": "A10712436_0036", + "page_index": 36, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0036/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436" + }, + { + "id": "A10712436_0037", + "page_index": 37, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0037/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "THE FOREIGN SERVICE OF THE UNITED STATES OF AMERICA OFFICIAL BUSINESS \"TO BE OPENED ONLY BY A UNIT ED STATES IMMIGRATION OFFIC ER\"" + }, + { + "id": "A10712436_0038", + "page_index": 38, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0038/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Certification of Good Moral Character and Employment for Rosa Aminta Renderos Dominquez" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "November 5th, 1956 4317 Tweedy Blvd. South Gate, California TO WHOM IT MAY CONCERN This is to certify that ROSA AMINTA RENDEROS DOMINQUEZ is my cousin. I have always found Rosa to be of good moral character and an industrious worker. I have found employment for her with Mrs Alice Greenough, Director of Vocational Nurse Program at Compton Junior College, and have made arrangement for her financial security should she be given admission to the United States. Yous very sincerely Martha Dominguez Smith Martha Dominquez Smith" + }, + { + "id": "A10712436_0039", + "page_index": 39, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0039/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "COMPTON COLLEGE, 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "COMPTON COLLEGE 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA LUCILE DOUGLASS PAUL MARTIN Dean President November 5th, 1956 Rosa Aminta Renderos Dominquez Calle Chile # 6 Bo. Candelaria San Salvador, E. Salvador, C.A. Dear Madams On the recommendation of your oousin and my student, Martha Dominques Smith, I wish to offer you employment doing housework. The remuneration, contingent on the amount of work hours you wish to put in, could amount to thirty=two dollars a week and your board and room. I would appreciate hearing from you as soon as possible. Yours very sincerely, Sheenough R.N Alice Greenough, R.N., M.A. AG/hf Director of Vocational Nurse Program" + }, + { + "id": "A10712436_0040", + "page_index": 40, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0040/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa DE EL SALVADOR EN LA AMERICA CENTRAL, CORTÉ DE CUENTAS" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1955] + } + }, + "anumber": "A10712436", + "full_text": "No 019578 1955 SALVADO, DOR ENLA DE EL SECURITY SIGNATURE AMERICAN I CORTE DE CUENTIS HOMELAND CINCO COLONES CINCUENTA CENTAVOS T.R. 019487 I Número noventidos. -En la ciudad de San Salvador, a las diez horas del 2 día ocho de octubre de mil novecientos cincuentiseis. -Ante mi,Nicolás 3 Rogerio Melara,Abogado y Notario, de este domicilio, y testigos hábi- 4 les y de mi conocimiento que adelante diré, comparece don Rafael Ren- deros Menéndez, quien firma \"Raf. Renderos M. If de cincuentinueve años 5 de edad, Tenedor de Libros, de este domicilio,con cédula de vecindad- 6 7 número setecientos sesenticuatro mil trescientos cuatro Serie \"A\" y- 8 dice:que para asegurar la realización del viaje que la señora Rosa A- 9 minta Renderos desea hacer a Estados Unidos de America y la posibili- 10 dad de que permanezca en ese país durante el tiempo que fuere necesa- ric o sea por el tiempo que se le permita residir en aquel país por- 11 las Autoridades correspondientes, el compareciente se compromete a - 12 13 pagar los gastos necesarios para su regreso a este país, cuando desee regresar Q cuando expire o sea cancelado el permiso de permanencia - 14 que las Autoridades americanas lo concedan;que formalizan este com- 15 promiso de pago de los gastos indicados porque quiere facilitar la - 16 entrada y permanencia de su sobrina legítima Rosa Aminta Renderos, , pa- 17 ra que pueda permanecer en los Estados Unidos de America el tiempo - 18 que le sea permitido y quiere asegurar que en ningún caso será una - 19 carga para dicho Estado;que se considera ser persona suficientemente 20 abonada para contraer este compromiso porque es propietario de varias 21 fincas de café en la jurisdicción de Nahuizalco del Departamento de- 22 Sonsonate, habiendo vendido a la Casa Goldtree Lieves y Compañía de 23 la cosecha del año próximo pasado la suma de nneve mil seiscientos - 24 colones, según constancia que tuve a la vista y que se agregará al tes 25" + }, + { + "id": "A10712436_0041", + "page_index": 41, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0041/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Timonio de esta escritura" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10712436", + "full_text": "I timonio de esta escritura; dichas fincas están inscritas a los números 2 ciento sesentisiete del Tomo ciento dos ciento noventisiete del Tomo 3 ciento treintiseis, cien del Tomo ciento diecinueve setentiuno del To- 4 mo ochenticuatro, ciento dos y ciento tres del Tomo ochenta y ciento- 5 cusrentinueve del Tomo noventinueve, todos del Registro de la Propie- e dad del Departamento de Sonsonate; que además le pertenece una casa- 7 urbana de sistema mixto, situada en la ciudad de Nahuizalco, inscrita- 8 al número doscientos nueve del Tomo sesenta del Registro de la Pro-- 9 piedad de Sonsonate las propiedades de café las valua el comparecien- 10 te en la suma de SESENTA MIL COLONES y la propiedad urbana en refe-- 11 rencia en VEINTICINCO MIL COLONES produciendo de renta anual cuatro- 12 cientos ochenta colones y además trabaja en el Tribunal de Apelacio- nes devengando el sueldo anual de siete mil ochocientos colones.-Pre 13 14 sente la señora Rosa Aminta Renderos, quien firma de la misma manera, 15 de treintinueve años de edad, Empleada de Comercio, de este domicilio, con cédula de vecindad número cuatrocientos cincuenta mil ochocientos 16 17 cincuenta Serie \"B\" y dice: que acepta las obligaciones de pago que- por esta escritura contrae su mencionado tío y que de acuerdo con el 18 19 cede y transfiere al Gobierno de Estados Unidos de America su derecho 20 personal de exigir de su mencionado tio, el cumplimiento de esas obli 21 gaciones por el contraídas. -En este estado el compareciente don Ra-- 22 fael Renderos Menéndez manifiesta: que está de acuerdo con lo expre- sado por su sobrina y que se dá por notificado de la cesión y traspa- 23 24 SO que de su derecho de exigir el cumplimiento de las expresadas Q-- 25 bligaciones de pago que hace ella al Gobierno de los Estados Unidos-" + }, + { + "id": "A10712436_0042", + "page_index": 42, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0042/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "REPUBLICa de El Salvador - Corte de Cuentasas, 253875, T.R. 253199" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "No 253875 1956 DE EL AlVADOR DEPARTMENT 100 REVENUE $300 I CORTE DE CUENTIS HOMELAND NEW QUINCE CENTAVOS T.R. 253199 paid de América. Expliqué a los otorgantes a quienes conozco, los efectos 2 legales de esta escritura y leído que les fué por mi lo escrito en . 3 un solo acto no interrunpido, en presencia de los testigos señores 4 Doctor Victor Manuel Marticcrena, de cuarentiseis años de edad, Aboga 5 do y don Jose Manuel Mármol, de cuarenta años de edad, Oficinista,an e bos de este domicilio, ratificaron su contenido por estar redactado a 7 conforme a sus voluntades y todos firmamos. De todo lo cual doy fé.- gEnmendado-sistema-el-el-Vale.-Testado-Dirección General-No Vale.-En- 8 tre lineas-la señora-Vale.-Raf.Renderos M. -Rosa Aminta Renderos. -V. 9 10 M. Marticorena. -J osé Manuel Mármol. -Ante mi, N.Rogerio Melara. -Rubri- cada.- - - 11 Pasó ante mi, de los folios veintitres vuelto al folio veinti-- 12 13 cinco frente del Libro Segundo de mi Protocolo que llevo en el CO 14 priente año;y para los efectos de ley expido, firmo y sello el pre-- sente testimonio en la ciudad de San Salvador, a nueve de octubre de 15 16 mil novecientos cincuentiseis. -Enmendado-A-desee-nueve-las-producie: do-Vale. - 17 18 Dz. NOTARIO ROGERID SAN GETARA 19 40% de El Salmede 20 21 22 23 24 25" + }, + { + "id": "A10712436_0043", + "page_index": 43, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0043/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM DE CASA GOLDTREE, La Idea 2-54" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "MEMORANDUM San Salvador, Octubre 8 de 1956 DE CASA GOLDTREE Señor don LIEBES & CO. SAN SALVADOR Rafael Rendero Menéndez EL SALVADOR, C. A. Pte.- TELEFONO: 1300 APARTADO 195 La Idea 2-54 Muy señor nuestro: por medio de la presente nos permitimos confirmarle que este año le hemos comprado café maduro por valor de $9,600. / segun contrato N°112. de Agencia de Juayua. Quedamos de Ud. Atentos y seguros servidores. CASA GOIDTREE Liebes & C° Mayma" + }, + { + "id": "A10712436_0044", + "page_index": 44, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0044/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Certification of Employment and Good Moral Character for Rosa Aminta Renderos Dominquez" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "November 5th, 1956 4317 Tweedy Blvd South Gate, California To Whom It May Concern : This is to certify that Rosa Aminta Renderos Dominquez is my cousin and is of good moral character. I have secured employment for her with Mrs. Alice Greenough, R.N. Director of Vocational Nurse Program at Compton Junior College and have made all arrangements for her financial security should she be allowed admission to the United States. Yours very sincerely, Martha Drivinguy Smith Martha Dominquez Smith" + }, + { + "id": "A10712436_0045", + "page_index": 45, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10712436_0045/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "COMPTON COLLEGE, 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["El Salvador"] + }, + "years": { + "ms_years_nlp_v1": [1956] + } + }, + "anumber": "A10712436", + "full_text": "COMPTON COLLEGE 1111 EAST ARTESIA STREET COMPTON, CALIFORNIA LUCILE DOUGLASS PAUL MARTIN November 5th, 1956 Dean President Rosa Aminta Renderos Dominquez Calle Chile # 6 Bo. Candelaria San Salvador, E. Salvador, C.A. Dear Madam: On the recommendation of your cousin and my student, Martha Dominquez Smith, I wish to offer you employment doing housework. The remuneration ,contingent on the amount of work hours you wish to put in, could amount to thirty two dollars a week and your board and room. I would appreciate hearing from you as soon as possible. Yours very sincerely, Alice Greenough R.N.,M.A. Alice Greenough, R.N. 9 M.A. Director of Vocational Nurse Program AG/hf" + }, + { + "id": "A19529822_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "by NAVA, PHOTOGRAPHS DURUPAD, WADHWANI A# A19 529 822" + }, + { + "id": "A19529822_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023" + }, + { + "id": "A19529822_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023. DURUPADI WADHWANI A# A19 529822" + }, + { + "id": "A19529822_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023" + }, + { + "id": "A19529822_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DURUPADI WADHWANI A# A19 529 822" + }, + { + "id": "A19529822_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U.S.I.N.S. FEE RECEIPT A CENTURY OF SERVICE 03/27/97 STORE1 WADHWANI # 19529822*# N 400 M 95.00 SUBTTL 95.00 TTLAMT 95.00 PC 95.00 CHANGE 0.00 1 ITEMS 0030102 7 14:54" + }, + { + "id": "A19529822_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Naturalization, N-4" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1906, 2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U.S. Department of Justice OMB #1115-0009 Immigration and Naturalization Service Application for Naturalization START HERE - Please Type or Print FOR INS USE ONLY Returned Part 1. Information about you. Receipt Family Name WADHWANI Given Middle Name DURUPADI Initial J U.S. Mailing Address - Care of N/A Resubmitted Street Number Apt. and Name 57 MANGER ROAD # NONE City CEDAR KNOLLS County MORRIS State ZIP NEW JERSEY Reloc Sent Code 07927 Date of Birth 11/28/1906 Country (month/day/year) at Birth PAKISTAN Social Security # 120-54-8105 A # A19 529 822 Reloc Rec'd Part 2. Basis for Eligibility (check one). a. 1 have been a permanent resident for at least live (5) years b. I have been a permanent resident for at least three (3) years and have been married to a United States Citizen for those three years. Applicant Interviewed C. I am a permanent resident child of United States citizen parent(s) d, I am applying on the basis of qualifying military service in the Armed Forces of the U.S. and have attached completed Forms N-426 and G-325B At interview e. Other. (Please specify section of law) request naturalization ceremony at court Part 3. Additional information about you. Remarks Date you became a permanent Port admitted with an immmigrant visa or INS Office resident (month/day/year) where granted adjustment of status. 11/2/72 NYC Citizenship INDIA Name on alien registration card (if different than in Part 1) Other names used since you became a permanent resident (including maiden name) BHAGWANANI Sex Male Height Marital Status: Single Divorced Female 4'8\" Married Widowed Can you speak, read and write English ? No Yes. 58/20 Action Absences from the U.S.: Have you been absent from the U.S. since becoming a permanent resident? No Yes. If you answered \"Yes\" complete the following, Begin with your most recent absence. If you need more room to explain the reason for an absence or to list more trips, continue on separate paper. Did absence last Date left U.S. Date returned 6 months or more? Destination Reason for trip Yes No Yes No To Be Completed by Attorney or Representative, if any Yes No Fill in box if G-28 is attached to represent the applicant Yes No VOLAG# Yes No Yes No ATTY State License Form N-400 (Rev 07/17/91)N Continued on back." + }, + { + "id": "A19529822_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Information about your residences and employment., N-4 (001" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Part 4. Information about your residences and employment. A. List your addresses during the last five (5) years or since you became a permanent resident, whichever IS less Begin with your current address. If you need more space, continue on separate paper: Dates (month/day/year) Street Number and Name, City, State, Country, and Zip Code From To 57 MANGER ROAD, CEDAR KNOLLS, NJ, MORRIS 07927 3/21/85 DATE B. List your employers during the last five (5) years. List your present or most recent employer first. If none, write \"None\". If you need more space, continue on separate paper. Employer's Name Employer's Address Dates Employed (month/day/year) Occupation/position Street Name and Number City, State and ZIP Code From To NONE Part 5. Information about your marital history. A. Total number of times you have been married / . If you are now married, complete the following regarding your husband or wife. Family name Given name Middle initial Address Date of birth (month/day/year) Country of birth N/A Citizenship Social A# (if applicable) Immigration status (II not a U.S. citizen) Security# Naturalization (If applicable) (month/day/year) Place (City, State) If you have ever previously been married or if your current spouse has been previously married, please provide the following on separate paper: Name of prior spouse, date of date ended, how ended and status prior spouse. marriage, marriage marriage immigration of (PLEASE SCEATTACHED SHEET) Part 6. Information about your children. B. Total Number of Children 9 . Complete the following information for each of your children. If the child lives with you, state \"with me\" in the address column; otherwise give city/state/country of child's current residence. If deceased, write \"deceased\" III the address column. If you need more space, continue on separate paper. CEDYK w/o Full name of child Date of birth Country of birth Citizenship A Number Address SARASWATI WADHWAN 8/13/31 PAKISTAN U.S.A. N/A 57 MANCER RD, CEDARKNOLLS NJ07927 GOBIND J. WADHWANI 4/1/34 PAKISTAN U.S.A S.I. N/A 62 BOWLING GREENPL. NY1334 KAMLA WADHWANI 7/17/85 PAKISTAN U.S.A. 40 BUFFALO NY 12477 SAUCERTIES N/A MOHAN J. WADHWANI 8/1/37 PAKISTAN U.S.A. N/A DECEASED BHAGWAN WADHWANI 12/22/38 PAKISTAN U.S.A. N/A 114 ALKIM DR, BROWNYULLS PA 15417 HARISH J. WADHWAN 12/16/40 PAKISTAN U.S.A. N/A 57 MANCERRD, WJ07927 CEDARKNOLIS NARAIN J. WADHWANI 3/26/43 PAKISTAN U.S.A. N/A 113 5THST, CALIFORNIA PA 15419 CONTINUED ON ATTACHED SHEET Form N-400 (Rev 07/17/91)N Continued on next page" + }, + { + "id": "A19529822_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DURUPADI J. WADHWANI A # A19 529 822 PART 5 NAME oF SPOUSE: JAGATRAI M. WADHWANI DATE OF MARRIAGE 5/27/26 DATE MARRIAGE ENDED 1/22/93 How MARRIAGE ENDED DEATH OF SPOUSE" + }, + { + "id": "A19529822_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DURUPADI J. WADHWANI A# A19 529 822 PART 6 FULL NAME DATE OF COUNTRY CITIZENSHIP A-No. ADDRESS BIRTH OF BIRTH VISHNU J. WADHWANI 9/1/45 PAKISTAN U.S.A N/A 50 FORESTWAY MORNIS PLAINS, NJ 07950 USHA WADHWAN 6/21/48 INDIA U.S.A. N/A 75 ESSEX DR., STATEN ISLAND, NY 10314" + }, + { + "id": "A19529822_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Part 9. Memberships and organizations." + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1996] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Part 9. Memberships and organizations. A. List your present and past membership in or affiliation with every organization, association, fund, foundation party, club, society, or similar group in the United States or in any other place. Include any military service in this part. If none, write \"none\". Include the name of organization, location, dates of membership and the nature of the organization. If additional space IS needed, use separate paper. NONE Part 10. Complete only if you checked block \" C\" in Part 2. How many of your parents are U.S. citizens? One Both (Give the following about one U.S. citizen parent:) Family Given Middle Name Name Name Address N/A Basis for citizenship: Relationship to you (check one): natural parent adoptive parent Birth parent of child legitimated after birth Naturalization Cert. No. If adopted or legitimated after birth, give date of adoption or, legitimation: (month.day.year) Does this parent have legal custody of you? Yes No (Attach a copy of relating evidence to establish that you are the child of this U.S. citizen and evidence of this parent's citizenship.) Part 11. Signature. (Read the information on penalties in the instructions before completing this section). I certify or, if outside the United States, I swear or affirm, under penalty of perjury under the laws of the United States of America that this application, and the evidence submitted with it, IS all true and correct. I authorize the release of any information from my records which the Immigration and Naturalization Service needs to determine eligibility for the benefit I am seeking. Signature Date DURUPADI 2/19/97 Please Note: If you do not completely fill out this form, or fail to submit required documents listed in the instructions. you may not be found eligible for naturalization and this application may be denied Part 12. Signature of person preparing form if other than above. (Sign below) I declare that I prepared this application at the request of the above person and it is based on all information of which I have knowledge. Print Your Name Date Signature Hill JWadhwon HARISH J. WADHWANI 2/19/97 Firm Name REPRESENTING SELF and Address 57 MANGER ROAD, CEDAR KNOLLS NJ 07927 DO NOT COMPLETE THE FOLLOWING UNTIL INSTRUCTED TO DO so AT THE INTERVIEW I swear that I know the contents of this application, and supplemental Subscribed and sworn to before me by the applicant. pages 1 through , that the corrections numbered 1 through were made at my request, and that this amended application, is true to the best of my knowledge and belief. (Examiner's Signature ) Date (Complete and true signature of applicant) Form -100 (Rev 07:17'91)N *U.S. Government Printing Office: 1996 - 405-024/34022" + }, + { + "id": "A19529822_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Continued on back, N-4 ( Rev 07/19)N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1978, 2023, 1933, 1945] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Continued on back Part 7. Additional eligibility factors. Please answer each of the following questions. If your answer IS \"Yes\", explain on a separate paper. 1. Are you now, or have you ever been a member of, or in any way connected or associated with the Communist Party, or ever knowingly aided or supported the Communist Party directly, or indirectly through another organization, group or person, or ever advocated, taught, believed in, or knowingly supported or furthered the interests of communism? Yes No 2. During the period March 23, 1933 to May 8, 1945, did you serve in, or were you in any way affiliated with, either directly or indirectly, any military unit, paramilitary unit, police unit, self-delense unit, vigilante unit, citizen unit of the Nazi party or SS, government agency or office, extermination camp, concentration camp, prisoner of war camp, prison, labor camp, detention camp or transit camp, under the control or affiliated with: a. The Nazi Government of Germany? Yes No b. Any government in any area occupied by, allied with, or established with the assistance or cooperation of, the Nazi Government of Germany? Yes No 3. Have you at any time, anywhere, ever ordered, incited, assisted, or otherwise participated in the persecution of any person because of race, religion, national origin, or political opinion? Yes No 4. Have you ever left the United States to avoid being drafted into the U.S. Armed Forces? Yes No 5. Have you ever failed to comply with Selective Service laws? Yes No If you have registered under the Selective Service laws, complete the following information: Selective Service Number: Date Registered: If you registered before 1978, also provide the following: Local Board Number: Classification: 6. Did you ever apply for exemption from military service because of alienage, conscientious objections or other reasons? Yes No 7. Have you ever deserted from the military, air or naval forces of the United States? Yes No 8. Since becoming a permanent resident have you ever failed to file a federal income tax return ? Yes No 9. Since becoming a permanent resident have you filed a federal income tax return as a nonresident or failed to file a federal return because you considered yourself to be a nonresident? Yes No 10 Are deportation proceedings pending against you, or have you ever been deported, or ordered deported, or have you ever applied for suspension of deportation? Yes No 11. Have you ever claimed in writing, or in any way, to be a United States citizen? Yes No 12. Have you ever: a. been a habitual drunkard? Yes No b. advocated or practiced polygamy? Yes No C. been a prostitute or procured anyone for prostitution? Yes No d. knowingly and for gain helped any alien to enter the U.S. illegally? Yes NO e. been an illicit trafficker in narcotic drugs or marijuana? Yes No f. received income from illegal gambling? Yes No g. given false testimony for the purpose of obtaining any immigration benefit? Yes No 13. Have you ever been declared legally incompetent or have you ever been confined as a patient in a mental institution? Yes No 14. Were you born with, or have you acquired in same way, any title or order of nobility in any foreign State? Yes No 15. Have you ever: a. knowingly committed any crime for which you have not been arrested? Yes No b. been arrested, cited, charged, indicted, convicted, fined or imprisoned for breaking or violating any law or ordinance excluding traffic regulations? Yes No ( If you answer yes to 15 in your explanation give the following information for each incident or occurrence the city, state, and country, where the offense took place, the date and nature of the offense, and the outcome or disposition of the case). Part 8. Allegiance to the U.S. If your answer to any of the following questions is \"NO\", attach a full explanation: 1. Do you believe in the Constitution and form of government of the U.S.? Yes No 2. Are you willing to take the full Oath of Allegiance to the U.S.? (see instructions) Yes No 3. If the law requires it, are you willing to bear arms on behalf of the U.S.? Yes No 4. If the law requires it, are you willing to perform noncombatant services in the Armed Forces of the U.S.? Yes No 5. If the law requires it, are you willing to perform work of national importance under civilian direction? Yes No Continued on back Form N-400 (Rev 07/17/91)N" + }, + { + "id": "A19529822_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Naturalization" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U.S. Department of Justice OMB #1115-0009 Immigration and Naturalization Service Application for Naturalization INSTRUCTIONS Purpose of This Form. Fingerprints. If you are between the ages of 14 and 75, This form is for use to apply to become a naturalized you must sumit your fingerprints on Form FD-258. Fill out citizen of the United States. the form and write your Alien Registration Number in the space marked \"Your No. OCA\" or \"Miscellaneous No. Who May File. MNU\". Take the chart and these instructions to a police You may apply for naturalization if: station, sheriff's office or an office of this Service, or other you have been a lawful permanent resident for five reputable person or organization for fingerprinting. (You years; should contact the police or sheriff's office before going you have been a lawful permanent resident for three there since some of these offices do not take fingerprints years, have been married to a United States citizen for for other government agencies.) You must sign the chart those three years, and continue to be married to that in the presence of the person taking your fingerprints and U.S. citizen; have that person sign his her name, title, and the date in you are the lawful permanent resident child of United the space provided. Do not bend, fold, or crease the States citizen parents; or fingerprint chart. you have qualifying military service. U.S. Military Service. If you have ever served in the Children under 18 may automatically become citizens Armed Forces of the United States at any time, you must when their parents naturalize. You may inquire at your submit a completed Form G-325B. If your application is local Service office for further information. If you do not based on your military service you must also submit Form meet the qualifications listed above but believe that you N-426, \"Request for Certification of Military or Naval are eligible for naturalization, you may inquire at your local Service.\" Service office for additional information. Application for Child. If this application is for a permanent resident child of U.S. citizen parents, you must also General Instructions. submit copies of the child's birth certificate, the parents' Please answer all questions by typing or clearly printing in marriage certificate, and evidence of the parents' U.S. black ink. Indicate that an item is not applicable with citizenship. If the parents are divorced, you must also \"N/A\". If an answer is \"none,\" write \"none\". If you need submit the divorce decree and evidence that the citizen extra space to answer any item, attach a sheet of paper parent has legal custody of the child. with your name and your alien registration number (A#), if any, and indicate the number of the item. Where to File. File this application at the local Service office having Every application must be properly signed and filed with jurisdiction over your place of residence. the correct fee. If you are under 18 years of age, your parent or guardian must sign the application. Fee. The fee for this application is $90.00. The fee must be If you wish to be called for your examination at the same submitted in the exact amount. It cannot be refunded. DO time as another person who is also applying for NOT MAIL CASH. naturalization, make your request on a separate cover sheet. Be sure to give the name and alien registration All checks and money orders must be drawn on a bank or number of that person. other institution located in the United States and must be payable in United States currency. The check or money Initial Evidence Requirements. order should be made payable to the Immigration and You must file your application with the following evidence: Naturalization Service, except that: If you live in Guam, and are filing this application in A copy of your alien registration card. Guam, make your check or money order payable to the \"Treasurer, Guam.\" Photographs. You must submit two color photographs of If you live in the Virgin Islands, and are filing this yourself taken within 30 days of this application. These application in the Virgin Islands, make your check or photos must be glossy, unretouched and unmounted, and money order payable to the \"Commissioner of Finance have a white background. Dimension of the face should of the Virgin Islands.\" be about 1 inch from chin to top of hair. Face should be 3/4 frontal view of right side with right ear visible. Using Checks are accepted subject to collection. An uncollected pencil or felt pen, lightly print name and A#, if any, on the check will render the application and any document issued back of each photo. This requirement may be waived by invalid. A charge of $5.00 will be imposed if a check in the Service if you can establish that you are confined payment of a fee is not honored by the bank on which it is because of age or physical infirmity. drawn. Form N-400 (Rev. 07/17/91) N" + }, + { + "id": "A19529822_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Processing Information., 1111-0009, 20503." + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Processing Information. superior to those arising from any human relation, but Rejection. Any application that is not signed or is not does not include essentially political, sociological, or accompanied by the proper fee will be rejected with a philosophical views or merely a personal moral code. notice that the application is deficient. You may correct the deficiency and resubmit the application. However, an Oath ceremony. You may choose to have the oath of application is not considered properly filed until it is allegiance administered in a ceremony conducted by the accepted by the Service. Service or request to be scheduled for an oath ceremony in a court that has jurisdiction over the applicant's place of Requests for more information. We may request more residence. At the time of your examination you will be information or evidence. We may also request that you asked to elect either form of ceremony. You will become submit the originals of any copy. We will return these a citizen on the date of the oath ceremony and the originals when they are no longer required. Attorney General will issue a Certificate of Naturalization as evidence of United States citizenship. Interview. After you file your application, you will be notified to appear at a Service office to be examined under If you wish to change your name as part of the oath or affirmation. This interview may not be waived. If naturalization process, you will have to take the oath in you are an adult, you must show that you have a court. knowledge and understanding of the history, principles, and form of government of the United States. There is no Penalties. exemption from this requirement. If you knowingly and willfully falsify or conceal a material fact or submit a false document with this request, we will You will also be examined on your ability to read, write, deny the benefit you are filing for, and may deny any other and speak English. If on the date of your examination you immigration benefit. In addition, you will face severe are more than 50 years of age and have been a lawful penalties provided by law, and may be subject to criminal permanent resident for 20 years or more, or you are 55 prosecution. years of age and have been a lawful permanent resident for at least 15 years, you will be exempt from the English Privacy Act Notice. language requirements of the law. If you are exempt, you We ask for the information on this form, and associated may take the examination in any language you wish. evidence, to determine if you have established eligibility for the immigration benefit you are filing for. Our legal Oath of Allegiance. If your application is approved, you right to ask for this information is in 8 USC 1439, 1440, will be required to take the following oath of allegiance to 1443, 1445, 1446, and 1452. We may provide this the United States in order to become a citizen: information to other government agencies. Failure to provide this information, and any requested evidence, may \"I hereby declare, on oath, that / absolutely and entirely delay a final decision or result in denial of your request. renounce and abjure all allegiance and fidelity to any foreign prince, potentate, state or sovereignty, of whom or Paperwork Reduction Act Notice. which / have heretofore been a subject or citizen; that / We try to create forms and instructions that are accurate, will support and defend the Constitution and laws of the can be easily understood, and which impose the least United States of America against all enemies, foreign and possible burden on you to provide us with information. domestic; that / will bear true faith and allegiance to the Often this is difficult because some immigration laws are same; that / will bear arms on behalf of the United States very complex. Accordingly, the reporting burden for this when required by the law; that / will perform collection of information is computed as follows: (1) noncombatant service in the armed forces of the United learning about the law and form, 20 minutes; (2) States when required by the law; that / will perform work completing the form, 25 minutes; and (3) assembling and of national importance under civilian direction when filing the application (includes statutory required interview required by the law; and that / take this obligation freely and travel time, after filing of application), 3 hours and 35 without any mental reservation or purpose of evasion; so minutes, for an estimated average of 4 hours and 20 help me God.\" minutes per response. If you have comments regarding the accuracy of this estimate, or suggestions for making If you cannot promise to bear arms or perform this form simpler, you can write to both the Immigration noncombatant service because of religious training and and Naturalization Service, 425 I Street, N.W., Room belief, you may omit those statements when taking the 5304, Washington, D.C. 20536; and the Office of oath. \"Religious training and belief\" means a person's Management and Budget, Paperwork Reduction Project, belief in relation to a Supreme Being involving duties OMB No. 1115-0009, Washington, D.C. 20503. For sale by the U.S. Government Printing Office Superintendent of Documents, Mail Stop: SSOP, Washington, DC 20402-9328" + }, + { + "id": "A19529822_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 This is to certify that WADHWANI, DURUPADI JAGATRAI REGISTRATION A19 529 822 NUMBER) has been daly registered according to law and was admitted to the United States as an immigrant at PORT MO.-DAY FR OF ENTRY CLASS MO DAY-(R OF BIRTH SEX NYC 11. 2/72 Z-2 11-28-06 F 45 Commissioner of Immigration and Naturalization UNITED STATES DEPARTMENT OF JUSTICE IF ****** . AGE a SADER 109 ARE RESULTED BY AM 10 HAVE THIS are at At: JUMES. STATE A" + }, + { + "id": "A19529822_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened byNARA,7/13/2023 The person ALIEN REGISTRATION RECEIPT CARD the This card will be honored in lieu of visa and passport if rightful holder is not returning from a country or area specified in Part 211 of Title 8. Code of Federal Regulations was not absent over a year. and is not otherwise ex- cludable under immigration laws. If travel in such country or area. or absence of over a year is con- templated consult Immigration and Naturalization Service office before you depart as to whether you should apply for another doc- ument. Notify I& N Service of ad. dress during January each year and within ten days after each change of address Obtain forms from any Immigration or Post Office Always include your \"A\" number in communications to I&N Service" + }, + { + "id": "A19529822_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 LEAVE BLANK TYPE OR PRINT ALL INFORMATION IN BLACK FBI LEAVE BLANK LAST NAME NAM FIRST NAME MIDDLE NAME APPLICANT W HWANI DURUPADI J. SIGNATURE OF PERSON FINGERPRINTED ALIASES AKA o DUROPADI R NYINSNY00 USINS RESIDENCE OF PERSON FINGERPRINTED DATE OF BIRTH DOB NEW YORK, NY Month Day Year 57 MANGER ROAD 11 28 06 CEDAR KNOLLS, NJ 07927 CITIZENSHIP CTZ SEX RACE HGT WGT EYES HAIR PLACE OF BIRTH POB DATE SIGNATURE OF OFFICIAL TAKING FINGERPRINTS INDIA F INDIAN 4'8\" 904B BRN GREY PAKISTAN 2/18/97 DE Vel 2tes YOUR NO. OCA A# N19529822 LEAVE BLANK EMPLOYER AND ADDRESS FBI NO. FBI CLASS ARMED FORCES NO. MNU REASON FINGERPRINTED SOCIAL SECURITY NO. SOC REF. N-400 120-54-8105 MISCELLANEOUS NO. MNU 1.R. THUMB 2. R. INDEX 3. R. MIDDLE 4. R. RING 5.R. LITTLE 6. L. THUMB 7. L. INDEX 8. L. MIDDLE 9. L. RING 10. L. LITTLE LEFT FOUR FINGERS TAKEN SIMULTANEOUSLY RIGHT-FOD FINGERS TAKEN SIMULTANEOUSLY" + }, + { + "id": "A19529822_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "FEDERAL BUREAU OF IN* ESTIGATION UNITED STATES DEPARTMENT OF JUSTICE 1. LOOP WASHINGTON, D.C. 20537 APPLICANT CENTER OF LOOP TO OBTAIN CLASSIFIABLE FINGERPRINTS 1. USE BLACK PRINTER'S INK. 2. DISTRIBUTE INK EVENLY ON INKING SLAB 3 WASH AND DRY FINGERS THOROUGHLY 4. ROLL FINGERS FROM NAIL TO NAIL, AND AVOID ALLOWING FINGERS TO SLIP 5. BE SURE IMPRESSIONS ARE RECORDED IN CORRECT ORDER 6. IF AN AMPUTATION OR DEFORMITY MAKES IT IMPOSSIBLE TO PRINT A FINGER MAKE A NOTATION TO THAT EFFECT IN THE INDIVIDUAL FINGER BLOCK DELTA 7. IF SOME PHYSICAL CONDITION MAKES IT IMPOSSIBLE TO OBTAIN PERFECT IMPRESSIONS SUBMIT THE BEST THAT CAN BE OBTAINED WITH A MEMO STAPLED TO THE CARD EXPLAINING THE CIRCUMSTANCES 8. EXAMINE THE COMPLETED PRINTS TO SEE IF THEY CAN BE CLASSIFIED BEARING IN MIND THAT MOST FINGERPRINTS FALL INTO THE PATTERNS SHOWN ON THIS CARD (OTHER PATTERNS OCCUR INFREQUENTLY AND ARE NOT SHOWN HERE). THE LINES BETWEEN CENTER OF LOOP AND DELTA MUST SHOW THIS CARD FOR USE BY: LEAVE THIS SPACE BLANK 2. WHORL 1. LAW ENFORCEMENT AGENCIES IN FINGERPRINTING APPLI- CANTS FOR LAW ENFORCEMENT POSITIONS.\" 2. OFFICIALS OF STATE AND LOCAL GOVERNMENTS FOR PUR. DELTAS POSES OF EMLOYMENT LICENSING, AND PERMITS, AS AUTHOR IZED BY STATE STATUTES AND APPROVED BY THE ATTORNEY GENERAL OF THE UNITED STATES LOCAL AND COUNTY ORDI. NANCES UNLESS SPECIFICALLY BASED ON APPLICABLE STATE STATUTES DO NOT SATISFY THIS REQUIREMENT.* 3. U.S. GOVERNMENT AGENCIES AND OTHER ENTITIES REQUIRED BY FEDERAL LAW. 4. OFFICIALS OF FEDERALLY CHARTERED OR INSURED BANK ING INSTITUTIONS TO PROMOTE OR MAINTAIN THE SECURITY OF THOSE INSTITUTIONS THESE LINES RUNNING BETWEEN INSTRUCTIONS: PRINTS MUST FIRST BE CHECKED THROUGH THE APPRO. DELTAS MUST BE CLEAR PRIATE STATE IDENTIFICATION BUREAU, AND ONLY THOSE FINGER. PRINTS FOR WHICH NO DISQUALIFYING RECORD HAS BEEN FOUND 3. ARCH LOCALLY SHOULD BE SUBMITTED FOR FBI SEARCH 2. PRIVACY ACT OF 1974 (P.L. 93-579) REQUIRES THAT FEDERAL STATE, OR LOCAL AGENCIES INFORM INDIVIDUALS WHOSE SOCIAL SECURITY NUMBER IS REQUESTED WHETHER SUCH DISCLOSURE IS MANDATORY OR VOLUNTARY BASIS OF AUTHORITY FOR SUCH SOLICITATION AND USES WHICH WILL BE MADE OF IT. 3. IDENTITY OF PRIVATE CONTRACTORS SHOULD BE SHOWN IN SPACE \"EMPLOYER AND ADDRESS\". THE CONTRIBUTOR IS THE NAME OF THE AGENCY SUBMITTING THE FINGERPRINT CARD TO THE FBI. 4. FBI NUMBER IF KNOWN SHOULD ALWAYS BE FURNISHED IN THE APPROPRIATE SPACE MISCELLANEOUS NO. RECORD OTHER ARMED FORCES NO. PASSPORT NO. (PP), ALIEN REGISTRATION NO. (AR). PORT SE. CURITY CARD NO (PS). SELECTIVE SERVICE NO (SS). VETERANS' ARCHES HAVE NO DELTAS ADMINISTRATION CLAIM NO. (VA). FD-258 (REV. 12-29-82) U.S. GPO: 1996-405-015/20049" + }, + { + "id": "A19529822_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Author: Melinda D Cadenilla at ERO-NEW-002 - Date : 8/16/97 1:15 PM Priority: Normal Receipt Requested TO: Helen Digenio at ERO-NYC-004 - Subject: N-400 Message Contents Ms. Digenio, This is a 2nd request for the following files and please update CIS to reflect their file transfer status. FOIA (b)(6) FOIA (b)(6) FOIA (b)(6) FOIA (b)(6) A 19 529 2 822 FOIA (b)(6)" + }, + { + "id": "A19529822_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Interview Request Form, A 19 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 2001] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 THE the JONE U.S. Department of Justice THE NINESUR Immigration and Naturalization Service 970 Broad Street Newark , New Jersey 07102 A 19 529 822 DURUPADI J. WADHWANI 57 MANGER ROAD CEDAR KNOLLS, NJ 07927 Date: JANUARY 29, 2001 Dear Applicant: We have received your request for a homebound Naturalization Interview. In reply to your recent request, the following information is needed for our records. Applicant Current Address Date of Birth Contact Person Current Telephone Number: Home ( ) Work ( ) Current Telephone Number: Attorney ( ) Representative ( ) If applicant is in a nursing home, please provide the name, address and telephone number of the nursing home. Sincerely, Mariedan Minnie L. Hamm Adjudication Officer" + }, + { + "id": "A19529822_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization District Adjudication Officer Appointment Letter, A019 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 2000] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U.S. Department of Jus+ OF Immigration and Naturalization Service 4 970 Broad Street Newark, New Jersey 07102 DURUPADI WADHWANI 57 MANGER ROAD CEDAR KNOLLS, NJ 07927 File Number: A019 9 529 822 Date: October 2, 2000 CC: Please come to the office show below at the time and place indicated in connection with an official matter. Office Location ROOM 1404-14TH FLOOR 970 BROAD STREET Newark, NJ 07102 Date and Hour 10/30/00 at 9:15 a.m. Ask For Naturalization District Adjudication Officer Reason for Appointment Examination on your Naturalization Application Bring with you This letter, your Alien Registration Card, with a photocopy front and back, and all passports. IT IS IMPORTANT THAT YOU KEEP THIS APPOINTMENT AND BRING THIS LETTER WITH YOU. If you are unable to do so, state your reason, sign below and return this letter to this office at once. 29 I am unable to keep this appointment because: Signature Date" + }, + { + "id": "A19529822_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Pelvic Pain" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 2000] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Page: 1 For DURUPADI WADHWANT, Friday, October 27, 2000, 7:20 pm To reach use Emergency Department 973-971-5004 Work Med- 973-971-7700 PELVIC PAIN: Your exam shows your pain is probably from OUT pelvic organs (ovaries, tubes, uterus). Common causes of pelvig pain include: ovulation, cysts of the ovaries, infection, endometriosis, and tumors. More serious causes of pain in the pelvis that require surgery are appendicitis and ectopic (tubal) pregnancy. Often the exact cause cannot be found with a single exam. Blood tests, cultures, and a follow-up check with a gynecologist may be needed. You should rest in bed with your legs propped up until your pain is much better Avoid sex until your symptoms are improved and your doctor says it is safe. If your stomach is upset. stick to small amounts of clear liquids until you feel better. Pain medicine is sometimes needed. Contact your doctor for a follow-up exam as recommended Please call right away or go to the emergency room if you have any of these symptoms * Uprov of Fainting, severe weakness, repeated vomiting, dehydration. * Heavy vaginal bleeding or passing solid tissue. Fever or chills. Arbe ED Phys: Richman #7752 ED Nurse: Eikel Private Physician Referral None Assigned - None Assigned My signature below indicates that I have received and understood the oral Instructions reguarding my medical problem. I acknowledge receipt of this written instruction sheet, which I will read and review. I will arrange for follow up care indicated above. Patient or Legal Guardian signature Please return to the Emergency Department immediately if your condition worsens. Join with primary doctor pubic ramus fracture (stable)" + }, + { + "id": "A19529822_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 This is to certify that WADHWANI, DURUPADI JAGATRAI REGISTRATION A19 529 822 NUMBER has been duly registered according to law and was admitted to the United States as an immigrant a PORT MO.-DAY ENTRY CLASS NO DAY-YR OF BIRTH SEX NYC II. 2/79 Z-2 11-28-06 F Commissioner of Immigration and Naturalization 45 UNITED STATES DEPARTMENT OF JUSTICE ...... OF AGE SR OLDER YOU ARE RESERVED ar LAW 10 HAVE THIS CAN if" + }, + { + "id": "A19529822_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 ALIEN REGISTRATION RECEIPT CARD hair - He This card will be honored in lieu of visa and passport if rightful holder is not returning from a country or area specified in Part 211 of Title 8. Code of Federal Regulations. was not absent over a year, and is not otherwise ex- cludable under immigration laws. If travel in such a country or area, or absence of over a year is con- templated. consult Immigration and Naturalization Service office before you depart as to whether you should apply for another doc- ument. Notify I&N Service of ad- dress during January each year and within ten days after each change of address. Obtain forms from any Immigration or Post Office. Always include your \"A\" number in communications to I&N Service." + }, + { + "id": "A19529822_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Department of Justice, Immigration and Naturalization Service, A 19 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1906, 2023, 2001] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 o of U.S. Department 0. Justice DEPARTMENT Immigration and Naturalization Service 970 Broad Street Newark, , New Jersey 07102 A 19 529 822 DURUPADI J. WADHWANI 57 MANGER ROAD CEDAR KNOLLS, NJ 07927 Date: JANUARY 29, 2001 Dear Applicant: We have received your request for a homebound Naturalization Interview. In reply to your recent request, the following information is needed for our records. Applicant Current Address 57 MANGER ROAD CEDAR KNOLLS, , NJ 07927 Date of Birth 11/28/1906 Contact Person Current Telephone Number: Home (923) 267-2023 Work (973) 386-8351 Current Telephone Number: Attorney ( ) Representative ( ) If applicant is in a nursing home, please provide the name, address and telephone number of the nursing home. Sincerely, 30mction Minnie L. Hamm Adjudication Officer" + }, + { + "id": "A19529822_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 72 - 82 10-92 10 20- C" + }, + { + "id": "A19529822_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DURUPADI WADHWANI 57 MANGER ROAD F CEDAR KNOLLS NJ 17927 03 Bea USA CLASS 2001 U.S. IMMIGRATION & NATURALIZATION SERVICE 970 BROAD STREET NEWARK, NJ 07102 ATTN: W.I. Minnie Hamm 07102+A 9 529 IPRRI 115" + }, + { + "id": "A19529822_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "COVER SHEET RECORD OF PROCEEDING, M-175 ( (Rev. 10-20-69)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE COVER SHEET RECORD OF PROCEEDING This is a permanent record of the Immigration and Naturalization Service. Any part of this record that is removed MUST BE RETURNED after it has served its purpose. INSTRUCTIONS 1. Place a separate cover sheet on the top of each Record of Proceeding. 2. Each Record of Proceeding is to be fastened on the inner left side of the file jacket in chronological order. 3. Any person temporarily removing any part of this record must make, date, and sign a notation to this effect which is to be retained in this record, below the cover sheet. The signer is responsible for replacing the removed material as soon as it has served its purpose. 4. See AM 2710 for detailed instructions. M-175 (Rev. 10-20-69) GPO 946-316" + }, + { + "id": "A19529822_0028", + "page_index": 28, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0028/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, FORM I-181 ( (REV. 10-1-71) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1002, 2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place NYC 245 File No. A19 529 822 bc Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name Durupadi J. Wadhwani IJG afforder of Female No vember 28, 1906 Street 97-11 Horace Harding Expwy, Apt. 18-K PLACE OF BIRTH Address Lefrak City, New York 11368 A12C W. Pakistan of State City, State, Zip NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) India 18 passa ou Section SOS(P) PRIORITY DATE Immediate Relative Z-2 REMARKS CERTIFICATION CHECK we plock ou the folw as NONPREFERENCE: Section 212(a)(14) certification not required because: gate A120 ue Act pl SOLIG weque Individual section 212 (a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 13 of the Act of 9/11/57 acce Sec 214(d) & N Act OL Sec 244 ( ) ) of the I & N Act Sec 1 of the Act of 11/2/66 Private Law no. of the gaye of Act Congress session Sec 245 of the I & N Act Sec 2 of the Act of 11/2/66 OL (Other law Specify) As of 11 02 72 at NYC (Month) (Day) Year) PORT OF ENTRY FOR PERMANENT RESIDENCE oubLGIGLGUCS FOLLU blobell Class of admission (Insert symbol) (Applicable in all cases) 542 we DATE APPROVED OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION KOOdian 57/HOZ-72 DD pe NOV 3 1972 DOLAICE DISTRICT marks FOR USE BY VISA CONTROL OFFICE Lednile IJG follu 18! 10 pe formalqeq to HUG COULLO Office NEW YORK, N.Y. qnb- Date IU OLUGL cases MUGGLE 10 LUE Country excebt MUGLE 26LAICE 12 10 pe au Foreign State 1-151 Issued pas 1002 72 Preference Category Date case of GAGLA polu Number we gate belwaueur eur pe abblobulate the the ency cases the Month of Issuance Office MPICU unwpet 1dpp auq 10 120 COULLO OHICS MUGU error 5V2 OL 2 Act 5 Signed UCG OL case nugel (Visa Office, Dept. of State) Form I-357 delivered Form I-151 delivered Form I-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service FORM I-181 (REV. 10-1-71) N (Page 1)" + }, + { + "id": "A19529822_0029", + "page_index": 29, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0029/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "INSTRUCTIONS, I-123" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1925, 2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 LOKW 1-181 (BEAT 21016 unwpet LOL allocation INSTRUCTIONS LOLLU e-123 GENERAL: To request allocation of a visa number for a preference or nonpreference case under Section 245 or for a Western Hemisphere number under Section 1 of the Act of November 2, 1966, mail original and one copy to Visa Control Office. When grant of permanent residence becomes final, the copy returned by the Visa Control Office which allocates the visa number shall be appropriately endorsed, and placed in the filé. In such cases the triplicate copy, which was retained in the file, shall be noted to show the date permanent residence status is granted and forwarded to the State Director of Selective Service in the case of every male alien born on or after September 15, 1925, and who has reached 18 years of age. If not required for this purpose, it shall be destroyed. In cases where permanent residence is granted without referral to the Visa Control Office, except where Selective Service is to be notified, only an original 1-181 need be prepared and placed in the file. In other cases where outstanding instructions require the form -181 to be forwarded to the Visa Control Office, it shall be prepared in dup- licate and the original placed in the file, except when an additional copy is required to notify Selective Service. DISTIBICI PREFERENCE: Under Section 245, the priority date will be the filing date of one of the first six preference petitions. ACTION NONPREFERENCE: Under Section 245, the priority date shall be fixed by the following factors, whichever is the earliest; (1) the priority date accorded the applicant by the consular officer as a nonpreference immigrant; (2) the date on which application Form 1-485 is properly filed, if the applicant establishes that he is a member of a profession or a person with exceptional ability in the sciences or the arts not included in the Department of Labor's Schedule A (29 CFR 60) provided a certification is issued on that basis, or that he is within Schedule A, or that the provisions of Section 212(a)(14) of the Act do not apply to him; (3) the date on which an ap- proved valid third or sixth preference visa petition in his behalf was filed; or (4) the date an application for certification based on a job offer was accepted for processing by any office within the employment service system of the Department of Labor, provided the certification applied for was issued. A nonpreference priority date, once established, is retained by the alien even though at the time a visa number becomes available and he is allotted a nonpreference visa number he meets the provisions of Section 212 (a) (14) of the Act by some means other than that by which he originally established entitlement to the nonpreference priority date. LABOR CERTIFICATION: Check and complete the block regarding certifications on the form as appropriate in a nonpreference case. S-S REMARKS: If the visa number requested is based on Section 202(b)(1), (2), (3) or (4) or Section 203(a)(9) of the Act explain as appropriate in \"Remarks\" block INCTS DELAY NOTICE: When the Service a visa number from the Department of State before granting permane interesident the letter portion of this form notifying of the delay is mailed to the applicant with copy to the attorney of record. In represented cases the attorney are is notified of the approval of an application by furnishing him with a copy of the notice which is part of this form. pc VIA 230 833 MAC STR blace OE CREVIION Ot RECORD RESIDENCE 26LAICE ONILED OE Inclice" + }, + { + "id": "A19529822_0030", + "page_index": 30, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0030/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, A19 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place NYC 245 File No. A19 529 822 be Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name Durupadi J. Wadhwani Female November 28, 1906 Street 97-11 Horace Harding Expwy, Apt. 18-K PLACE OF BIRTH Address Lefrak City, New York 11368 W. Pakistan City, State, Zip NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) India PRIORITY DATE Immediate Relative Z-2 REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 13 of the Act of 9/11/57 Sec 214(d) I & N Act Sec 244 ( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Private Law no. of the Congress session Sec 245 of the I & N Act Sec 2 of the Act of 11/2/66 (Other law Specify) As of 11 02 72 at NYC (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) Z- 2 (IR-5) (Applicable in all cases) DATE OF Us APPROVED INS RECOMMENDED BY: (Immigration Officer) (Date) ACTION KBOdria 11-02-72 DD NOV 2 1972 DISTRICT FOR USE BY VISA CONTROL OFFICE Soe marks NEW YORK Date Foreign State 1-151 Issued Preference Category Date 11-02-72 Number Month of Issuance Signed (Visa Office, Dept. of State) Form I-357 delivered Form I-151 delivered Form I-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service FORM I-181 (REV. 10-1-71) N (Page 2)" + }, + { + "id": "A19529822_0031", + "page_index": 31, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0031/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION FOR STATUS AS PERMANENT RESIDENT, 443-R0400" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1937, 1972, 1935, 1948, 1938, 2023, 1906, 1932, 1924] + } + }, + "anumber": "A19529822", + "full_text": "$25 Screened by NARA, 7/13/2023 Form Approved Budget Bureau No. 43-R0400 APPLICATION FOR STATUS AS PERMANENT RESIDENT FEE STAMFINFORMATION File No. APPLICATION FOR THE BENEFITS OF SECTION: JUL10.1972 203(a)(7) and Sec. 245, I&N Act 245 (14B 249 I&N Act Immigration Sec. 214(d), I&N Act Service Sec. 13, Act of 9/11/57 NM (DO NOT WRITE ABOVE THIS LINE.) (SEE INSTRUCTIONS BEFORE FILLING IN APPLICATION. IF YOU NEED MORE SPACE TO ANSWER FULLY ANY QUESTION ON THIS FORM, USE A SEPARATE SHEET AND IDENTIFY EACH ANSWER WITH THE NUMBER OF THE CORRESPONDING QUESTION. FILL IN WITH TYPEWRITER OR PRINT IN BLOCK LETTERS IN INK.) 1. I hereby apply for the status of a lawful permanent resident alien on the following basis: (Check box A, B, C, D, E or F) An immigrant visa is immediately available to me: A. As a refugee (Section 203(a)(7) and Section 245, I&N Act). B. As a former fiancee or fiance of a U.S. citizen whom I married within 90 days after my arrival in the United States, or as a child of such fiancee or fiance (Section 214(d), I&N Act). C. As a former government official, or as a member of the immediate family of such official (Section 13, Act of September 11, 1957). D. As a person to whom. an immigrant visa is immediately available, other than one described above, (Section 245, I&N Act). E. As a person who has resided in the United States continuously since prior to July 1, 1924 (Section 249, I&N Act). F. As a person who has resided in the United States continuously since a date on or after July 1, 1924, but before June 30, 1948 (Section 249, I&N Act). A19529822 2. My name is (Last in capital letters) (First Name) (Middle Name) My alien registration number is Sex Male WADHWANI DURUPADI JAGATRAI - Female 3. I reside in the United States at: (Apt. No.) (No. and Street) (City) (State) (ZIP Code) 18K PERU 97/11 HORACE HARDING EXPWY, LAFRAK CITY, N.Y. N.Y. 11368 4. Date of Birth Place of Birth (City or Town) (County, Province, or State) (Country) I am now a citizen of (Country) NOV.28,1906 1 KARACHI WEST PAKISTAN INDIA 5. I last arrived in the United States at the port of (City and State) on (Month) (Day) (Year) NEW YORK CITY N.Y APRIL 8,1972 by (Name of vessel or other means of travel) as a (visitor, student, exchange visitor, temporary worker, fiancee, fiance, crewman, AIR INDIA parolee, etc.) VISITOR was My nonimmigrant visa was issued by the United States Consul at (City) (State) on (Month) (Day Year) inspected. was not BOMBAY INDIA 005929 APRIL3 1972 6. I am single married divorced widowed a. I have been married ONE times, including my present marriage, if now married. (If you are now married give the following:) b. Number of times my spouse has been married C. Name of spouse ONCE WADHWANI JAGATRAI MULRAM d. My spouse resides with me apart from me at Address (Apt. No.) (No. & Street) (Town or City) (Province or State) (Country) 7. a. I have NINE children, as follows: (complete all columns as to each child. If child lives with you, state \"with me\" in last column; otherwise give city and state or country of child's residence. Name Sex Place of Birth Date of Birth Now Living at (1) SARASWATI F WEST PAKISTAN 7/5/1932 WITH ME 5 (2) GOBIND M 1. 41111934 Pr \" 8 (3) KAMALA F \" A 7/17/1935 N.Y.CITY, N.Y. USA (4) MOHAN M Pr \" 8/1/1937 CALIFORNIA, LA, U.S.A. (5). BHAGWAN M 4 12/22/1938 b. The following members of my family are also applying for permanent resident status: (i) JAGATRAI (iv) MOHAN (vii) USHA (ii) SARASWATI (v) HARISH (iii) GOBIND (V1) VISHNU 8. I have have not heretofore filed an application for the status of a permanent resident. (If you have ever filed such application, give the date and place of filing and final disposition.) Form I-485 (Rev. 7-1-70)N UNITED STATES DEPARTMENT OF JUSTICE Immigration and Natural ization Service (Page 1) Received Ret' 8 9.72" + }, + { + "id": "A19529822_0032", + "page_index": 32, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0032/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Screeneded by NARA, 7/13/2023, I-590A Application for Adjustment of Status to Lawful Permanent Resident" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 9. I list below all organizations, societies, clubs, and associations, past or present, in which I have held membership in the United States or a foreign country, and the periods and places of such membership. (If you have never been a member of any organization, state \"None.\") NONE 10. APPLICANTS FOR STATUS AS PERMANENT RESIDENTS MUST ESTABLISH THAT THEY ARE ADMISSIBLE TO THE UNITED STATES. EXCEPT AS OTHERWISE PROVIDED BY LAW, ALIENS WITHIN ANY OF THE FOLLOWING CLASSES ARE NOT ADMISSIBLE TO THE UNITED STATES AND ARE THEREFORE INELIGIBLE FOR STATUS AS PERMANENT RESIDENTS: Aliens who have committed or who have been convicted of a crime involving moral turpitude (does not include minor traffic violations); aliens who have been engaged in or who intend to engage in any commercialized sexual activity; aliens who are or at any time have been anar- chists, or members of or affiliated with any Communist or other totalitarian party, including any subdivision or affiliate thereof; aliens who have advocated or taught, either by personal utterance, or by means of any written or printed matter, or through affiliation with an organiza- tion, (i) opposition to organized government, (ii) the overthrow of government by force and violence, (iii) the assaulting or killing o govern- ment officials because of their official character, (iv) the unlawful destruction of property, (v) sabotage, or (vi) the doctrines of world com- munism, or the establishment of a totalitarian dictatorship in the United States; aliens who intend to engage in prejudicial activities or unlawful activities of a subversive nature; aliens who have been convicted of violation of any law or regulation relating to narcotic drugs or marihuana, or who have been illicit traffickers in narcotic drugs or marihuana; aliens who have been involved in assisting any other aliens to enter the United States in violation of law; aliens who have applied for exemption or discharge from training or service in the Armed Forces of the United States on the ground of alienage and who have been relieved or discharged from such training or service. is Do any of the forgoing classes apply to you? Yes No (If answer is Yes, explain) 11. (COMPLETE THIS BLOCK ONLY IF YOU CHECKED BOX \"A\", \"B\", \"C\" or \"D\" OF BLOCK 1) APPLICANTS WHO CHECKED BOX \"A\" \"B\" \"C\" OR \"D\" OF BLOCK 1 (INCLUDING REFUGEES) IN ADDITION TO ESTABLISHING THAT THEY ARE NOT MEMBERS OF ANY OF THE INADMISSIBLE CLASSES DESCRIBED IN BLOCK 10 ABOVE MUST, EXCEPT AS OTHERWISE PROVIDED BY LAW, ALSO ESTABLISH THAT THEY ARE NOT WITHIN ANY OF THE FOLLOWING INADMISSIBLE CLASSES: Aliens who are mentally retarded, insane, or have suffered one or more attacks of insanity; aliens afflicted with psychopathic personality, sexual deviation, mental defect, narcotic drug addiction, chronic alcoholism or any dangerous contagious disease; aliens who have a physi- cal defect, disease or disability affecting their ability to earn a living; aliens who are paupers, professional beggers or vagrants; aliens who are polygamists or advocate polygamy; aliens who intend to perform skilled or unskilled labor and who have not been certified by the Secre- tary of Labor (see Instruction 10); aliens likely to become a public charge; aliens who have been excluded from the United States within the past year, or who at any time have been deported from the United States, or who at any time have been removed from the United States at Government expense; aliens who have procured or have attempted to procure a visa by fraud or misrepresentation; aliens who have departed from or remained outside the United States to avoid military service in time of war or national emergency; aliens who are former exchange visitors who are subject to but have not complied with the two year foreign residence requirement. Do any of the foregoing classes apply to you? Yes No (If answer is Yes, explain) 12. I do do not intend to seek gainful employment in the United States. If you intend to seek gainful employment in the United States, state the occupation you intend to follow. 13. (Complete this block only if you checked box A or D of block 1) a. I have a priority on the consular waiting list at the American Consulate at as of (City) (Date) b. A visa petition according me immediate relative preference status was approved by the district director at LITTSBURGH PA on JUNE (City and State) (Date) C. A visa petition has not been approved in my behalf but I claim eligibility for preference status because my spouse my parent is the beneficiary of a visa petition approved by the district director at on (City and State) (Date) d. I am claiming preference status as a refugee under the proviso to Section 203(a)(7) of the Act who has been continuously physi- cally present in the United States for at least the past two years. (If you check this item, you must execute and attach Form 1-590A to this application.) e. Other (explain) (Page 2)" + }, + { + "id": "A19529822_0033", + "page_index": 33, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0033/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Application Packet, N-4-102" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1924, 2023, 1972, 1948] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 14. (Complete this block only if you checked Box E or F of Block 1) A. I first arrived in the United States at (Port) on (Date) by means of (Name of vessel or other means of travel) I was was not inspected by an immigration officer. B. I entered the United States under the name (Name at time of entry) and I was destined to (City and State) I was coming to join (Name and relationship) C. Since my first entry I have have not been absent from the United States. (If you have been absent, attach a separate statement listing the port, date and means of each departure from and return to the United States.) 15. Completed Form G-325A (Biographic Information) is Completed Form G-325A (Biographic Information) is not attached attached as part of this application. as applicant is under 14 years of age. 16. IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS, Signature of Applicant: WRITE YOUR NAME IN YOUR NATIVE ALPHABET BELOW: 3195192145 JIMS 5.953 Date of Signature: 7-2-1972 17. (Signature of person preparing form, if other than applicant.) I declare that Address of person preparing form, if other than applicant this document was prepared by me at the request of the applicant and is based on all information on which I have any knowledge. 203 SKYLINE DRIVE 7/2/92 CALIFORNIAPA.15419 Date: Occupation: PHYSICIAN (Application not to be signed below until applicant appears before an officer of the Immigration and Naturalization Service for examination) I, DURUPADI I WADHWANI do swear (affirm) that know the contents of this application subscribed by me includ- ing the attached documents, that the same are true to the best of my knowledge, and that corrections numbered ( ) to ( ) were made by me or at my request, and that this application was signed by me with my full, true name IS> (Complete and true signature of applicant) Subscribed and sworn to before me by the above-named applicant at NYC (Month) 11-2-172 (Day) (Year) (Signature and title of officer) INSTRUCTIONS Read instructions carefully. Fee will not be refunded. 1. APPLICATION.- A separate application must be executed by each applicant. (3) If you are the spouse or unmarried minor child of a person who has An application in behalf of a child under 14 years of age shall be executed by the been granted preference classification by the Immigration and Naturalization parent or guardian. Form G-325A (Biographic Information) must be completed and Service or has applied for preference classification, and you are claiming the submitted with each application if the applicant is 14 years of age or older. Failure to same preference classification, or if you are claiming special immigrant do so delays action and may result in return of the application. classification as the spouse or unmarried child of a minister of religion who has 2. FEE.-A fee of $25 must accompany each application. Read instructions been accorded or is seeking classification as a special immigrant, submit the carefully. Fee will not be refunded. All remittances should be made payable to following: For the spouse: Marriage certificate and proof of termination of all \"Immigration and Naturalization Service, Department of Justice,\" except in Guam prior marriages of each spouse. For the child: Marriage certificate of parents, they should be made payable to \"Treasurer of Guam\" and in the Virgin Islands to together with proof of termination of their prior marriages, if such documents \"Commissioner of Finance, Virgin Islands.\" If you mail this application. attach have not been submitted by a parent. money order or check. DO NOT SEND CASH. (4) If you are a nonimmigrant foreign government official, a member of 3. PHOTOGRAPHS.-You must submit with this application two photographs of the family or servant of such person, or a treaty trader, the spouse or child of yourself taken within 30 days of the date of this application. These photographs such person or a foreign government representative to an international must be 1 1/2 by 1 1/2 inches in size, and the distance from the top of head to point of organization, a member of a family or servant of such person, you must submit chin should be approximately 1 1/4 inches. They must not be pasted on cards or Form I-508, waiving all rights, privileges, exemptions, and immunities which mounted in any way, must be on thin paper, have a light background, and clearly would otherwise accrue to you by virtue of such status. show a front view of your face without hat. Snapshots, group, full-length portraits or (5) If you checked box \"A\" in block 1 of the application, you must vending machine photographs will not be accepted. Using crayon or soft pencil to execute and attach a single copy of Form 1-590A. avoid possible mutilation of the photographs, write your name lightly on the reverse c. If you checked box \"B\" in block / of the application, submit your of the photographs. 4. FINGERPRINTS.-A completed fingerprint chart must be submitted by each marriage certificate if you are the spouse; if you are the child, submit your birth certificate and the marriage certificate for your parent's present marriage. applicant who is 14 years of age or older. Fingerprint charts with instructions for d. If you checked box \"E\" in block / of the application, submit documentary recording your fingerprints are available at any office of the Immigration and evidence to prove you have resided in the United States continuously since prior Naturalization Service. It is important to furnish all information called for on the to July 1. 1924. If you have checked box \"F\", submit documentary evidence to card. prove you have resided in the United States continuously since prior to June 30, 5. DOCUMENTS 1948. a. General-A documents must be submitted in the original. If you desire to (1) Examples of documents which may be submitted to prove residence have the original of any of the other documents returned, and if copies are by law are: bankbooks, leases, deeds. licenses, birth records or baptismal records of permitted to be made, you may submit photographic or typewritten copies. If children born in the United States, census records, affidavits, police records: you submit copies, the original documents must be presented at the time of your contracts, postmarked mail addressed to you, rent or tax receipts, premium examination. Each foreign document must be accompanied by a translation installment receipt books or any other type of receipt: school records on the certified by the translator as to the accuracy of the translation and as to his school's stationery showing dates when you entered and left the school and if competency to translate. If you are unable to secure documentary evidence from available, showing the name of parent or guardian and where you resided: abroad, you must submit proof of the efforts you have made to secure such employment records on letterhead paper or notarized, showing the signer's documents. title and indicating exact dates of employment and stating is the employment b. Submit the following documents only if you checked box \"A\" or \"D\" in was continuous; insurance records or letters on insurance company stationery block / of the application. (1) Record of your birth. showing the name and address of the insured and the date showing the lifetime of the policy; church, union or lodge records on official stationery and bearing (2) A letter from your present employer showing employment of a the organizational seal, if any, and giving specific dates in their records showing permanent nature, if you are employed, or an affidavit of support Form I-134 your membership in the organization; letter from business firms on letterhead from a responsible person in the United States, or other evidence to establish paper showing specific dates of business dealings with you and indicating your that you are not likely to become a public charge. address during the period in question: letters from landlords indicating the (Page 3)" + }, + { + "id": "A19529822_0034", + "page_index": 34, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0034/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "IMMIGRATION AND NATURALIZATION SERVICE APPLICATION FOR AGRICULTURAL EMPLOYMENT, I-458A" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": [ + "Canada", + "Cuba", + "Mexico", + "Dominican Republic", + "Haiti", + "Netherlands", + "United States", + "Bahamas", + "Barbados", + "Bermuda", + "Jamaica" + ] + }, + "years": { + "ms_years_nlp_v1": [1966, 1948, 2023, 1924, 1959] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 landlord's present address and the beginning and termination dates of your relative classification, and you are not a member of one of the classes of \"special residence at the particular premises; marriage certificate of present and any immigrants\" listed in section 101(a)(27) of the Immigration and Nationality Act, as previous marriages, and documents showing how many previous marriages were amended. (The classes of \"special immigrants\" include certain former citizens of the terminated; bills, letters or receipts from your gas, electric, water or telephone United States; certain ministers of religious denominations, and certain employees or company showing the dates during which you received service from it. honorably retired former employees of the United States Government abroad.) NOTE: Women unemployed since marriage and unable to furnish evidence If you are a nonpreference alien who has checked box \"D\" in item 1 of this in their own names may furnish evidence in the names of their parents or other application, and you are performing or seek to perform skilled or unskilled labor, you persons with whom they have been living if affidavits of the parents or other are subject to the requirement contained in section 212(a)(14) of the Immigration persons are submitted attesting to residence with them. If any of the and Nationality Act, as amended, of obtaining a certification from the Secretary of documents are lengthy or bulky, only the pertinent parts should be attached. Labor that there are not sufficient workers in the United States who are able, willing, (2) Affidavits of creditable witnesses, preferably citizens of the United qualified, and available to perform such skilled or unskilled labor, and your States, who have personal knowledge of and can vouch for the continuity of employment will not adversely affect the wages and working conditions of workers in your residence in the United States. Where practicable, such affidavits shall be the United States similarly employed. executed on Form I-488 (Affidavit of Witness). it you are a nonpreference alien performing or seeking to perform work in a NOTE: If entry occurred prior to July 1, 1924, a record of lawful category of employment for which the Secretary of Labor has determined that he admission may be created as of the date of such entry. Therefore, if you have cannot now issue a certification (as listed in Schedule B, Part 60, Title 29, Code of resided continuously in the United States since a date prior to July 1, 1924, it Federal Regulations), you are considered ineligible for adjustment of your status is very important to furnish evidence establishing that fact. under section 245 of the Immigration and Nationality Act, as amended. To apply for the Secretary of Labor's certification, you must follow this 6. INTERVIEW.-Whe you are requested to appear for interview you will be procedure: required to bring with you your temporary entry permit (Form I-94, ARRIVAL (a) Submit Form MA 7-5UA with this application if you are a member of a DEPARTURE RECORD), and your PASSPORT. profession for which the Secretary of Labor does not require a job offer or a person with exceptional ability in the sciences or arts: or if you are qualified and 7. INELIGIBILITY. You are ineligible for status as a permanent resident if you will be employed in an occupation currently listed by the Secretary of Labor on checked box \"A\" or \"D\" of block 1 and: Schedule \"A\" (29 CFR 60) or Schedule \"C\" Precertification list (when that list (a) You were born in any country of the Western Hemisphere or the islands of has not been suspended by the Secretary of Labor). Saint Pierre, Miquelon, Cuba, the Dominican Republic, Haiti, Bermuda, the (b) If you are not within the classes of aliens described in paragraph 10(a) Bahamas, Barbados, Jamaica, the Windward and Leeward Islands, Trinidad, above, you must fill out Form MA 7-50A in accordance with the instructions for Martinique and other British, French, and Netherlands territory or possessions in the completion of that form and send it with documentary evidence of your or bordering on the Caribbean Sea. qualifications specified in paragraph (c) below to your employer or prospective However, if you are a native or citizen of Cuba who was employer. He must complete Form MA 7-50B and must send it, with Form MA inspected and admitted or paroled into the United States 7-50A and documentary evidence of your applications, to the local office of the subsequent to January 1, 1959 and have been physically present State Employment Service. When and if a certification is issued to your employer, in the United States for at least two years; or if you are the it should be submitted with your application, together with the Forms MA 7-50A spouse or minor unmarried child of such native or citizen of and MA 7-50B and the documentary evidence of your qualifications. Cuba with whom you are residing in the United States and were (Information concerning the categories of employment currently yourself inspected and admitted or paroled into the United listed in Schedules A, B, and C, Part 60, Title 29, Code of Federal States subsequent to January 1, 1959 and have been physically Regulations, may be obtained at principal offices of the Immigration present in the United States for at least two years, you are and Naturalization Service). eligible to apply for adjustment of status under the Act of (c) The following documentary evidence of your qualifications must be November 2, 1966, and you may apply for adjustment on Form submitted with your application for a labor certification: 1-485A. (1) School Records-If your eligibility is based in whole or in part on (b) You entered the United States as a member of the crew of a vessel or higher education or attendance at a technical or vocational school, attach aircraft, or were destined to join a vessel or aircraft in the United States as a certified copy of school record. The record must show period of attendance, member of the crew when you arrived in this country. major field of study, and degrees or diplomas awarded. (c) You were not admitted or paroled into the United States following (2) License or Other Official Permission to Practice a Profession-If you are inspection by a United States immigration officer. a member of a profession, attach a copy of the license or other official (d) You are or have been an exchange alien, subject to, but have not complied permission granted you to practice the profession in the country where you with the foreign residence requirement of section 212(e) of the Immigration & have been found qualified to practice that profession, if a license or other Nationality Act and have not been granted a waiver of this requirement. (This permission is required in that country. ground of ineligibility applies to persons who checked box \"A\", \"B\". \"C\" or \"D\" (3) Evidence of Exceptional Ability in the Sciences or the Arts-If your of block 1.) eligibility is based upon exceptional ability in the sciences or the arts. NOTE: If you are ineligible under any of the foregoing but have resided in the documentary evidence supporting the claim should be submitted. Such United States continuously since prior to June 30, 1948, you may still apply on this evidence may testify to the universal acclaim and either national or form to have a record of lawful admission for permanent residence created under international recognition accorded you; show that you have received a section 249, Immigration and Nationality Act. In such case check box \"E\" or \"F\" of nationally or internationally recognized prize or award or won a nationally or block 1. internationally recognized competition for excellence for a specific product or 8. IMMEDIATE RELATIVE AND PREFERENCE ALIENS.-I you are the performance or for outstanding achievement; or testify that you are a member spouse or minor unmarried child of a United States citizen, or if you are the parent in a national or international association of persons which maintain standards of a United States citizen who is at least 21 years of age, you are classifiable as an of membership requiring outstanding achievement as judged by recognized immediate relative; a visa petition must be filed in your behalf unless your United national or international experts in the specific discipline or field of endeavor. States citizen spouse, parent or son or daughter is unable or unwilling to file the (4) Affidavits and Published Material-If your eligibility is based on petition for a reason other than the cost or inconvenience of doing so. technical training or specialized experience, documentary evidence supporting the claim should be submitted. The recommended forms of evidence are NOTE: If you checked box \"B\". \"E\" or \"F\" of block 1 of this application, affidavits or published material. Instruction 8 does not apply to you. Affidavits These must be made by independent sources, such as your If a visa petition is required to establish immediate relative or preference status, it former employerson recognized experts familiar with your work, and must: must have been approved prior to filing this application. (a) Identify the affiant, showing the capacity in which he is testifying; 9. IMMEDIATE AVAILABILITY OF IMMIGRANT SA.-Information as to (b) Give the place and the dates during which you gained your immediate availability of an immigrant visa may be obtained at the nearest office of experience; (c) Describe in detail the duties performed, tools used, supervision this Service. exercised over you and exercised by you. A mere statement for 10. CERTIFICATION OF THE DEPARTMENT OF LABOR.- instruction example that you were employed as a baker is not adequate; and applies to you only if: you checked box \"D\" of block 1 of the application, and you (d) Show the date on which the affidavit was signed. are performing or seek to perform skilled or unskilled labor, and you are seeking Published Material- adjustment as a nonpreference alien. You are considered to be a nonpreference alien (a) Copies of material published by or about you may be submitted if you are not the beneficiary of a currently valid visa petition approved by the (b) The material must be identified as to date, place and name of Immigration and Naturalization Service to accord you a preference or immediate publication. WARNING: If you contemplate departing from the United States to any country, including Canada or Mexico, before a decision is made on your application, consult with the office of the Immigration and Naturalization Service processing your case before departure, since a departure from the United States may result in a denial of your application. If you have not attached the documents called for by the instructions this application will be returned to you. Severe penalties are provided by law for knowingly and willfully falsifying or concealing a material fact or using any false document in the submission of this application. GPO 919-955 (Page 4)" + }, + { + "id": "A19529822_0035", + "page_index": 35, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0035/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "by NARA," + }, + { + "id": "A19529822_0036", + "page_index": 36, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0036/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DURUPADI JAGATRAI WADHWANI" + }, + { + "id": "A19529822_0037", + "page_index": 37, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0037/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEDICAL Examination and Immigration Interview, FORM 1-486 A" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE A19 529 822 (245) FILE NO.: be 20 WEST BROADWAY NEW YORK, N. Y. 10007 DATE: October 19, 1972 MEDICAL EXAMINATION AND IMMIGRATION INTERVIEW Durupadi J. Wadhwni 97-11 Horace Harding Expwy. Apt. 18-K Lefrak, City, New York 11368 INSTRUCTIONS FOR MEDICAL EXAMINATION A MEDICAL EXAMINATION IS NECESSARY AS PART OF YOUR APPLICATION FOR ADJUSTMENT OF STATUS TO THAT OF A PER. MANENT RESIDENT. WHEN YOU APPEAR FOR THE MEDICAL EXAMINATION BRING WITH YOU THIS LETTER, THE TWO ATTACHED COPIES, AND THE FOLLOWING: 1. X-RAY FILM (14\" x 17\") OF YOUR CHEST, UNLESS YOU ARE UNDER 11 YEARS OF AGE, AND A REPORT BY A LICENSED PHYSICIAN INTERPRETING IT. FILM MUST NOT BE MORE THAN 30 DAYS OLD. 2. SEROLOGY REPORT, UNLESS YOU ARE UNDER 15 YEARS OF AGE. SEROLOGIC TEST FOR SYPHILIS MUST NOT BE MORE THAN 30 DAYS OLD. THIS X-RAY AND TEST MUST BE ACCOMPLISHED BY A LICENSED PHYSICIAN OR A STATE OR LOCAL HEALTH DEPARTMENT APPROVED LABORATORY. IF YOU DO NOT HAVE A PERSONAL PHYSICIAN, YOU MAY WISH TO TELEPHONE YOUR STATE OR LOCAL HEALTH DEPARTMENT FOR THE NAME OF AN APPROVED LABORATORY THAT MAY BE ABLE TO PERFORM THE X-RAY AND TEST REQUIRED. PLEASE NOTE THE BOX CHECKED BELOW WITH REGARD TO YOUR MEDICAL EXAMINATION. AN APPOINTMENT HAS BEEN MADE FOR YOU TO BE EXAMINED BY A PHYSICIAN OF THE U.S. PUBLIC HEALTH SERVICE AT: USPHS Outpatient Clinic ADDRESS: November 1, 1972 245 West Houston Street DATE: Between New York, New York 10014 TIME: 8:00 AND 10:00 AM PLEASE ARRANGE FOR YOUR MEDICAL EXAMINATION WITH THE BELOW LISTED PHYSICIAN AT THE ADDRESS SHOWN. THE EXAMINATION SHOULD BE COMPLETED BEFORE PHYSICIAN'S NAME AND ADDRESS: PLEASE SHOW THE COPIES OF THIS LETTER TO YOUR PHYSICIAN (OR LABORATORY) PERFORMING THE EXAMINATION AND FURNISH HIM WITH YOUR SIGNATURE, WRITTEN IN HIS PRESENCE FOR INCLUSION WITH HIS REPORT. TO PHYSICIAN PERFORMING THE EXAMINATION PLEASE OBTAIN THE APPLICANT'S SIGNATURE IN THE SPACE PROVIDED AND MEDICALLY EXAMINE HIM FOR ELIGIBILITY FOR ADJUSTMENT OF STATUS. IF THE APPLICANT IS FREE OF MEDICAL DEFECTS LISTED IN SECTION 212 (A) OF THE IMMIGRATION AND NATIONALITY ACT, ENDORSE THIS COPY OF FORM 1-486A IN THE SPACE PROVIDED AND HAND IT TO THE APPLICANT IN A SEALED ENVELOPE FOR PRESENTATION AT HIS IMMIGRATION INTERVIEW. IF THE APPLICANT IS NOT FREE OF SUCH MEDICAL DEFECTS. DO NOT SIGN THIS FORM; INSTEAD WRITE \"SEE FS-398\" IN THE PHYSICIAN'S SIGNATURE BLOCK AND PREPARE MEDICAL CERTIFICATE ON FORM FS-398 AND HAND IT TO THE APPLICANT IN A SEALED ENVELOPE TOGETHER WITH THIS COPY OF FORM 1-486A FOR PRESENTATION AT HIS IMMIGRATION INTERVIEW. (IF EXAMINATION IS CONDUCTED BY A CIVIL SURGEON, INSERT IN ENVELOPE BOTH COPIES OF FORM 1-486A; X-RAYS AND LABORATORY REPORTS; AND TWO COPIES OF FORM FS-398 IF APPLICANT IS NOT FREE OF MEDICAL DEFECTS.) DISTRICT DIRECTOR I CERTIFY THAT THE ATTACHED X-RAY AND SEROLOGY REPORT, (BLOOD TEST) RELATE TO ME. SIGNATURE OF APPLICANT: pnyupad PENALTY: THE LAW PROVIDES SEVERE PENALTIES FOR KNOWINGLY ANDWILFULLY FALSIFYING OR CONCEALING X A MATERIAL FACT OR USING ANY FALSE DOCUMENTS IN CONNECTION WITH THIS APPLICATION. MY EXAMINATI ON INCLUDING X-RAY, BLOOD SEROLOGICAL AND OTHER REPORTS, WHEN NEEDED, SHOW THE APPLICANT TO BE FREE OF ANY DEFECTS, DISEASES OF DISABILITIES LISTED IN SECTION 212(A) OF THE IMMIGRATION AND NATIONALITY ACT AS AMENDED SIGNATURE OF PHYSICIAN TITLE m newton DATE 11-1-72 FORM I-486 A (REV. 9-1-71) Y" + }, + { + "id": "A19529822_0038", + "page_index": 38, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0038/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 NEW YORK X-RAY 509.5TH AVE NEW YORK CITY No.61261 NAME Durupadi J. Wadhwni DR. Immig. Ser. DATE 10/26/72 X-RAY OF Chest A 19 529 822 on iu padi AGE 65 COMP CALL DR." + }, + { + "id": "A19529822_0039", + "page_index": 39, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0039/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "NEW YORK X-RAY Laboratory, Murray Hill 2-6767-8-9" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1924, 2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Established 1924 MUrray Hill 2-6767-8-9 NEW YORK X-RAY LABORATORY NEW YORK PATHOLOGICAL & X-RAY LABORATORY, INC. 509 FIFTH AVENUE BET. 42ND AND 43RD STS. X-RAY REPORT PATIENT'S NAME Durupadi J. Wadhwni REMARKS AGE 65 CASE NO. 61261 DATE 10/26/72 REFERRED BY DR. Immigraion Service EXAMINATION OF Chest A 19 529 822 The heart, aorta, lungs and visualized bony thorax are normal, consistent with the chronological age of the patient. Respectfully submitted, meetion Zuna Milton Zurrow, M. D. Radiologist CHEMISTRY SEROLOGY HEMATOLOGY BACTERIOLOGY" + }, + { + "id": "A19529822_0040", + "page_index": 40, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0040/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "New York X-Ray Laboratory, A 19 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1924, 2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Established 1924 NEW YORK X-RAY MUrray Hill 2-6767-8-9 - LABORATORY NEW YORK PATHOLOGICAL & X-RAY LABORATORY, INC. 509 FIFTH AVENUE (Bet. 42nd & 43rd Sts.) NEW YORK, N. Y. 10017 DR. Medical Officer Durupadi J. Wadhwni PATIENT'S NAME USPHS 81747 NUMBER 245 West Houston St. 10/26/72 DATE New York, NY A 19 529 822 BLOOD SEROLOGY TESTS KAHN'S PRECIPITATION TEST VDRL Non Reactive KOLMER'S COMPLEMENT FIXATION TEST Director CHEMISTRY HEMATOLOGY BACTERIOLOGY EKG BMR" + }, + { + "id": "A19529822_0041", + "page_index": 41, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0041/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Affidavit of Support" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1964] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JU E Form approved Immigration and Naturalization Servic Budget Bureau No. 43-R423 AFFIDAVIT OF SUPPORT (Fill in with typewriter or print in block letters in ink) I, BHAGWAN WADHWANI Residing at R.D. 1 Box 66A (Name) (Street and number) SMOCK PENNSYLVANIA - 15480 U.S.A (City) (State) (ZIP Code, if in U.S.) (Country) being duly sworn depose and say: 1. I was born on 12-22-38 at KARACHI PAKISTAN Also, answer either a, b or c, as appropriate (Date) (City) (Country) if you are not a native born United States citizen (a) If a United States citizen through naturalization, give number of certificate of naturalization 9694525 (b) If a United States citizen through parent (s) or marriage, give number of own certificate of citizenship . If none obtained, attach statement explaining how citizenship derived. (c) If an alien lawfully admitted to the United States for permanent residence, give 'A' number . 10 2. That I am 33 years of age and have resided in the United States since JUNE 1964 . 3. That this affidavit is executed in behalf of the following person(s) at present residing at 97-11 HORACE HARDING EXPWY Apt. 18k, LAFRAK CITY NY.CITY,N.Y.11368 MARRIED OR RELATIONSHIP TO NAME SEX AGE COUNTRY OF BIRTH SINGLE DEPONENT DURUPADI J F 65 WEST PAK M MOTHER WADHW ANI ISTAN 4. (a) That employed as, engaged I am or in the business of PHYSICIAN with CENTERVILLE (Name of concern) CLINIC FREDERICK ING TOWN PA 15333 at R.D.1 derive a net annual income of $ 38,710: (b) That I have on deposit in savings (Address) banks in this country $ 1 (c) That I have other personal property, the reasonable value of which is $ - (d) That I have stocks and bonds in the amount of $ 13,567 P market value, as indicated on attached list which I certify to be true and correct to the best of my knowledge and belief. (e) That I own real estate at RD1 SMOCK PA valued at $ 33,500 , with mortgages or other encumbrances there- on amounting to $ 23,364 (f) That I have life insurance in the sum of $ cash surrender , value of $ (g) That if self-employed, I attach a copy of my last income tax return or report of com- mercial rating concern which I certify to be true and correct to the best of my knowledge and belief. (See reverse side for nature of evidence of net worth to be submitted) Form I-134 (Rev. 12-9-66)" + }, + { + "id": "A19529822_0042", + "page_index": 42, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0042/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FOIA ( (b)(6), GPO 950-733" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1970, 2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 5. That the following persons are dependent upon me for support: (Place a check in the appropriate col- umn to indicate whether the person named is wholly or partially dependent upon you for support.) WHOLLY PARTIALLY NAME OF PERSON AGE RELATIONSHIP TO ME DEPENDENT DEPENDENT CARMEN WADHWANT 29 WIFE FOIA (b)(6) 6. (To be filled in, if appropriate.) That I have previously submitted affidavit(s) of support for the following per- son(s): Name Date submitted SARASWATI WADHWANI JULY 1970, JUNE 1972 SEPT 72 USHA JUNE 1972 SEPT. 1972 MOHAN is MAY 1972 7. (To be filled in, if appropriate.) That I have submitted visa petition(s) to the Immigration and Naturalization Service, on behalf of the following person(s): Name Relationship Date submitted JAGATRAI WADHWANI FATHER MAY 1972 MOHAN G BROTHER \" fr 8. That I am willing and able to receive, maintain, and support the persons listed in item 3 above. That I am ready and willing to deposit a bond, if necessary, with the Immigration and Naturalization Service to guarantee that such persons will not become public charges during their stay in the United States. 9. That this affidavit is made by me for the purpose of assuring the Immigration and Naturalization Service that the above-named persons will not become public charges in the United States. 10. That my reasons for signing this affidavit are: Ided Execution of affidavit You must sign the affidavit in your full, Signature of personpreparing form, if other than deponent true, and correct name and affirm or make it under ath. In the United States the affidavit may be sworn to or affirmed before an immigration officer without the payment of fee, or be- I declare that this document was prepared by me at the fore a notary public or other officer authorized to administer request of the deponent and is based on all information oaths for general purposes, in which case the official seal or of which I have any knowledge. certificate of authority to administer oaths must be affixed SIGNATURE Outside the United States the affidavit must be sworn to or affirmed before a United States consular or immigration officer. Address: Date: SUBSCRIBED AND SWORN TO BEFORE ME THIS 2 8th day of October A.D. 19 72 Bh gower withous (Signature of deponent) at Binnevele Pa. Louise (Signature novah officer) COMMISSION EXPIRES JULY 24. 1078 of Notary (Tide of officer) Nature of Evidence of Net Worth To Be Submitted. - The deponent must submit in duplicate evidence of net worth as follows: 1. Statement from an officer-of the bank, postal or other financial institution in which you have deposits giving the following details re- garding your bank account: (1) Date account opened, (2) Total amount deposited for past year, (3) Present balance. 2. Statement of employer, preferably his business stationery, showing: (1) Date and nature of employment, (2) Salary paid, (3) Whether position temporary or permanent. 3. If self-employed: (1) Copy of last inc. tax return filed or (2) report of commercial rating cc n. EDDICARS List containing serial number and denomination of bonds and name of purchaser. GPO 950-733" + }, + { + "id": "A19529822_0043", + "page_index": 43, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0043/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 CONTINUATIO OF AFFIDAVIT = SUPPORT WHOLLY DEPENDENT 5.(v) JAGATRAI WADHWANI 65yrs FATHER 65 MOTHER (vi) DURUPADI \" (vii) GOBIND 38 BROTHER \" (viii) MOHAN \" 35 \" (ix) SARLA \" 30 % BROTHER'S WTFF (x) FOIA (b)(6) 6. (iv) JAGATRAI WADHWANI JUNE 1972 : 1. (v) DURUPADI 1, (vil GOBIND \" \" 5, (vii) SARLA \" SEPT 1972 (viii) SUDHA \" : \" \" FA 7. (iii) JAGATRAI (iii) DURUPADI MOTHER MAY 1972 \", \", (iv) GOBIND is BROTHER 1. (v) HARISH is \" ', 1. \" (vi) VISHNU \" \" \" (vii) SARASWATI \" SISTER \" \" \" (viii) USHA \" Bhagwan Washing 10/28/72" + }, + { + "id": "A19529822_0044", + "page_index": 44, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0044/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "CENTERVILLE MEDICAL GROUP, R.D. NO. 1" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1970, 2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 CEN ERVILLE MEDICAL GR JP R.D. NO. I FREDERICKTOWN, PENNSYLVANIA 15333 PHONE 757-6801 September 14, 1972 TO WHOM IT MAY CONCERN: This is to certify that B.J. Wadhwani, M.D. is associated with the Centerville Medical Group earning $38,710 per year and has been with the group since October 12, 1970. Very truly yours, annil ? Rexted Daniel E. Lester, M.D. Medical Director DEL:md" + }, + { + "id": "A19529822_0045", + "page_index": 45, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0045/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "CENTERVILLE MEDICAL GROUP, R.D. NO. 1" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1970, 1972] + } + }, + "anumber": "A19529822", + "full_text": "CEN ERVILLE MEDICAL GR JP R.D. NO. I FREDERICKTOWN, PENNSYLVANIA 15333 PHONE 757-6801 September 14, 1972 TO WHOM IT MAY CONCERN: This is to certify that B.J Wadhwani, , M.D. is associated with the Centerville Medical Group earning $38,710 per year and has been with the group since October 12, 1970. Very truly yours, annil ? Realer Daniel E. Lester, M.D. Medical Director DEL:md" + }, + { + "id": "A19529822_0046", + "page_index": 46, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0046/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "STATEMENT, 59445-5" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Lebanon"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 BABBITT. MEYERS & WA DELL MEMBER BRANCH OFFICES: NEW YORK STOCK EXCHANGE VER. PA. NEW CASTLE PA CHARLEROI. PA. ST. MARY'S. PA. STATEMENT UNION TRUST BUILDING PHILADELPHIA. BALTIMORE WASHINGTON FT. LAUDERDALE FLA. UNIONTOWN PA. STOCK EXCHANGE MT. LEBANON. PA. CLOSING DATE PITTSBURGH PENNSYLVANIA 15219 AMERICAN STOCK EXCHANGE ASSOCIATE TELEPHONE: (412) 391-6500 09/30/72 BOUGHT SOLD DESCRIPTION PRICE OR DATE RECEIVED DELIVERED SECURITIES LONG AND/OR SHORT IN YOUR ACCOUNT IF ANY. DEBIT CREDIT 2NTH DAY OR LONG OR SHORT WERE SHOWN ON YOUR STATEMENT FOR PRECEDING MONTH LEGEND BALANCE 08/31 6439.84 EP01 INT ITEL 7195 INT 175.000R EP29 SEPT MAR INT 7% ON INT 30.28 EP29 5264 MO AV DR BAL INT CF SECURITY POSITIONS 10/27 5000 ARLANS DEPT STORE 6% 2325 DUE 11/15/94 5000 INTERSTATE STORES 4% 2175 DUE 08/01/92 5000 AMERICAN EXPORT 5 1/4 975 DUE 08/01/93 5000 ITEL 7% DUE 03/01/95 3850 5000 GULF RESOURCES & CHEM 6 1/4 3962 DUE 04/01/91 5000 OCCIDENTAL PETE CV SUB DEB- 4675 7 1/2% DUE 06/15/96 900 Capital Equip Learing 18862 DEBIT 5295 13,567 1. MARGIN INTEREST. IF ANY. IS COMPUTED ON THE MONTHLY AVERAGE DEBIT BALANCE SHOWN ON THIS STATEMENT ON A CALENDAR MONTH BASIS AT THE ANNUAL INTEREST RATE SHOWN ON THIS STATEMENT 2. THIS STATEMENT MUST BE RETAINED FOR USE IN CONJUNCTION WITH YOUR NEXT AND/OR OTHER STATEMENTS YOU MAY RECEIVE 6295.12 BALANCE 8 38 BHAGWAN J WADHWANI 59454-5 -1000 CREDIT CARMEN WADHWANI 5295 - DEBIT 203 SKYLINE DRIVE SPECIAL CONV. BOND CALIFORNIA PA 15419 ANY FREE CREDIT BALANCE REPRESENTS FUNDS PAYABLE UPON DEMAND WHICH ALTHOUGH PROPERLY ACCOUNTED FOR ON OUR BOOKS OF RECORD. ARE NOT SEGREGATED AND MAY BE USED IN THE CONDUCT OF THIS FIRM'S BUSINESS IF THIS IS A GENERAL ACCOUNT AND WE MAINTAIN A SPECIAL MISCELLANEOUS ACCOUNT FOR YOU UNDER SECTION : (F) (6) OF REGULATION T OF THE BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM. THIS IS A COMBINED is SUGGEST THAT YOU RETAIN THIS STATEMENT TO ASSIST YOU IN PREPARING YOUR INCOME TAX RETURN STATEMENT OF YOUR GENERAL ACCOUNT AND SPECIAL MISCELLANEOUS ACCOUNT FINANCIAL STATEMENT OF THIS FIRM IS AVAILABLE FOR YOUR PERSONAL INSPECTION AT ITS OFFICES, OR THE PERMANENT RECORD OF THE SPECIAL MISCELLANEOUS ACCOUNT AS REQUIRED COPY WILL BE MAILED UPON YOUR WRITTEN REQUEST. E. & O.E. BY REGULATION IS AVAILABLE FOR YOUR INSPECTION AT YOUR REQUEST." + }, + { + "id": "A19529822_0047", + "page_index": 47, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0047/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 771372023 BABBITT. MEYERS & WAGDELL MEMBER BRANCH OFFICES NEW YORK STOCK EXCHANGE BEAVER. PA NEW CASTLE. PA CHARLEROL PA ST. MART'S PA. STATEMEN UNION TRUST BUILDING PHILADELPHIAO BALTIMORE WASHINGTON FT. LAUDERDALE FLA. UNIONTOWN 24. STOCK EXCHANGE MT. LEBANDY PA. CLOSING DATE PITTSBURGH PENNSYLVANIA 15219 AMERICAN STOCK EXCHANGE ASSOCIATE TELEPHONE (412) 391-6500 09/30/72 BOUGHT SOLD DESCRIPTION DATE PRICE OR RECEIVED DELIVERED SECURITIES LONG AND/OR SHORT IN YOUR ACCOUNT. IF ANY. DEBIT CREDIT OR LONG OR SHORT WERE SHOWN ON YOUR STATEMENT FOR PRECEDING MONTH LEGEND (NTH DAY BALANCE 08/31 1000.000 SECURITY POSITIONS 107 CAPITAL EQUIPMENT LEASING 8900 CORP COM 1. MARGIN INTEREST IF ANY IS COMPUTED ON THE MONTHLY AVERAGE DEBIT BALANCE SHOWN ON THIS STATEMENT ON A CALENDAR MONTH BASIS AT THE ANNUAL INTEREST RATE SHOWN ON THIS STATEMENT 2. THIS STATEMENT MUST BE RETAINED FOR USE IN CONJUNCTION WITH YOUR NEXT AND/OR OTHER STATEMENTS YOU MAY RECEIVE 1000,000 BALANCE 8 38 BHAGWAN J WADHWANI 394541 CARMEN WADHWANI 203 SKYLINE DRIVE CALIFORNIA PA 15419 ANY FREE CREDIT BALANCE REPRESENTS FUNDS PAYABLE UPON DEMAND WHICH ALTHOUGH PROPERLY ACCOUNTED FOR ON OUR BOOKS OF RECORD ARE NOT SEGREGATED AND MAY BE USED IN THE CONDUCT OF THIS FIRM'S BUSINESS IF THIS IS A GENERAL ACCOUNT AND WE MAINTAIN A SPECIAL MISCELLANEOUS ACCOUNT FOR YOU UNDER SECTION 4 (F) (5) OF REGULATION T OF THE BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM THIS IS A COMBINED E SUGGEST THAT YOU RETAIN THIS STATEMENT TO ASSIST YOU IN PREPARING YOUR INCOME TAX RETURN STATEMENT OF YOUR GENERAL ACCOUNT AND SPECIAL MISCELLANEOUS ACCOUNT FINANCIAL STATEMENT OF THIS FIRM IS AVAILABLE FOR YOUR PERSONAL INSPECTION AT ITS OFFICES, OR THE PERMANENT RECORD OF THESPECIALMISCELLANEOUSACCOUNT AS REQUIRED COPY WILL BE MAILED UPON YOUR WRITTEN REQUEST. E. & O.E. BY REGULATION IS AVAILABLE FOR YOUR INSPECTION AT YOUR REQUEST" + }, + { + "id": "A19529822_0048", + "page_index": 48, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0048/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "STATEMENT" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA 7/13/2023 ABBITT. MEYERS & WAITELL MEMBER BRANCH OF FICES: NEW YORK STOCK EXCHANGE NEW CASTLE PA ST. MARY'S PA STATEMENT UNION TRUST BUILDING PHILADELPHIA BALTIMORE WASHINGTON FT. LAUDERDALE FLA. UNIONTOWN PA. STOCK EXCHANGE MT. LEGANON CLOSING DATE PITTSBURGH PENNSYLVANIA 15219 AMERICAN STOCK EXCHANGE ASSOCIATE TELEPHONE (412) 391-6500 09/30/72 BOUGHT SOLD DESCRIPTION DATE PRICE OR RECEIVED DELIVERED SECURITIES LONG AND/OR SHORT IN YOUR ACCOUNT IF ANY. DEBIT CREDIT NTH DAY OR LONG OR SHORT WERE SHOWN ON YOUR STATEMENT FOR PRECEDING MONTH. LEGEND BALANCE 08/31 6439.84 EP01 INT ITEL 7/95 INT 175,000A EP29 SEPT MAR INT 7% ON INT 30.28 EP29 5264 MO AV DR BAL INT OF SECURITY POSITIONS 10/27 5000 ARLANS DEPT STORE 6% 2325 DUE 11/15/94 2175 5000 INTERSTATE STORES 4% DUE 08/01/92 5000 AMERICAN EXPORT 5 1/4 975 DUE 08/01/93 5000 ITEL 7% DUE 03/01/95 3850 5000 GULF RESOURCES & CHEM 6 1/4- 3962 DUE 04/01/91 5000 OCCIDENTAL PETE CV SUB DEB- 4675 7 1/2% DUE 06/15/96 900 Capitol Equip Leaping 18862 DEBIT 5295 MY MONEY'S WORTH 13,567 1. MARGIN INTEREST. IF ANY. IS COMPUTED ON THE MONTHLY AVERAGE DEBIT BALANCE SHOWN ON THIS STATEMENT ON A CALENDAR MONTH BASIS AT THE ANNUAL INTEREST RATE SHOWN ON THIS STATEMENT 2. THIS STATEMENT MUST BE RETAINED FOR USE IN CONJUNCTION WITH YOUR NEXT AND/OR OTHER STATEMENTS YOU MAY RECEIVE 6295.12 BALANCE 8 38 BHAGWAN J WADHWANI 59454+5 -1000 CREDIT CARMEN WADHWANI 5295 DEBIT 203 SKYLINE DRIVE SPECIAL CONV. BOND CALIFORNIA PA 15419 ANY FREE CREDIT BALANCE REPRESENTS FUNDS PAYABLE UPON DEMAND WHICH ALTHOUGH PROPERLY ACCOUNTED FOR ON OUR BOOKS OF RECORD. ARE NOT SEGREGATED AND MAY BE USED IN THE CONDUCT OF THIS FIRM'S BUSINESS IF THIS IS A GENERAL ACCOUNT AND WE MAINTAIN A SPECIAL MISCELLANEOUS ACCOUNT FOR YOU UNDER SECTION 4 (F) (6) OF REGULATION T OF THE BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM. THIS IS A COMBINED E SUGGEST THAT YOU RETAIN THIS STATEMENT TO ASSIST YOU IN PREPARING YOUR INCOME TAX RETURN STATEMENT OF YOUR GENERAL ACCOUNT AND SPECIAL MISCELLANEOUS ACCOUNT FINANCIAL STATEMENT OF THIS FIRM IS AVAILABLE FOR YOUR PERSONAL INSPECTION AT ITS OFFICES, OR THE PERMANENT RECORD OF THE SPECIAL MISCELLANEOUS ACCOUNT AS REQUIRED COPY WILL BE MAILED UPON YOUR WRITTEN REQUEST BY REGULATION IS AVAILABLE FOR YOUR INSPECTION AT YOUR REQUEST E. & O. E." + }, + { + "id": "A19529822_0049", + "page_index": 49, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0049/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 ABBITT, MEYERS & WAL-ELL MEMBER BRANCH OF FICES NEW YORK STOCK EXCHANGE BEAVER PA. NEW CASTLE PA CHARLEROL PA. ST. MART'S PA STATEMENT UNION TRUST BUILDING PHILADELPHIA BALTIMORE WASHINGTON FT. LAUDERDALE FLA. UNIONTOWN PA STOCK EXCHANGE MT. LEBANON. PA. CLOSING DATE PITTSBURGH, PENNSYLVANIA 15219 AMERICAN STOCK EXCHANGE ASSOCIATE TELEPHONE (412) 391-6500 09/30/72 BOUGHT SOLD DESCRIPTION DATE PRICE OR RECEIVED DELIVERED SECURITIES LONG AND/OR SHORT IN YOUR ACCOUNT. IF ANY, DEBIT CREDIT INTH DAY OR LONG OR SHORT WERE SHOWN ON YOUR STATEMENT FOR PRECEDING MONTH LEGEND BALANCE 08/31 1000.000 SECURITY POSITIONS 107 CAPITAL EQUIPMENT LEASING $900 CORP COM 1. MARGIN INTEREST. IF ANY. IS COMPUTED ON THE MONTHLY AVERAGE DEBIT BALANCE SHOWN ON THIS STATEMENT ON A CALENDAR MONTH BASIS AT THE ANNUAL INTEREST RATE SHOWN ON THIS STATEMENT 2. THIS STATEMENT MUST BE RETAINED FOR USE IN CONJUNCTION WITH YOUR NEXT AND/OR OTHER STATEMENTS YOU MAY RECEIVE. 1000,000F BALANCE 3 38 BHAGWAN J WADHWANI 59454-1 CARMEN WADHWANI 203 SKYLINE DRIVE CALIFORNIA PA 15419 ANY FREE CREDIT BALANCE REPRESENTS FUNDS PAYABLE UPON DEMAND WHICH ALTHOUGH PROPERLY ACCOUNTED FOR ON OUR BOOKS OF RECORD. ARE NOT SEGREGATED AND MAY BE USED IN THE CONDUCT OF THIS FIRM'S BUSINESS IF THIS IS A GENERAL ACCOUNT AND WE MAINTAIN A SPECIAL MISCELLANEOUS ACCOUNT FOR YOU UNDER SECTION 4 (F) (6) OF REGULATION T OF THE BOARD OF GOVERNORS OF THE FEDERAL RESERVE SYSTEM THIS IS A COMBINED E SUGGEST THAT YOU RETAIN THIS STATEMENT TO ASSIST YOU IN PREPARING YOUR INCOME TAX RETURN STATEMENT OF YOUR GENERAL ACCOUNT AND SPECIAL MISCELLANEOUS ACCOUNT FINANCIAL STATEMENT OF THIS FIRM IS AVAILABLE FOR YOUR PERSONAL INSPECTION AT ITS OFFICES. OR THE PERMANENT RECORD OF THE SPECIAL MISCELLANEOUS ACCOUNT AS REQUIRED COPY WILL BE MAILED UPON YOUR WRITTEN REQUEST. BY REGULATION IS AVAILABLE FOR YOUR INSPECTION AT YOUR REQUEST E. & O. E." + }, + { + "id": "A19529822_0050", + "page_index": 50, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0050/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Biographic Information, FORM G-325A ( (REV. 4-1-71)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Peru", "Pakistan", "United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1962, 1972, 1906, 2023, 1926] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['housewife', ' none']" + }, + "nationality": { + "nationality_llm_v1": "INDIAN" + } + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 code 0300 - NYO FORM G-325A (REV. 4-1-71) office Form-Approved UNITED STATES DEPARTMENT OF JUSTICE Budget Bureay No.143-R436 BIOGRAPHIC Immigration and Naturalization Service 245 e 0830 Sec. INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE (Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. WADHWANI DURYPADI JAGAT FEMALE 11/28/1906 INDIAN H19529824 (If any ALL OTHER NAMES USED -RAI CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. BHAGWANANI ISAR KARACHI, WEST PAKISTAN (If any) - FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH (If known) CITY AND COUNTRY OF RESIDENCE FATHER BHAGWANANI MULRAJ - WEST \" PAKISTAN} \" DECEASE D MOTHER (Maiden name) BHAMBHANI GAYA - HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE JAGAT SUKKUR WADHWANI -RAI 11/5/1906 WEST PAKISTAN 4/17/1926 KHAIRPUR WEST PAK FORMER HUSBANDS OR WIVES (if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE NONE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR . 18K PERU, 97/11 HORACE LAFRAK N.Y. U.S.A. July 1972 PRESENT TIME HARDING EXPWY N.Y.CITY 2 203 SKYLINE DRIVE CALIFORNIA PA. U.S.A APRIL 1972 JUNE 1972 3 RAJAWADI ROAD GHATKOPAR MAHARASH INDIA NOV. 1962 APRIL 1972 A-19/76 BOMBAY -TRA Show below last foreign residence of more than one year if not shown above. (Include all information requested above.) - APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR NONE PRESENT TIME my House - Wife 4 all been life Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE Z NATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): 43 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A19529822_0051", + "page_index": 51, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0051/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 F ES: FOIA (b)(6) v UNIT A20 222 862 UNITED STATES DEPARTMENT OF JUSTICE FOIA (b)(6) IMMIGRATION AND NATURALIZATION SERVICE Pittsburgh, Penna. 15222 June 19, 1972 NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION NAME AND ADDRESS OF PETITIONER NAME OF BENEFICIARY Mr. Bhagwan J. Wadwani *See Remarks Below MAIL 203 Skyline Drive CLAS: PATION FILE NO. TO: California, Penna. 15419 Secs. 203(a)(5) DATE PETITION FILED DATE OF APPROVAL OFPETITION May 11, 1972 June 7, 1972 VALIDITY: Petition approved for relative is valid for duration of relationship to petitioner and status estab- lished in petition. If petition is for a person in the professions, arts or sciences, or an employee, the approval is valid to Please note the items below which are indicated by \"X\" marks concerning the visa petition filed by you in behalf of the above beneficiary: 1. YOUR PETITION TO CLASSIFY THE BENEFICIARY AS AN IMMEDIATE RELATIVE OF A UNITED STATES CITIZEN HAS BEEN APPROVED AND FORWARDED TO THE UNITED STATES CONSULATE AT. THIS COMPLETES ALL ACTION BY THIS SERVICE ON THE PETI- TION. THE UNITED STATES CONSULATE, WHICH IS UNDER THE SUPERVISION OF THE DEPARTMENT OF STATE. WILL ADVISE THE BENEFICIARY CON- CERNING VISA ISSUANCE Inquiry concerning visa issuance should be addressed to the Consul. This Service will be unable to answer any inquiry concerning visa issuance. 2. IF YOU BECOME NATURALIZED AS A CITIZEN OF THE UNITED STATES AND AN IMMIGRANT VISA HAS NOT YET BEEN ISSUED TO THE BENEFICIARY NOTIFY THIS OFFICE IMMEDIATELY, GIVING THE DATE OF YOUR NATURALIZATION. AT THE SAME TIME. IF THE PETITION WAS IN BEHALF OF YOUR SON OR DAUGHTER, ALSO ADVISE WHETHER THAT PERSON IS STILL UNMARRIED. THIS INFORMATION MAY EXPEDITE THE ISSUANCE OF A VISA TO THE BENEFICIARY. 3. YOUR PETITION FOR PREFERENCE CLASSIFICATION. AS SHOWN ABOVE. HAS BEEN APPROVED BY THE SERVICE AND FORWARDED TO THE UNITED THIS SERVICE HAS NOTHING TO DO WITH THE ACTUAL ISSUANCE OF VISAS. VISAS ARE ISSUED ONLY BY UNITED STATES CONSULS WHO ARE UNDER STATES CONSULATE AT THIS COMPLETES ALL ACTION BY THIS SERVICE ON THE PETITION THE JURISDICTION OF THE U.S. DEPARTMENT OF STATE. UNDER THE LAW ONLY A LIMITED NUMBER OF VISAS MAY BE ISSUED BY THAT DEPARTMENT DURING EACH YEAR AND THEY MUST BE ISSUED STRICTLY IN THE CHRONOLOGICAL ORDER IN WHICH PETITIONS WERE FILED FOR THE SAME CLAS- SIFICATION. WHEN THE BENEFICIARY'S TURN IS REACHED ON THE VISA WAITING LIST. THE UNITED STATES CONSUL WILL INFORM HIM AND CON- SIDER ISSUANCE OF THE VISA. Inquiry concerning visa issuance should be addressed to the Consul. This Service will be unable to answer any inquiry con- cerning visa issuance. 41 X THE PETITION HAS BEEN APPROVED THE PETITION STATES THAT THE BENEFICIARY IS IN THE UNITED STATES AND WILL APPLY TO BECOME A LAW- FUL PERMANENT RESIDENT. THE ENCLOSED APPLICATION FOR THIS PURPOSE (FORM 1-485) SHOULD BE COMPLETED AND SUBMITTED BY THE BENEFICIARY IN ACCORDANCE WITH THE INSTRUCTIONS CONTAINED THEREIN. (IF THE BENEFICIARY HAD PREVIOUSLY SUBMITTED FORM 1.485 WHICH WAS RETURNED TO HIM, HE SHOULD RESUBMIT THAT FORM.) 5. THE PETITION HAS BEEN APPROVED. THE BENEFICIARY WILL BE INFORMED OF THE DECISION MADE ON HIS PENDING APPLICATION TO BECOME A LAWFUL PERMANENT RESIDENT (FORM 1-485). 6. THE PETITION HAS BEEN APPROVED. THE PETITION STATES THAT THE BENEFICIARY IS IN THE UNITED STATES AND WILL APPLY TO BECOME A LAW- FUL PERMANENT RESIDENT HOWEVER, AN IMMIGRANT VISA NUMBER IS NOT PRESENTLY AVAILABLE. THEREFORE. THE BENEFICIARY MAY NOT APPLY TO BECOME A PERMANENT RESIDENT. 7. THE PETITION HAS BEEN APPROVED HOWEVER, SINCE THE BENEFICIARY IS A NATIVE OF THE WESTERN HEMISPHERE. HE IS INELIGIBLE TO BE- COME A LAWFUL PERMANENT RESIDENT OTHER THAN BY DEPARTING FROM THE UNITED STATES AND REENTERING IN POSSESSION OF AN IMMI- GRANT VISA ISSUED BY AN AMERICAN CONSUL 8. THE PETITION HAS BEEN REVALIDATED AND FORWARDED TO THE UNITED STATES CONSULATE AT WHICH THE BENEFICIARY WILL APPLY FOR A VISA. ANY INQUIRY CONCERNING THE ISSUANCE OF A VISA SHOULD BE DIRECTED TO THE CONSULATE AT This Service will be unable to answer any inquiry concerning visa issuance. 9. THE PETITION HAS BEEN REVALIDATED. NO NOTICE OF REVALIDATION OF THE PETITION HAS BEEN SENT TO A UNITED STATES CONSULATE AS IT HAS BEEN INDICATED THAT THE BENEFICIARY is APPLYING TO BECOME A LAWFUL PERMANENT RESIDENT. Harish J. Wadhwani-brother Usha J. \"Wadhwani-sister 10. REMARKS: Durupadi J. Wadhwani-mother Saraswati J. Wadhwani-sister Jagatrai M. Wadhwani-father Gobind J. Wadhwani-brother 11) DOCUMENTS WHICH YOU SUBMITTED IN SUPPORT OF YOUR PETITION HAVE SERVED OUR PURPOSE AND ARE RETURNED RAYMOND VERY XXXXXXXX A. ORRIS XXXXXX Form 1-171 (Rev. 11:3-69) Officer in Charge" + }, + { + "id": "A19529822_0052", + "page_index": 52, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0052/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UN. LD STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE 20 West Broadway New York, New York 10007 NAME OF BENEFICIARY NAME AND ADDRESS OF APPLICANT/PETITIONER Durupadi J. Wadhwani Durupadi Jagatrai Wadhwani DATE 97- 11 Horace Harding Expwy August 24, 1972 Lafrak City, New York 11368 FILE NO. A19 529 822 AFTER REVIEW IT HAS BEEN FOUND THAT YOUR APPLICATION/PETITION CANNOT BE ADJUDICATED WITH- OUT ADDITIONAL DOCUMENTS AND/OR INFORMATION. PLEASE COMPLY WITH THE BELOW CHECKED INSTRUCTIONS 1. The above application/petition and its supporting documents are attached. After complying with the indicated instructions, please resubmit the fully documented application/petition to this office. 2. Please complete the blocks on your enclosed application/petition which are checked in red. 3. Furnish the required fee of $ 4. Furnish the birth or baptismal certificate of 5. Furnish the marriage certificate of 6. Furnish proof of death or legal termination of marriage of 7. All foreign language documents must be accompanied by English translations thereof, including certification as to accuracy of translation and competency of translator. 8. Furnish the date and port of each of your entries into the United States and the name of the ship, plane, or other vehicle on which you traveled. 9. Complete Form MA 7-50A. 10. Furnish evidence of your qualifications in accordance with attached instructions for completion of Form MA 7-50A. 11. Your petition to confer preference under section 203(a)(6) of the Immigration and Nationality Act cannot be accepted unless accompanied by a certification from the Secretary of Labor or his designated representative. To apply for the certification, attached Forms MA 7-50 (A and B), and the evidence of the alien's qualifications must be filed in the local state employment service office. The Forms MA 7-50A and B and the evidence will be returned to you, with the certification stamped on the form if a certification is issued. You may then file the petition at this office, at- taching all papers and documents returned to you by the Department of Labor. 12. Submit to your (prospective) employer, completed Form MA 7-50A and evidence of your qualifications. Request your (prospective) employer to complete Form MA 7-50B, and to submit the Forms MA 7-50A and B and evidence of your qualifications to the local state employment service office. If the Labor Department issues a certification, your employer should return to you the evidence of your qualifications and Forms MA 7-50A and B with the certification stamped on Form MA 7-50, for submission with your application. (Forms MA 7-50 A and B with instructions are attached.) 13. You have indicated that you do not intend to seek employment. You must furnish evidence that you have sufficient funds or other means of maintaining yourself in this country. 14. Furnish two photographs, 1 1/2\" x 1 1/2\" with distance from top of head to point of chin 1 1/4\" Machine-made photos not acceptable. 5. Resubmit your application with an approved visa petition in your behalf. Also complete form G-325A where checked in red(Five years employment is required) and return. Form 1-72 RETURN THIS LETTER AND ALL ATTACHMENTS WITH (Rev. 6-1-70) Y YOUR RESPONSE GPO 887-737" + }, + { + "id": "A19529822_0053", + "page_index": 53, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0053/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U ED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE 20 West Broadway New York, New York 10007 NAME OF BENEFICIARY NAME AND ADDRESS OF APPLICANT/PETITIONER Durupadi J. Wadhwani Durupadi Jagatrai Wadhwani DATE 97- 11 Horace Harding Expwy August 24, 1972 Lafrak City, New York 11368 FILE NO. A19 529 822 AFTER REVIEW IT HAS BEEN FOUND THAT YOUR APPLICATION/PETITION CANNOT BE ADJUDICATED WITH- OUT ADDITIONAL DOCUMENTS AND/OR INFORMATION. PLEASE COMPLY WITH THE BELOW CHECKED INSTRUCTIONS 1. The above application/petition and its supporting documents are attached. After complying with the indicated instructions, please resubmit the fully documented application/petition to this office. 2. Please complete the blocks on your enclosed application/petition which are checked in red. 3. Furnish the required fee of $ 4. Furnish the birth or baptismal certificate of 5. Furnish the marriage certificate of 6. Furnish proof of death or legal termination of marriage of 7. All foreign language documents must be accompanied by English translations thereof, including certification as to accuracy of translation and competency of translator. 8. Furnish the date and port of each of your entries into the United States and the name of the ship, plane, or other vehicle on which you traveled. 9. Complete Form MA 7-50A. 10. Furnish evidence of your qualifications in accordance with attached instructions for completion of Form MA 7-50A. 11. Your petition to confer preference under section 203(a)(6) of the Immigration and Nationality Act cannot be accepted unless accompanied by a certification from the Secretary of Labor or his designated representative. To apply for the certification, attached Forms MA 7-50 (A and B), and the evidence of the alien's qualifications must be filed in the local state employment service office. The Forms MA 7-50A and B and the evidence will be returned to you, with the certification stamped on the form if a certification is issued. You may then file the petition at this office, at- taching all papers and documents returned to you by the Department of Labor. 12. Submit to your (prospective) employer, completed Form MA 7-50A and evidence of your qualifications. Request your (prospective) employer to complete Form MA 7-50B, and to submit the Forms MA 7-50A and B and evidence of your qualifications to the local state employment service office. If the Labor Department issues a certification, your employer should return to you the evidence of your qualifications and Forms MA 7-50A and B with the certification stamped on Form MA 7-50, for submission with your application. (Forms MA 7-50 A and B with instructions are attached.) 13. You have indicated that you do not intend to seek employment. You must furnish evidence that you have sufficient funds or other means of maintaining yourself in this country. 14. Furnish two photographs, 1 1/2\" x 1 1/2\" with distance from top of head to point of chin 1 1/4\". Machine-made photos not acceptable. 15. Resubmit your application with an approved visa petition in your behalf. Also complete form G-325A where checked in red(Five years employment is require and return. LP Form I-72 RETURN THIS LETTER AND ALL ATTACHMENTS WITH (Rev. 6-1-70) Y YOUR RESPONSE GPO 887.737" + }, + { + "id": "A19529822_0054", + "page_index": 54, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0054/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Petition to Classify Status of Alien Relative for Issuance of Immigrant Grant Visa, Form I-130" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States", "India"] + }, + "years": { + "ms_years_nlp_v1": [1943, 1937, 1935, 1972, 1934, 1945, 1948, 1906, 2023, 1940, 1932] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 IMMI & NATZ SERVICE Form approved. 1972 MAY MAST H PM 8 48 Budget Bureau No. 43 - R401.4. Date filed PETITION TO Fee stamp CLASSIFY STATUS OF $ 10,00 FEE PAID No. 218A-5 ALIEN RELATIVE FOR PITTSBURGH, PA. Immigration and Naturalization Service ISSUANCE OF IMMI- Pittsburgh, Pa.m+F GRANT VISA Date MAY 11 1972 Verified by med TO THE SECRETARY OF STATE: The petition was filed on May 11,1972 Remarks The petition is approved for status under section: SPOUSE, U.S. APPROVED INS 201 (b) CHILD 203(a) (2) DATE OF ACTION 201 (b) PARENT 203 (a) (4) JUN Z1972 DD DISTRICT 203 (a) (1) 151 PHILA., PA. (PETITIONER IS NOT TO WRITE ABOVE THIS LINE) 1. Petition is hereby made to classify the status of the alien beneficiary for issuance of an immigrant visa as: (Check one) The spouse, child (regardless of age), parent, brother, or sister of a United States citizen. The spouse or unmarried child (regardless of age) of an alien lawfully admitted to the United States for permanent residence. Block I. - Information About Alien Beneficiary A20-222-862 2. Name (Last, In CAPS) (First) (Middle) 3.Do Not Write in This Space 4. Relationship of beneficiary to petitioner WADHWANI DURUPADI JAGATRAI MOTHER 6. Is beneficiary related to you by adoption? 5. Other names used; Married woman give maiden name BHAGWANANI DURUPADIZISAR MULRAJ NO 9. Beneficiary's marital status: 7. Place of birth (Country) 8. Date of birth (Month, day, year) Married Widowed Divorced WEST PAKISTAN Single NOV 28,1906 10. Petitioner's name (Last in CAPS) (First) 11. Has this beneficiary ever been in the U.S.? (Middle) WADHWANT BHAGWAN JAGATRAI Yes No 12. Name of beneficiary's spouse, if married, and date and country of birth (Omit this item if petition is for your spouse) JAGATRAI MULRAM WADHWANI NOV 5, , 1906 WEST PAKISTAN 13. Names, birthdates and countries of birth of beneficiary's children, if any SARASWATI 9/5/1932 - W.PAK KAMALA 1 7/17/1935 - W.PAK. AND GOBIND 4/1/1934 NARAIN - 3/26/1943 MYSELF MOHAN - 8 / 1 / 1937 is VISHNU 1 7/29/1945. HARISH 1 12/16/1940 - USHA - 6 / 21 / 1948 - INDIA 14. Full address of beneficiary's spouse and children, if any (Omit this item if petition is for your spouse) APT. 4A, 41-18,29th ST. LONG ISLAND CITY N.Y.CITY N.Y 11101 15. If this petition is for your spouse or child, give the following: NOT APPLICABLE a. Date and place of your present marriage b. Number of your prior marriages c. Number of prior marriages of spouse d. Last address at which you and your spouse resided together For Statist!CA (Forme From G-2To? (Town or city) (State or Province) (Country) Received No.) (Number and street) (Month) (Year) (Month) (Year) MAY 1 5 1972 JUN 7.1972 16. If this petition is for a child, (a). Is the child married? (b) Is the child your adopted child? If so, give the names, dates, and places of birth of all other children adopted by you. If none, so state NOT APPLICABLE 015 NOT CABLE 17. If this petition is for a brother or sister, are both your parents the same as the alien's parents? If not, submit a separate statement giving full details as to parentage, dates of marriage of parents, and the number of previous marriages of each parent. 18. If separate petitions are also being submitted for other relatives, give names of each and relationship to petitioner GOBIND, MOHAN HARISH VISHNY -BROTHERS SARASWATI, USHA - SISTERS, JAGATRAI - FATHER 19. Have you ever filed a petition for this alien before? No If so, give place and date of filing and result: Form I-130 UNITED STATES DEPARTMENT OF JUSTICE - Immigration and Naturalization Service (Rev. 10-15-69)" + }, + { + "id": "A19529822_0055", + "page_index": 55, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0055/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Adjustment of Status to Lawful Permanent Resident,, N-456." + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972, 1938] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Block I. - Information About Alien Beneficiary (Continued) 20. Address in the United States where beneficiary will reside (City) (State) 203 KYLINE DRIVE, CALIFORNIA PA 5419 21. Address at which beneficiary is presently residing (Number and street) (Town or city) (Province or State) (Zip Code, If in U.S.) 203 SKYLINE DRIVE CALIFORNIAPA 15419 22. If beneficiary is in the United States, give the following information concerning beneficiary: a. He last arrived in the U.S. on (Month) (Day) (Year) b. He last arrived in U.S. as (Visitor, student, exchangealien crewman, stowaway, etc.) APRIL 8 1972 VISITOR C. Show date beneficiary's stay expired or will expire as shown on his Form I-94 or I-95; AUG. 8, 1972 d. Name and address of present employer Date alien began this employment NONE NOT APPLICABLE 23. Check the appropriate box below and furnish the information required for the box checked: Beneficiary will apply for a visa abroad at the American Consulate in (City in foreign country) (Foreign country) Beneficiary is in the United States and will apply for adjustment of status to that of a lawful permanent resident in the Office of the Immigration and Naturalization Service at NEW YORK PITTSBURGH, PENNSYLVAN (City) (State) -IA If the application for adjustment of status is denied the beneficiary will apply for a visa abroad at the American Consulate in BOMBAY SADIA (City in Foreign Country) (Foreign Country) Block II. - Information About Petitioner 24. My name is (Last) (First) (Middle) 25. If you are a married woman, give your maiden name WADHWANI BHAGWAN JAGATRAI NOT APPLICABLE 26. I reside in the United States at (Apt. No.) (Number and street) (Town or city) (State) (ZIP Code) 203 SKYLINE DRIVE CALIFORNIA PA 15419 27. Address abroad (if any) (Number and street) (City or town) (Province) (Country) NONE 28. I was born: (Month) (Day) (Year) In: (City or town) (State or Province) (Country) 12-22-1938 KARACHI SIND WEST PAKISTAM 29. If you are a citizen of the United States, give the following: a Citizenship was acquired: (Check one) through birth in the U.S. through parents through naturalization through marriage (1) If acquired through naturalization, give name under which naturalized, number of naturalization certificate and date and place of naturalization: SHAGWAN JAGATRAI WADHWANI 9694525 3110172 is DIST (2) If acquired through parentage or marriage, have you obtained a certificate of citizenship in your Down name based on such acquisition? (a) If so, give number of certificate and date and place of issuance: (b) If not, submit evidence of citizenship in accordance with Instruction 3a. (2). b. Have you or any person through whom you claim citizenship ever lost United States citizenship? No If so, attach detailed explanation on separate sheet. 30. If you are a lawful permanent resident alien of the United States, give the following: NOT APPLICABLE a. Alien Registration Number: b. Date, place, and means of admission for lawful permanent residence A c. Have you ever lost status as a lawful permanent resident alien? If so, explain: (If you are married to a citizen of the United States, read instruction 1b carefully) Block III. - Oath or Affirmation of Petitioner I swear (affirm) that I know the contents of this petition signed by me and that the statements herein are true and correct. Signature of petitioner (See Instruction No. 5) Bhapwen Jagatrai Wadhwan Subscribed and sworn to (affirmed) before me this 21th day of april A.D. 1972 at Brownsville fa. (SEAL) My commission expires 7-24-72 nounh notary (Signature of officer administering oath) (Title) Block IV. - Signature of Person Preparing Form, if Other Than Petitioner I declare that this document was prepared by me at the request of the petitioner and is based on all information of which I have any knowledge. (Signature) (Address) (Date)" + }, + { + "id": "A19529822_0056", + "page_index": 56, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0056/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "AFFIDAVIT" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["India"] + }, + "years": { + "ms_years_nlp_v1": [ + 1943, 1937, 1935, 1934, 1945, 1948, 1972, 1974, 2023, 1926, 1933, 1940, 1932, 1906 + ] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 AFFIDAVIT TO WHOM IT MAY CONCERN: lie, DURUPADI JAGATRAI WADHWANI (Maiden name_ ISAR MULRAJ BHAG- WANANI) and JAGATRAI MULRAM WADHWANI solemnly declare that we were married on April 17th., 1926 in KHAIRPUR, WEST PAKISTAN and we have never been separated or divorced. We, further solemnly devlare that the following persons were born to both of us on the dates and at places as shown below: 1. SARASWATI JAGATRAI WADHWAN I_DADV, WEST PAKISTAN 7/5/1932 2. GOBIND JAGATRAI WADHWANI SUKKUR, WEST PARISTAN 4/1/1934 3. KAMALA JAGATRAI WADHWANI SUKKUR, WEST PARISTAN 7/17/1935 4. MOHAN JAGATRAI WADHVANI KARACHI, WEST PAKISTAN 8/1/1937 5. BRAGWAN JAGATRAI WADHWANI__AARACHI, WEST PAKISTAN_ 12/22/1933 6. HARISH JAGATRAI WADHWANI_ KARACHI, WEST PAKISTAN__12/16/1940 7. NARAIN JAGATRAL WADHWANI_ KARACHI, WEST PAKISTAN__K 3/26/1943 8. VISHMO JACATRAI WADHWANI KARACHI, WEST PAKISTAN 7/29/1945 - 9. USHA JAGATRAL WADHWANI BOMBAY, INDIA 6/21/1948 I, Durupadi Jagatrai Wadhwani, further solemnly declare that I was born on NOVEMBER 28th., ,1906 at KARACHI, WEST PAKISTAN, To Mr. MULRAJ BHAGWANANI and Mrs. LACHMI BHAGWANANI. I, JAGAPRAI .ULRAM WADHWANI, further solemnly declare that I was born on NOVEMBER 5th., 1906 at SUKKUR, WEST PAKISTAN, to Mr. MULRAN WADHWANI and Mrs. LACHHMI WADHVANI. 8. S. INSIGRATION NATURALIZATION I have convered this document with the original and certify that it is 31951281215 55,255 a true.cop JUN 12 1972 DURUPADI JAGATRAI WADHWANI DATE IMMIGRANT INSPECTOR (PIT) Swams acculated before me this 5th JAGATRAI MULRAM WADHWANI day of may 972 Jefelin Muleum huddurm WALTER G. GOLEMBIEWSKI, Notary Public Centerville, Washington Co., Pa. My Commission Expires Augs 19, 1974 ahoth motory" + }, + { + "id": "A19529822_0057", + "page_index": 57, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0057/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "INDEX CARD, G-361 (Rev. 4-1-76) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA 7/13/2023 NAME (LAST IN CAPS) (FIRST) (MIDDLE) SNDX CODE NO. WADHWANI, DURUPADI J. W-350 A19 529 822 Alias (INCL: A20 222 862) P.O.E. DATE OF ENTRY TYPE ADM. MO.-DAY-YR. OF BIRTH COUNTRY OF BIRTH NYC 11/2/72 Z-2 11/28/06 PAKISTAN Type of Action: Name of Spons or: CONSOL Action on VP: (Decision) (Mo.) (Day) (Year) (Section) (Forwarded to Consul at:) Street Address (City, State, and Zip Code) FCO Date FCO Date FCO Date 3/18/81 NYC nc FCO Date FCO Date FCO Date Form G-361 (Rev. 4-1-76) N INDEX CARD Triplicate" + }, + { + "id": "A19529822_0058", + "page_index": 58, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0058/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "HOME BOUND PRE-INTERVIEW WORKSSHEET, 19 529 822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023, 2001] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 HOME BOUND PRE-INTERVIEW WORKSHEET A# 19 529 822 APPLICANT NAME: WADHWANI DURUPADI J. (Family) (Given Name) (MI) CURRENT ADDRESS: (COUNTY) MORRIS 57 MANGER ROAD CEDAR KNOLLS NJ 07927 (# & STREET) (CITY) ( (STATE) (ZIP CODE) TELEPNONE # Applicant notified: YES NO Date and time of appointment Special Instructions: CONTACTLETTER JANUARY 29, 2001 Interven Schedule - for 3/21/01 N- 648 - 3/21/01 spoke with Son Harish on 9-24-01 will not Persue application will send something in the Mail." + }, + { + "id": "A19529822_0059", + "page_index": 59, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0059/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Administratively Closed, I-760A" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 U.S. Department of Justice Immigration and Naturalization Service 970 Broad Street Newark, New Jersey 07102 Alien Number: 19 529 822 Date : 10/26/01 ADMINISTRATIVELY CLOSED Failed to appear for : ASC Processing on Interview on 3/21/01 Case may be reopened on Service Motion at applicant's request within one year of this date. Andrea J. Quarantillo District Director" + }, + { + "id": "A19529822_0060", + "page_index": 60, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0060/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Department of Justice Immigration and Naturalization Service N-4 Continuation Processing Worksheet, N-650C ( (Rev. 1/1/98)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA. 7/13/2023 U.S. Department of Justice Immigration and Naturalization Service N-400 Continuation Processing Worksheet A# 19 529 822 ADMINISTRATIVE CLOSURES Initials Date Remarks Administratively Closed M.N 10/26/01 Closed Remarks for fader to respond MR 10/20/07 OATH CEREMONY Initials Date Removed from Oath ceremony FAILED TO APPEAR FOR OATH Initials Date Remarks No show on: Indicate date of no-show under Remarks No show on: MOTIONS TO REOPEN Initials Date Remarks (Only circle standard annotations when and if applicable) (GRANTED) (DISMISSED) HEARING OFFICER Initials Date Remarks (Only circle standard annotations when and if applicable) Appeared for appeal hearing No show on: Initial and date: Appeal continued (put reasons under remarks) Recommendation on appeal, if supervisory CIRCLE RECOMMENDATION: (GRANT) (AFFIRM DENIAL) review required (criminal, T-file, and /or disability cases) SUPERVISORY CONCURRENCE WITH Initials Date Remarks (Indicate non-concurrence issue(s) within remarks) OFFICER'S RECOMMENDATION OFFICER Initials Date CIRCLE DECISION: Indicate appeal decision under remarks (GRANTED) (AFFIRM DENIAL) Reverified (N-336 cases only) / Reverifier's Signature Date * *Additional remarks: Spok with Son Harish J Wadhwani on 9/24/01 He Stated he would not persue the N 400 application Ade also slated he would send a letter in regard to wethdrawn the N 400 application. M.N 10/26/01 * Check here if the reverse side is used Form N-650C (Rev. 11/1/98)" + }, + { + "id": "A19529822_0061", + "page_index": 61, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0061/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 N-400 PROCESSING WORKSHEET A# 019 529 822 CLERICAL Initials Date Remarks Fee was paid. Record at arted here Mc 8/16/93 FD-258 \"masthead\" is complete, Set I accurate, and legible. Set 2 If necessary, A-number is zero filled Set 1 on FD-258. (e.g., A40123456 to A040123456) Set 2 FD-258 (fingerprints) were sent to FBI. Set I Set 2 All receipt data entry was completed. (NACS/CLAIMS-GUI) DM 4/6/99 If Non-NACS site, G-325 was sent to FBI. and copy retained in file. (SCs If military, G-325B and N-426 were sent, and copies retained in file. FD-258 Control # 5J 9-29-00 exempt A-file was located in your own office. AC 7/20/97 G/545 B-496 If not, initial A-file transfer request was made. See attached MC 8/16/97 If necessary, 2nd A-file transfer request was made. (30 calendar days) MC 8/14/97 If necessary, 3rd A-file transfer request was made. (30 calendar days) Final status of A-file transfer request. RT 7.26.99 A-file relates to the applicant. AC 7/20/99 Charged to Naty PAGE 1 Rev. May 23-97 Attachment 2" + }, + { + "id": "A19529822_0062", + "page_index": 62, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0062/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "N-4 Processing Work Sheet - Newark, New Jersey, 19-529-822" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 DEPARTMENT OF U.S. Department of Justice Immigration and Naturalization Service 970 Broad Street Newark. New Jersey 07102 FCO:,NYC N-400 PROCESSING WORK SHEET-NEWARK - NEW JERSEY A# 19-529-822 NMR CLERICAL Initials Date Fee was paid Remarks FD-258 sent to FBI Post Audit Review All receipt data entry completed (NACS) Initial A-file request made (non NACS office) 2nd A-file request made (20 days) M.R.B. 5/30/97 3rd A-file request made (20 days) Photos attached to application G-325B; N-426, if any, sent out OFFICER Initials Date Meets § 312 English requirements Remarks Meets § 312 civics requirements Qualifies for § 312 disability exception, if applicable Residence, physical presence established Good Moral Character established Attachment to Constitution established FD 258 authorization # Circle One: CNF, N, I, P, R * Other eligibility requirements met SUPERVISOR (for review and concurrence if meets criteria listed below) Initials Date Remarks Applicants with criminal histories or other GMC determinations Applicant with complex statutory eligibility issues Applicant approved on basis of T-file Qualifies for § 312 disability exception, if applicable * CNF Case not found in FBI QUERY - Hold N No criminal record found - Okay to process I Criminal record exists P Prints still being processed - Hold until record & disposition received & resolved - Hold R Prints rejected by FBI - Hold and request new prints" + }, + { + "id": "A19529822_0063", + "page_index": 63, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0063/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Processing Sheet, I-485 ( (2445)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE 45 Processing Sheet or Tetition Form N I-485 (245) File No. A-19529822 IR Z-2 CHECK ONE -- SUBJECT TO FOREIGN STATE CHARGE EXEMPT FOREIGN STATE CHARGE (IMMEDIATE RELATIVE OR SPECIAL IMMIGRANT) SECTION PRIORITY DATE COUNTRY OF CHARGEABILITY PREFERENCE 203 (a) O NONPREFERENCE 203 (a) (8) DOCUMENTS NEEDED MEDICAL & INTERVIEW DISTRIBUTE (If Checked) (If Checked) Date Mailed DATE Delay Notice XXXXXXXXXXXXXXX B/C MEDICAL 11/1 I-181 to State M/C INTERVIEW (045 11/2 G-325A Sheet #1 9/12/72 Photos RESCHEDULED 2 Support MEDICAL 3 I-508 INTERVIEW 4 I-88 Other Consulate : (Location CATEGORY A Prepare I-486 with date 45 days beyond date G-325A sent. Type I-151, omitting entry date, place and lamination. Insert I-151 in file with 245 packet (I-357; G-153). CATEGORY B Prepare I-486, omitting date and insert in file. Type I-151, omitting entry date, place and lamination. Insert in file with 245 packet (I-357; G-153) Officer's Instructions: Closent 11/3/72/97 Date 4972 NOV 1-151 Issued CLOSEOUT ACTION / DATE 2 NOV KD INITIAL 1972 1. PREPARE 1-151 DISTRIBUTE (If Checked) : Notify attorney or representative Distribute 1-508 I-181 to State Dept. I-181 to Consulate AT Notify Selective Service I-181 to Sel. Serv. Send cc/1-181 to Remarks. This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Keep this sheet on top of all material in file until initial decision le made GPO 946.883 Form I-468 (Rev. 11-1-70) Mw" + }, + { + "id": "A19529822_0064", + "page_index": 64, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0064/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, A19 529 822 ( (245)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE A19 529 822 (245) be FILE NO.: DATE: October 19, 1972 MEDICAL EXAMINATION AND IMMIGRATION INTERVIEW Durupadi J. Wadhwni 97-11 Horace Harding Expuy. Apt. 18-K Lefrak, City, New York 11368 INSTRUCTIONS FOR MEDICAL EXAMINATION A MEDICAL EXAMINATION IS NECESSARY AS PART OF YOUR APPLICATION FOR ADJUSTMENT OF STATUS TO THAT OF A PER. MANENT RESIDENT. WHEN YOU APPEAR FOR THE MEDICAL EXAMINATION BRING WITH YOU THIS LETTER, THE TWO ATTACHED COPIES, AND THE FOLLOWING: 1. X-RAY FILM (14\" x 17\") OF YOUR CHEST, UNLESS YOU ARE UNDER 11 YEARS OF AGE, AND A REPORT BY A LICENSED PHYSICIAN INTERPRETING IT. FILM MUST NOT BE MORE THAN 30 DAYS OLD. 2. SEROLOGY REPORT, UNLESS YOU ARE UNDER 15 YEARS OF AGE. SEROLOGIC TEST FOR SYPHILIS MUST NOT BE MORE THAN 30 DAYS OLD. THIS X-RAY AND TEST MUST BE ACCOMPLISHED BY A LICENSED PHYSICIAN OR A STATE OR LOCAL HEALTH DEPARTMENT APPROVED LABORATORY. IF YOU DO NOT HAVE A PERSONAL PHYSICIAN, YOU MAY WISH TO TELEPHONE YOUR STATE OR LOCAL HEALTH DEPARTMENT FOR THE NAME OF AN APPROVED LABORATORY THAT MAY BE ABLE TO PERFORM THE X-RAY AND TEST REQUIRED. PLEASE NOTE THE BOX CHECKED BELOW WITH REGARD TO YOUR MEDICAL EXAMINATION. AN APPOINTMENT HAS BEEN MADE FOR YOU TO BE EXAMINED BY A PHYSICIAN OF THE U.S. PUBLIC HEALTH SERVICE AT: November 1, 1972 ADDRESS: DATE: Between 8:00 AND 10:00 AM TIME: PLEASE ARRANGE FOR YOUR MEDICAL EXAMINATION WITH THE BELOW LISTED PHYSICIAN AT THE ADDRESS SHOWN. THE EXAMINATION SHOULD BE COMPLETED BEFORE PHYSICIAN'S NAME AND ADDRESS: PLEASE SHOW THE COPIES OF THIS LETTER TO YOUR PHYSICIAN (OR LABORATORY) PERFORMING THE EXAMINATION AND FURNISH HIM WITH YOUR SIGNATURE, WRITTEN IN HIS PRESENCE FOR INCLUSION WITH HIS REPORT. INSTRUCTIONS FOR IMMIGRATION INTERVIEW AN APPOINTMENT HAS ALSO BEEN MADE FOR AN INTERVIEW BEFORE AN IMMIGRATION OFFICERAT ADDRESS: DATE: November 2, 1972 10:45 AM ErS TIME: BRING WITH YOU AT THE TIME OF INTERVIEW THE ITEMS CHECKED BELOW: THE SEALED ENVELOPE FURNISHED TO YOU BY THE PHYSICIAN WHO PERFORMED THE MEDICAL EXAMINATION. YOUR PASSPORT AND FORM 1-94 Asfidavit of support. IF YOU DO NOT SPEAK ENGLISH, A PERSON OF YOUR OWN SEX WHO CAN ACT AS INTERPRETER E: SHOULD ACCOMPANY YOU TO THE MEDICAL EXAMINATION AND IMMIGRATION INTERVIEW. FAILURE TO KEEP THESE APPOINTMENTS AND TO BRING THE REPORTS AND DOCUMENTS REQUIRED WILL DELAY YOUR CASE. DISTRICT DIRECTOR FILE COPY" + }, + { + "id": "A19529822_0065", + "page_index": 65, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0065/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Processing Sheet, I-485 ( (245)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet application or Ectition Form No. I-485 (245) File No. A19529822 CHECK ONE SUBJECT TO FOREIGN STATE CHARGE EXEMPT FOREIGN STATE CHARGE (IMMEDIATE RELATIVE OR SPECIAL IMMIGRANT) SECTION PRIORITY DATE COUNTRY OF CHARGEABILITY PREFERENCE 203 (a) () NONPREFERENCE 203 (a) (8) DOCUMENTS NEEDED MEDICAL & INTERVIEW DISTRIBUTE (If Checked) (If Checked) Date Mailed DATE Delay Notice XXXXXXXXXXXXXXX B/C MEDICAL I-181 to State M/C INTERVIEW G-325A Sheet #1 Photos RESCHEDULED 2 Support MEDICAL 3 I-508 INTERVIEW 4 I-88 Other Consulate: : (Location CATEGORY A Prepare I-486 with date 45 days beyond date G-325A sent. Type I-151, omitting entry date, place and lamination. Insert I-151 in file with 245 packet (I-357; G-153). CATEGORY B Prepare I-486, omitting date and insert in file. Type I-151, omitting entry date, place and lamination. Insert in file with 245 packet (I-357; G-153) Officer's Instructions: 8/17/72 Resubject your application with an mom Ulsa Petition in also and riturn. checked redinned five years employment DISTRIBUTE (If I-181 to State Dept. I-181 to Consulate AT I-181 to Sel. Serv. XXXXXXXXXXXXXXXXXXXX This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Keep this sheet on top of all material in file until initial decision is made GPO 946-883 Form I-468 (Rev. 11-1-70) fu Paid - NY43825 0110" + }, + { + "id": "A19529822_0066", + "page_index": 66, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0066/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "ROUTE SLIP, Form 1 ( (Rev. 6-16-66)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2023] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Form (Rev. 6-16-66) ROUTE SLIP Date 8/8/20 To Haminin Room Approval Note & Return See me Comment Note & File As requested Necessary action Signature For your informa- Per telephone tion conversation Call me Ext. Remarks FOIA (b)(6) Wadhavani, Usha J . t FOIA (b)(6) Washwani, Same lending 1781 From MAM- Room GPO 956-073 IMMIGRATION AND NATURALIZATION SERVICE" + }, + { + "id": "A19529822_0067", + "page_index": 67, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0067/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 Contd of Application for Status as Permanent Resident NAME: WADHWANI DURYPADI JAGATRAI 7.a (6) HARISH M WEST PAK. 12/16/40 WITH NE - (7) NARAIN M 1, 1, 3/26/43 N.Y.CITY N.Y., U.S.A. (8) VISHNU M 4 \" 7/29/45 BOMBAY INDIA (9) USHA F INDIA 6/21/48 WITH ME" + }, + { + "id": "A19529822_0068", + "page_index": 68, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0068/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION, Form I-171" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [2023, 1972] + } + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 FILES: FOIA (b) (6) A20 222 862 UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SEI FOIA (b)(6) Pittsburgh, Penna. 15222 June 19, 1972 NOTICE OF APPROVAL OR REVALIDATION OF IMMIGRANT VISA PETITION NAME AND ADDRESS OF PETITIONER NAME OF BENEFICIARY Mr. Bhagwan J. Wadwani *See Remarks Below MAIL TO: 203 Skyline Drive CLAS:201 Nation FILE NO California, Penna. 15419 Secs. .203(a)(5) DATE PETITION FILED DATE OF APPROVAL OF TITION May 11, 1972 June 7, 1972 VA Petition approved for relative is valid for duration of relationship to petitioner and status estab- person. If petition is for a person in the professions, arts or sciences, or an employee, the approval Please the ems below which are indicated by \"X\" marks concerning the visa petition filed by you in behalf of the above beneficiary 1. YOUR PETITION TO CLASSIFY THE BENEFICIARY AS AN IMMEDIATE RELATIVE OF A UNITED STATES CITIZEN HAS BEEN APPROVED AND FORWARDED TO THE UNITED STATES CONSULATE AT THIS COMPLETES ALL ACTION BY THIS SERVICE ON THE PETI- TION. THE UNITED STATES CONSULATE, WHICH IS UNDER THE SUPERVISION OF THE DEPARTMENT OF STATE. WILL ADVISE THE BENEFICIARY CON- CERNING VISA ISSUANCE Inquiry concerning visa issuance should be addressed to the Consul. This Service will be unable to answer any inquiry concerning visa issuance 2. IF YOU BECOME NATURALIZED AS A CITIZEN OF THE UNITED STATES AND AN IMMIGRANT VISA HAS NOT YET BEEN ISSUED TO THE BENEFICIARY NOTIFY THIS OFFICE IMMEDIATELY GIVING THE DATE OF YOUR NATURALIZATION AT THE SAME TIME. IF THE PETITION WAS IN BEHALF OF YOUR SON OR TAUCHTER ALSO ADVISE WHETHER THAT PERSON is STILL UNMARRIED THIS INFORMATION MAY EXPEDITE THE ISSUANCE OF A VISA TO THE BEACHILLARY 3. YOUR PETERS FOR PREFERENCE CLASSIFICATION AS SHOWN ABOVE. HAS BEEN APPROVED BY THE SERVICE AND FORWARDED TO THE UNITED STATES CONSULATE AT THIS COMPLETES ALL ACTION BY THIS SERVICE ON THE PETITION THIS s RVIC HAS NORHING TO DO WITH THE ACTUAL ISSUANCE OF VISAS VISAS ARE ISSUED ONLY BY UNITED STATES CONSULS WHO ARE UNDER THE SOUTON OF THE U.S. DEPARTMENT OF STATE UNDER THE LAW ONLY A LIMITED NUMBER OF VISAS MAY BE ISSUED BY THAT DEPARTMENT DURIN EAC YEAR AND THEY MUST BE ISSUED STRICTLY IN THE CHRONOLOGICAL ORDER IN WHICH PETITIONS WERE FILED FOR THE SAME CLAS- SIFIC. WHEN THE BENEFICIARY'S TURN IS REACHED ON THE VISA WAITING LIST. THE UNITED STATES CONSUL WILL INFORM HIM AND CON- SIDER SSUANCE OF THE VISA Inguir concerning visa issuance should be addressed to the Consul. This Service will be unable to answer any inquiry con- cerning to issuance. THE PETITION HAS BEEN APPROVED THE PETITION STATES THAT THE BENEFICIARY IS IN THE UNITED STATES AND WILL APPLY TO BECOME A LAW- FUL PERMANENT RESIDENT THE ENCLOSED APPLICATION FOR THIS PURPOSE (FORM 1-485) SHOULD BE COMPLETED AND SUBMITTED BY THE BENEFICIARY IN ACCORDANC WITH THE INSTRUCTIONS CONTAINED THEREIN (IF THE BENEFICIARY HAD PREVIOUSLY SUBMITTED FORM 1-485 WHICH WAS RETURNED HIM. HE SHOULD RESUBMIT THAT FORM.) 5. THE PETITION HAS BEEN APPROVED THE BENEFICIARY WILL BE INFORMED OF THE DECISION MADE ON HIS PENDING APPLICATION TO BECOME ALAWFUL PERMANENT RESIDENT (FORM 1-485). 6. THE PETITION HAS BEEN APPROVED THE PETITION STATES THAT THE BENEFICIARY IS IN THE UNITED STATES AND WILL APPLY TO BECOME A LAW- FUL PERMANENT RESIDENT. HOWEVER AN IMMIGRANT VISA NUMBER IS NOT PRESENTLY AVAILABLE. THEREFORE. THE BENEFICIARY MAY NOT APPLY TO BECOME A PERMANENT RESIDENT 7. THE PENTION HAS BEEN APPROVED TOWEVER. SINCE THE BENEFICIARY IS A NATIVE OF THE WESTERN HEMISPHERE. HE IS INELIGIBLE TO BE- COME ALAWFUL PERMANENT RESIDE OTHER THAN BY DEPARTING FROM THE UNITED STATES AND REENTERING IN POSSESSION OF AN IMMI- GRANT VISA ISSUED BY AN AMERICAN CONSUL 8. THE PETITION HAS BEEN EVALIDATED AND FORWARDED TO THE UNITED STATES CONSULATE AT WHICH THE BENEFICIARY WILL APPLY FOR A VISA. ANY INQUIRY CONCERN ISSUANCE OF A VISA SHOULD BE DIRECTED TO THE CONSULATE AT This Service be unable any inquiry concerning visa issuance. 9. THE PETITION AS BEEN REVALIDATED NO NOTICE OF REVALIDATION OF THE PETITION HAS BEEN SENT TO A UNITED STATES CONSULATE AS IT HAS BEEN IND ATED THAT THE BENEFICIARY is APPLYING TO BECOME A LAWFUL PERMANENT RESIDENT Harish J. Wadhwani-brother Usha J. Wadhwani-sister 10. REMARKS Durupadi J. Wadhwani-mother Saraswati J. Wadhwani-sister Jagatrai M. Wadhwani-father Gobind J. Wadhwani-brother 11) X DOCUMENTS WHICH YOU SUBMITTED IN SUPPORT OF YOUR PETITION HAVE SERVED OUR PURPOSE AND ARE RETURNED RAYMOND VERY YOURS- A. MORRIS Form 1-171 (Rev. 11-3-69) Officer in Charge" + }, + { + "id": "A19529822_0069", + "page_index": 69, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0069/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19529822", + "full_text": "Screened by NARA, 7/13/2023 UNITED STATES DEPARTMENT OF JUSTICE FOIA (b)(6) IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet Application or I-130's 6 Petition Form No. File No. I-1710 (b benefit) GI-485's o docu checkmark_ntt Return file# / to NYC Transfer 3,4,5 .6 to NYC. Recides r I-4855 to be filed 6-7-72 HAS 6-19-72 IF This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Keep this sheet on top of all material in file until initial decision is made Form I-468 (Rev. 11-1-70)" + }, + { + "id": "A19529822_0070", + "page_index": 70, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19529822_0070/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Screened by NABAE 7/13/2023 CODE NO., G-361 (Rev. 10-1-70) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Pakistan"] + } + }, + "anumber": "A19529822", + "full_text": "NAME (LAST) IN CAPS) Streened by NO. WADHWANI DURUPADI JAGATRAI A20-222-862 Alias CANCELLE Now A19529822 P.O.E. DATE OF ENTRY TYPE ADM. MO.-DAY-YR. OF BIRTH COUNTRY OF BIRTH - 4-8-72 B-2 11-28-06 W. Pakistan Type of Action: Name of Sponsor: VP (I-130) 5-11-72 WADHWANI BHACWAN Action on VP: (Decision) (Mo.) (Day) (Year) (Section) (Forwarded to Consul at:) Street Address (City, State, and Zip Code) 203 Sky ine Dr., California, Pa. 15419 FCO Date FCO Date FCO Date PIT 5-12-72 Acession No. Box No. 85 8 0 0003 Form G-361 (Rev. 10-1-70) N INDEX CARD Triplicate" + }, + { + "id": "A21203456_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, I-181" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1983] + } + }, + "anumber": "A21203456", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place LOS File No. A 21 203 456 Status as a lawful permanent resident of the United States is accorded: Name tA tHi VIEN SEX DATE o- BIRTH Street F Address 927 Centennial st #4 11-01 85 PLACE OF BIRTH City, State, Zip Las Angelic Ca. 90012 Vietnan NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) STATELESS PRIORITY DATE REMARKS PAROLED REFUGEE-P.L. 96-212 NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244 ( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 75 As of 10 15 Los (Other law Specify) at (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) /C-6 DATE OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION U.S. APPROVED Lnunez 7-0783 DD JUL 1983 DISTRICT FOR USE BY VISA CONTROL OFFICE Date LOS ANGELES. CALIF Foreign State UP FRONT PROCESSED 1/1/19 Preference Category Number at LOS on Month of Issuance I.A.W. CO 1493-P/dtd. 2/12/82 Signed (Visa Office. Dept. of State) Form I-357 delivered Form I-89 to Immigration Card Facility (Date) CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of immigrant visa number. OK to adjust 7.7.83 Form I - 181 (Rev. 11-26-79) Y without medical from (Page 11" + }, + { + "id": "A21203456_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "CAMP PENDLETON INS AGENCY CHECK LIST A 21 203 , 456 RECEIVED FBI CIA 000 DOD STATE REMARKS DEA" + }, + { + "id": "A21203456_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456" + }, + { + "id": "A21203456_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "is" + }, + { + "id": "A21203456_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "INDEX CARD, G-361 (Rev. 10-1-70) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam"] + }, + "years": { + "ms_years_nlp_v1": [1885] + } + }, + "anumber": "A21203456", + "full_text": "NAME (LAST IN CAPS) (FIRST) (MIDDLE) SNDX CODE NO. TA THI VIEN TOOO A21 203 456 Alias P.O.E. DATE OF ENTRY TYPE ADM. MO.-DAY-YR. OF BIRTH COUNTRY OF BIRTH V2 8/9/1885 VIETNAM Type of Action: Name of Sponsor: REFFUCER PENDLETON Action on VP: (Decision) (Mo.) (Day) (Year) (Section) (Forwarded to Consul at:) Street Address (City, State, and Zip Code) FCO Date FCO Date FCO Date SND 5/6/75 Acession No. Box No. Form G.361 (Rev. 10-1-70) N INDEX CARD Triplicate" + }, + { + "id": "A21203456_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456" + }, + { + "id": "A21203456_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "mil" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "EMPLOYMENT AUTHORIZED, FORM I-94" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + } + }, + "anumber": "A21203456", + "full_text": "Family Name (Capital Letters) First Name Middle Initial TA THI VIEN TOOO Country of Citizenship Passport or Alien Registration Number Permit Number TIETNAM A21 203 456 009 50 12 United States Address (Number, Street, City and State) 90710 XX 25000 SOUTH NORMANDIE AVENUE 7 HARBOR CITY 7 CA. Airline and Flight No. or Vessel of Arrival Passenger Boarded at MIL SGN Number, Street, City, Province (State) and Country of Permanent Residence C/O; ST. MATTHEW LUTHERAN CHURCH Month, Day and Year of Birth PAROLED PURSUANT TO SEC.212(d)(5) OF THE I & N ACT TO: V ?/?/1885 INDEFINITE City, Province (State) and Country of Birth PURPOSE: XN SON TAY , VIETNAM VIETNAM REFUGEE Visa Issued at EMDI LOYMENT AUTHORIZED (Port) (Date) (Officer) Month, Day and Year Visa Issued SNDP 10/15/75 B FORM I-94 I" + }, + { + "id": "A21203456_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "IMPORTANT NOTICE, FORM 1-94 (Rev. 9-1-73)N (Parole Edition)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A21203456", + "full_text": "IMPORTANT NOTICE Your arole into the United States does not consti tute an admission under the terms of the Immigra- tion and Nationality Act. You must observe the conditions of the parole and failure to comply with any of those conditions may result in the revocation of your parole. If, for any reason, you do not pro- ceed to the address shown on the face of this form, or if after arrival, you change your address you must immediately report to the nearest office of the Immigration and Naturalization Service. You must also report to the nearest office of the Immigration and Naturalization Service if your status is not otherwise changed or if you do not leave the United States before the termination date shown. UPON DEPARTURE FROM THE UNITED STATES By sea or air surrender this permit to trans- portation line. Over Canadian border, surrender this permit to Canadian Immigration Officer. Over Mexican border, surrender this permit to United States Immigration Officer. N DEPARTURE RECORD Port: Date: Carrier: To: (Country of disembarkation) UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service Form Approved Budget Bureau No. 43-R311.7 ARRIVAL - DEPARTURE RECORD FORM I-94 (Rev. 9-1-73)N (Parole Edition)" + }, + { + "id": "A21203456_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet Application or Petition Form No. File No. A 21 203 456 7-07-83 G-325 (1) Ident. (2) Rec I-181b FD-258 aT Minor - Interview Waived 4 Born 1885 This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Keep this shoot on top of all material in file until initial decialon is made Form I-468 (Rev. 11-1-70)" + }, + { + "id": "A21203456_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 10-1-74)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "reason": { + "reason_llm_v1": "OTHER" + }, + "nationality": { + "nationality_llm_v1": "VIETNAM" + } + } + }, + "anumber": "A21203456", + "full_text": "Carbons: If ty FORM G-325A (REV. 10-1-74) Y Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. TA VIEN THI FEMALE 12/01/85 VIETNAM (If any) A 21 - 203456 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. one FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) SON TAY , VIETNAM (If any) 586-328421 CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG MOTHER (Maiden name) NGUYEN THE LAO VIETN NAM HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE PHAN Huy LIEU LIEU unk Vietnan Vulnant Deceased FORMER HUSBANDS OR WIVES( (if none;so state) FAMILY NAME (Fo wife, give maiden name) m/ FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 927 centennial STF4 LOSANGELES C.A U.S.A 10 82 PRESENT TIME 1212 WATERLOO ST 10 81 10 82 827NBeAuDRy CA 10 77 10 81 25000 S. NORMAN DiE HARboRCiTy CA 10 75 10 77 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR ReTiRED PRESENT TIME Too OCD Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS X 7-8-33 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TA VIEN THI A-21-203-456 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: FORM G-325A (1) Ident." + }, + { + "id": "A21203456_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "I-944 (Rev. 9-173), I-902" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1885] + } + }, + "anumber": "A21203456", + "full_text": "Family Name (Capital Letters) First Name Middle Initial TA THI VIEN TOOO Country of Citizenship Passport or Alien Registration Number Permit Number VIETNAM A21 203 456 009 50 1 12 FORM United States Address (Number, Street, City and State) 90710 XM 25000 SOUTH NORMANDIE AVENUE HARBOR CITY of CA. 1-94 Airline and Flight No. or Vessel of Arrival Passenger Boarded at (Rev MIL SGN Number, Street, City, Province (State) and Country of Permanent Residence C/O: ST. MATTHEW LUTHERAN CHURCH Month, Day and Year of Birth PAROLED PURSUANT TO SEC.212(d)(5) OF THE I & N ACT TO: V 7/8/1885 INDEFINITE City, Province (State) and Country of Birth PURPOSE: (Parole XM SON TAY VIETNAM VIETNAM REFUGEE Visa Issued at Editional (Port) (Date) (Officer) Month, Day and Year Visa Issued SNDP 10/15/75" + }, + { + "id": "A21203456_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "Name & address of spouse File No. Name & address of nearest relative abroad, Names & addresses of relatives or friends in U.S. Remarks: Inadmissable under Section 212(a) ( ). Name & Title of Officer Authorizing Parole" + }, + { + "id": "A21203456_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Surrender This copy when leaving the United States - see reverse, I-94" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A21203456", + "full_text": "Family Name (Capital Letters) First Name Middle Initial TA THI VIEN T 000 Country of Citizenship Passport or Alien Registration Number Permit Numbe VN ID 017 64 51 United States Address (Number, Street, City and State) US DEL FPJMT, APO SF 96393 Airline, and Flight No. or Vessel of Arrival Passenger Boarded at Military Saigon Number, Street, City, Province (State) and Country of Permanent Residence Saigon Month, Day and Year of Birth PAROLED PURSUANT TO SEC.212(d)(5) 1885 OF THE I & N ACT TO: City, Province (State) and Country of Birth PURPOSE: SON TAY NVN Visa Issued at (Port) (Date) Officer) Month, Day and Year Visa Issued FORM I-94" + }, + { + "id": "A21203456_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "IMPORTANT NOTICE, Form I-94 (Rev. 9-1-73)N (Parole Edition)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A21203456", + "full_text": "IMPORTANT NOTICE Your parole into the United States does not consti- tute an admission under the terms of the Immigra- tion and Nationality Act. You must observe the conditions of the parole and failure to comply with any of those conditions may result in the revocation of your parole. If, for any reason, you do not pro- ceed to the address shown on the face of this form, or if after arrival, you change your address you must immediately report to the nearest office of the Immigration and Naturalization Service. You must also report to the nearest office of the Immigration and Naturalization Service if your status is not otherwise changed or if you do not leave the United States before the termination date shown. UPON DEPARTURE FROM THE UNITED STATES By sea or air surrender this permit to trans- portation line. Over Canadian border, surrender this permit to Canadian Immigration Officer. Over Mexican border, surrender this permit to United States Immigration Officer. DEPARTURE RECORD Port: Date: Carrier: To: (Country of disem bar kation) UNITED STATES DEPARTMENT OF JUSTICE immigration and Naturalization Service Form Approved Budget Bureau No. 43-R311.7 ARRIVAL - DEPARTURE RECORD FORM I-94 (Rev. 9-1-73)N (Parole Edition)" + }, + { + "id": "A21203456_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, FORM G-325A ( (REV. 8-27-72N)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1970, 1975] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "Naturalization" + }, + "nationality": { + "nationality_llm_v1": "VN" + } + } + }, + "anumber": "A21203456", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr. NATIONALITY ALIEN REGISTRATION NO. TA THI FEMALE 1385 VN (421) 203 456 (If any) ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SON TAY NVN (If any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG NUN Deceased MOTHER (Maiden name) NAMEN THE NEU NVN Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE FORMER HUSBANDS OR WIVES none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 4631715 VAN ANYET PRESENT TIME street CAIGON SUN Jan 1970 Apr 1975 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS Refugee user 3 MAY (975 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TA VIEN THE (223) 203 456 (OTHER AGENCY USE) INS USE (Office of Origin) VIETNAM REFUGEE Not SL. & 8 low CP PENOLETON, CA FORM G-325A (3) C. 5-1-75" + }, + { + "id": "A21203456_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TA VIEN THI A21 203 456 (OTHER AGENCY USE) INS USE (Office of Origin) VIETNAM REFUGEE CP PENDLETON, CA FORM G-325A (1) Ident. 5-6-75" + }, + { + "id": "A21203456_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service Form G-325A ( (REV. 8-27-72N)" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1970, 1975, 1885] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "reason": { + "reason_llm_v1": "Refugee" + }, + "nationality": { + "nationality_llm_v1": "VN" + } + } + }, + "anumber": "A21203456", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 BIOGRAPHIC Immigration and Naturalization Service INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. TA VIEW THI FEMALE 1885 VN (427) 203 456 (If ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. SON TAY NVN (If any) FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER TA VAN HONG NVN Deceased MOTHER (Maiden name) NGUYEN THE NEU NVN Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH OR DATE OF MARRIAGE PLACE OF MARRIAGE WIFE (For wife, give maiden name) FORMER HUSBANDS OR WIVES (if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 46217 LE VAN DUYET PRESENT TIME Street SAIGON SVN Tan 1970 Apr 1975 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE INATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): Refugee men 3 MAY 1975 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A21203456_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "AFFIDAVIT RE ASSETS AND LIABILITIES TO BE SUBMITTED BY EVERY REFUGEE 17 YEARS OF AGE OR OVER APPLYING FOR PAROLE INTO THE UNITED STATES, A-21 203 456" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1975] + } + }, + "anumber": "A21203456", + "full_text": "A 21 203 456 AFFIDAVIT RE ASSETS AND LIABILITIES TO BE SUBMITTED BY EVERY REFUGEE 17 YEARS OF AGE OR OVER APPLYING FOR PAROLE INTO THE UNITED STATES I. TA THI UHEN being duly sworn depose and say: 1. I have on deposit in banks in the United States and in other countries the following: Location Name of Bank Amount b 2. I have stocks and bonds in the United States and in other countries in the amount of $ market value as follows: Company/(iovernment Unit No. of Share's or Bonds Value & 1. I own real estate in the United States and in other countries as follows: Location Value Mortgages and other encumbrances thereon amounting to P 4. I have in currency, gold, silver, diamonds, commodities, objects d'art in the United States and in other countries as follows: Loration Item Value D 5. I have the following assets in real and personal property in the United States and in other countries, not listed above as follows: Location Item Value B 6. My total net worth is as follows: $ P + her mark (Complete and 191LC Signature of Applicant) funder Subscribed and sworn to before me by the above-named applicant at CP PENDLERON CA on OCT 15 1975 (month/day/year) Name of Interpreter (Print) MARY HNYEN Signature of Interpreter my Layboon (Signature and Title of Officer) (Reverse of this form may be used if additional space is needed) Form G-648 (6-2-75) UNITED STATES DEPARTMENT OF JUSTI 1. Immigration and Naturalization Service" + }, + { + "id": "A21203456_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "TAT CA MOI NGUOI TI NAN TU 17 TUOI TRE LON NHAP CANH VA HOA KY DUOC, COI NHU LA NGUOI VO QUOC TICH (PAROLE) PHAI NAP TO BAO DAM VA CHIU TRACH NIEN VE TAI SAN CU MINH., Mau G-648" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "TAT CA MOI NGUOI TI NAN TU 17 TUOI TRO LEN NHAP CANH VAO HOA KY DUOC COI NHU LA NGUOI VO QUOC TICH (PAROLE) PHAI NAP TO BAO DAM VA CHIU TRACH NHIEM VE TAI SAN CUA MINH. A Toi, TA THI VIEN xin the va khai rang: 1 Toi hien CO ky thac trong cac Ngan Han tai Hoa Ky va cac quoc gia khac mot SO tien nhu sau: Dia Diem Ten Ngan Hang So Tien 2. Toi hien CO SO tien ky quy tai Hoa Ky va cac nuoc khac tinh theo gia thi truong nhu sau: Cong ty/Co quan chanh phu So kho phan hoac tien ky quy Tri gia 3. Toi hien la so huu chu cua so bat dong san tai Hoa Ky va tai cac quoc gia khac nhu sau: Dia diem Tri gia Tinh ca nguon loi khai thac 4. Toi hien CO mot so ngoai tê vang, bac kim cuong, cac vat khac CO gia tri. Va cac do My thuat tai Hoa Ky va cac quoc gia khac Dia diem Tai Vat Tri gia b 5. Toi la so huu chu so tai vat bat dong san va tai vat ca nhah tai Hoa Ky va tai cac quoc gia khac, chüs audc list ke tren day: Dia diem Tai vat Tri gia 6. Tong so tai vat tri gia nhu sau: mark Ky teh day du va chinh thuc cua duong don Buong don voi ten tren day da diice tuven the tai ngay 10-15-75 (thang/ngey/nam Ten thong dich vien (viet bang chu in) Chu ky cua thong dich vien (Chd ky va cap bac cua si quan) (Neu can, hay them nhung yeu to can thiet noi mat sau cua to khai nay) Mau G-648 (6-2-75) Bo Tu Phap Hoa Ky So Ngoai Kieu va Nhap Tich Vietnamese" + }, + { + "id": "A21203456_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Sworn Statement of Refugee Applying for Parole into the United States, G-64(5.12.75)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1975] + } + }, + "anumber": "A21203456", + "full_text": "United States Department of Justice Immigration and Naturalization Service SWORN STATEMENT OF REFUGEE APPLYING FOR PAROLE INTO THE UNITED STATES Name TA THI VIEN A 21 203 456 APPLICANTS MUST ESTABLISH THAT THEY ARE ADMISSIBLE TO THE UNITED STATES. EXCEPT AS OTHERWISE PROVIDED BY LAW, ALIENS WITHIN ANY OF THE FOLLOWING CLASSES ARE NOT AD- MISSIBLE TO THE UNITED STATES: Aliens who have committed or who have been convicted of a crime involving moral turp- itude (does not include minor traffic violations); aliens who have been engaged in or who intend to engage in any commercialized sexual activity; aliens who are or at any time have been, anarchists, or members of or affiliated with any communist or other totalitarian party, including any subdivision or affiliate thereof; aliens who have advocated or taught, either by personal utterance, or by means of any written or prin- ted matter, or through affiliation with an organization, (i) opposition to organized government, (ii) the overthrow of government by force or violence, (iii) the assault ing or killing of government officials because of their official character, (iv) the unlawful destruction of property, (v) sabotage, or (vi) the doctrines of world comm- unism, or the establishment of a totalitarian dictatorship in the United States; ai- iens who intend to engage in prejudicial activities or unlawful activities of a sub- versive nature; aliens who have been convicted of violation of any law or regulation relating to narcotic drugs or marijuana, or who have been illicit traffickers in nar- cotic drugs or marijuana; aliens who have been involved in assisting any other aliens to enter the United States in violation of law; aliens who have applied for exemption or discharge from training or service in the Armed Forces of the United States on the ground of alienage and who have been relieved or discharged from such training or ser- vice. Aliens who are mentally retarded, insane, or have suffered one or more attacks of in- sanity; aliens afflicted with psychopathic personality, sexual deviation, mental de- fect, narcotic drug addiction, chronic alcoholism or any dangerous contagious disease; aliens who have a physical defect, disease or disability affecting their ability to earn a living; aliens who are paupers, professional beggars or vagrants; aliens who are polygamists or advocate polygamy; aliens who have been excluded from the United States within the past year, or who at any time have been deported from the United States, or who at any time have been removed from the United States at Government expense; aliens who have procured or attempted to procure a visa by fraud or misrep- resentation; aliens who have departed from or remained outside the United States to avoid military service in time of war or national emergency. Do any of the foregoing classes apply to you? Yes No (If answer is Yes, explain on reverse) Further, / have never ordered, assisted or otherwise participated in the persecution of any person because of race, religion or political opinion. I understand all the foregoing statements, having asked for and obtained a translation or explanation of every point which was not understood or clear to me. + (COMPLETE & TRUE SIGNATURE OE APPLICANT) her mark myel Subscribed and sworn to before me by the above-named applicant at CP PENDLETON, CA on GEP 10-1975 (MONTH/DAY.YYAR) Name of Interpreter (print) MARY Signature of Interpreter SIGNATURE AND TITLE (11 OFFICIAL FORM G-646 3(5.12.75)" + }, + { + "id": "A21203456_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "LỘI KHAI HƯU CÀNG THÀNH TINH NĂM XIN NHẬP CÁNH HÒA KÝ, 10" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "BO TU PHAP HOA KY so DI TRU VA NHAP TIAH LOI KHAI HUU THE CUA NGUOI TY NAN XIN NHAP CANH HOA KY Ten: TA THI UIEN Tuoi: go UNG VIEN PHAI KHAI LA DU DIEU KIEN DE NHAP CANH VAO NUOC MY NGOAI TRU TRUONG HOP DUOC LUAT PHAP QUY DINH KHAC, NHUNG NGUOI THUOC CAC LOAI SAU DAY KHONG DUOC VAO HOA KY: Nhung Ngoai Kieu da pham phap va bi ket an vi mot trong toi ke ca nhung toi pham thuoc pham vi luan ly (khong ke cac vi pham luu thong nho nhat) nhung Ngoai Kieu da tham gia hoac CO y dinh tham gia hoat dong mai dam; nhung Ngoai Kieu da tung hoac hien la ngúoi chu truong va chinh phu, la doan vien hoac CO lién hê voi bat cu dang cong san hay doc tai não, ke ca cac chi nhanh hoác to' chüc le thuoc lien he; nhung Ngoai Kieu da tung chu truing hoac qiang day, bang cach tu y phat bieu y kien hoac viet sach, bao, hoac gia nhap mot to chic (i) chong doi Chinh Phu hop phap, (ii) lat as' Chinh Phu bang vo luc (iii) bao hanh hoac sat hai cac vien chuc Chinh Phu vi chuc vi cong quyen cua ho, (iv) pha hoai bat hop phap cac tai (v) pha hoai hoac (vi) cac chu thuyet cong san the gioi, cac viec thiet lap che do doc tài chuyen chê tai Hoa Ky: nhung goai Kieu, co Y dinh tham gia cac hoat dong CO hai hoac bat hop phap CO tinh cach pha roi noi an; nhung Ngoai Kieu dd bi ket an vi pham phap hoác vi pham luat le ve ma tuy, can sa, hoac da buon lau ma tuy, can sa; nhung Ngoai Kieu lien he toi viec giup do' nhung nguoi Ngoai Kieu khac nhap canh Hoa Ky bat hop phap; nhung Ngoai Kieu da xin dac mien hoac xin rut khoi khoa huan luyen hoxc quan yu thuoc Quan Luc Hoa Ky vi nai 18 do Ngoai Kieu cua no hoac da tung bi loai hoac sa thai khoi quan vu hoac cac khoa huan luyen do. Nhung Ngoai Kieu CO tri khon cham phat trien, dien khung, hoac da tung len con dien mot hoac nhieu lan; Ngoai Kieu bi benh hoan tinh than, ham muon lech lac ve tink duc, bi benh than kinh, nghien ma tuy, ngnien ruou, hoac mac benh truyen nhiem nguy hiem; nhung Ngoai Kieu bi bat tuc the chat, bi benh hoac tinh trang khiem khuyet CO anh huong toi kha nang muu sinh; nhung Ngoai Kieu thuoc loai du thu du thu'c an xin chuyen nghiep hoac leu long; nhung Ngoai Kieu, da the hoac chu truong da the; nhung Ngoai Kieu da bi truc xuat khoi Hoa Ky trong nam qua, hoos da CO lan bi, truc xuat khoi Hoa Ky, hoac da CO lan bi tong khil khoi Hoa Ky voi ton phi do Chinh Phu chiu; nhung Ngoai Kieu da thu dac hoac tim cach the dac dau chieu khan bang cach gia mao, gian trai nhung Ngoai Kieu rói khoi Hoa Ky hoac song 2 ngoai nubc My do tron quan dich trong thoi chien hoac trong tinh trang" + }, + { + "id": "A21203456_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Chu ky va Chuc Vu ca Vien Chuc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "khan truong cua Quoc Gia. Ban CO thuoc loai nao trong cac loai tren day khong? co khong (Neu tra 1di co , xin giai thich o mat sau) Ngoai ra, toi cung chua bao gio ra lenh, tro giup hoac tham gia duoi mot hinh thuc nao khac vao viec hanh ha bat cu mot nguoi nao vi ly do chung toc, ton giao hoac chanh kien. Toi hieu tat ca nhung dieu tren day, da xin va duoc cunq cap pan dich hoac duoc giai thich ve moi dieu toi chua thau hieu. her mark Anyel Chu ky day du va dich thuc cua Ung Vien c Ung Vien CO ten tren day da trinh dien va tuyen the trud'c mat toi tai Ngay (Ngay, thang, nam) Ten, ho Thong dich vien (viet bang chu in hoa) Chu ky cua Thong Dich Vien Chu ky va Chuc Vu cua Vien Chuc" + }, + { + "id": "A21203456_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "TA THI VIEN 85000OVSNO RECORD STATEDDIS 12034 00 0000 5601INSSND 00 00 203 456 00 000 700000000000000000000000 000000000 0 0000 00000 000070007700000000 1 27 29 31 34 35 36 37 38 39 40 41 42 45 46 47 48 49 50 51 58 59 60 61 62 64 65 66 $67 68 69 70 71 72 73 74 75 76 77 78 79 80 1 111111111 1111111 111111111111 222222222222222222222222222222222222 2222222222 2222222 2222 222222222 222222 12 3333333333333333333333333333333333333333 33333 3 33333333333 33333333333333333 444444444444444444444444444444444444444444444 444444 444444444 444444444 444444 5555555 5 5555555555555555555 5555 5 555 555555555 555555555555 5555 55 5555555 66666666666666666666666666666666666666 6666 666666666666666666666 66666666666666 8888 88883888888888888888888888888888888888888888888888888888888888888888888888 99999 99 999999999999999995999999999999 999 999999999 9999999999999 99999999999 : 22445 € 78 18 39 55 57 58 59 60 61 62 63 64 65 66 67 68 69 72 73 74 75 76 77 78 79 80 IRM 5081" + }, + { + "id": "A21203456_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "NAME SEX DATE OF BIRTH POB SOCIAL SECURITY N M S N REQUEST R QUESTER DCII REPLY TR NGNC LOCATOR NUMBER TA THI VIEN 85 VS NAME SExING DATE OF BIRTH POB SOCIAL SECURITY NO MSN INSSND 01 1203456 DDIS REQUEST DEPT. SPECIAL I ISTR. COL T REQUEST N REQUEST R I DCII REQUEST / REPLY CARD 1 DIAGNOSTIC MESSAGE - DIS ADP FORM 11 REV SEPT 71 : FILE 2 N : ME YR LOCATION LOCATOR NUMBER 10004 8 D A 28023 M DATE 3 E COMPLETED AGENCIES C.IECKED G RQSTR T 4 E OF NAC P CA E NO. N 5 E DATE OF * OR DOB LIMITER NAC TRF SERVICE S TRANSFER I S FILE NAME E DOB POB SSN MSN RQSTR RQST NO. 6 S YR LOCATOR NUMBER x LOCATION FOOD 4 5 5 8 g 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 35 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 04 65 56 67 G8 69 70 71 12 73 74 75 76 77 78 79 80 NAME E DOB POB S SN MSN RQ TR DEPT. RQST NO is SPECIAL INSTR. : work" + }, + { + "id": "A21203456_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A21203456_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A21203456", + "full_text": "VISI 850000VSDEA DDIS 12034560 INSSNO 2E 000 203 456 IT 00 000 00000000000000000000000 000000 000000000000000000 00000 0000 I 00000 00000000 1 1 111111111111 222222222222222222 2222 222222222 222222 2 33 3333333333333333333333333333333333333333333333333333333333 33333333333333333 4444444444444444444444444444444444444444444444444444 444444444 4444444444 444444 5555555 5 5555555555555555555 55555555555555555555555555555555 5555 55 5555555 666666666666666666666666666666666666666666666666666666666666666666666666666666 8888 1888888888888888888888888 88888888888888888888888888888888888888888888888888 39999 9999999999999999999999999999999999999999999999 9999999999999 99999999999 17 11 72 73 74 75 75 77 16 79 80 NECC-5081" + }, + { + "id": "A22484466_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "I-94 (Rev. 9-1-73) N (Parole Edition), I-94" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1896, 1975] + } + }, + "anumber": "A22484466", + "full_text": "Family Name (Capital Letters) First Name Middle Initial TRAN LIEN THI T650 Country of Citizenship Passport or Alien Registration Number Permit Number VIETNAM A22-484-466 065 96 96 United States Address (Number, Street, City and State) 3113 S. Griset Place, Santa Ana, Ca. 92704 Airline and Flight No. or Vesse) of Arrival ICEM 0968 Passenger Boarded at Bangkok Number, Street, City, Province (State) and Country of Permanent Residence VIETNAM Month, Day and Year of Birth PAROLED PURSUANT TO SEC.212(d)(5) 1896 OF City, Province (State) and Country of Birth PURPOSE: SAIGON, VIETNAM Vietnamese refugee Visa Issued at AUG 0 2 1975 HHW 1314 VISAS FALCON CLEARED (Port) (Date) (Officer) Month, Day and Year Visa Issued" + }, + { + "id": "A22484466_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "Name & address of spouse File No. Name & address of nearest relative abroad Names & addresses of relatives or friends in U.S. Remarks: Inadmissable under Section 212(a) ( ). . Name & Title of Officer Authorizing Parole" + }, + { + "id": "A22484466_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "TRAN TH LIEN A22484 466 S OFFEE BE" + }, + { + "id": "A22484466_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEDICAL Examination of Visa Applicants, 157" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand"] + }, + "years": { + "ms_years_nlp_v1": [1975, 1976] + } + }, + "anumber": "A22484466", + "full_text": "PLACE ICEM MEDICAL SERVICE MEDICAL EXAMINATION OF VISA APPLICANTS DATE OF EXAMINATION 26.7.76 000082 CITY COUNTRY At the request of the American Consul at BKK THAILAND NAME AGE SEX I certify that on the above date I examined TRAN THI LIEN EPP 0793 80 F I examined specifically for evidence of any of the following conditions: CLASS A: DANGEROUS SECURITY ONTAGIOUS DISEASES: Chancroid Lymphogranuloma venereum Gonorrhea Syphilis, infectious stage Granulom origuinale Tuberculosis, active Leprosy infectious MENTAL CONDITIONS: Mental retardation Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Sexual deviation (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. Kyphieis (CHECK NUMBER (1) BELOW OR COMPLETE NUMBER (2)) My examination, including the X-ray and other reports below, revealed: (1) No defect, disease, or disability. (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class - A, B, or C- diagnosis, and pertinent details*): Ana Whit Ches' X-ray report Normal chest from Dr. CHULALONGKORN Blood serological report NON-REACTIVE from Dr. HOSPITAL BANGKOK Other special report(s) when needed) from Dr. SIGNATURE OF MEDICAL TECHNICAL ADVISOR TITLE M. Karaulnik M.D. DATE OF FINAL REPORT I.C.E. M. M fficer 26 JUL 1976 50157-101 * Continue on reverse side if necessary. GPO 1975 0-576-794 OPTIONAL FORM 157 (Formerly FS-398) January 1975 DEPT. OF STATE" + }, + { + "id": "A22484466_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEDICAL Examination of Visa Applicants, 157" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand"] + }, + "years": { + "ms_years_nlp_v1": [1975, 1976] + } + }, + "anumber": "A22484466", + "full_text": "PLACE a MEDICAL EXAMINATION OF VISA APPLICANTS ICEM MEDICAL SERVICE DATE OF EXAMINATION 26.7.76 CITY COUNTRY At the request of the American Consul at BKK THAILAND NAME AGE SEX I certify that on the above date I examined TRAN THI LIEN EPP 0793 80 I examined specifically for evidence of any of the following conditions: CLASS A: DANGEROUS CONTAGIOUS DISEASES: Chancroid Lymphogranuloma venereum Gonorrhea Syphilis, infectious stage Granuloma inguinale Tuberculosis, active Leprosy, infectious MENTAL CONDITIONS: Mental retardation Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Sexual deviation (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. Kyphosis (CHECK NUMBER (1) BELOW OR COMPLETE NUMBER (2)) My examination, including the X-ray and other reports below, revealed: (T) No defect, disease, or disability. (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class-A, B, or C- diagnosis, and pertinent details*) ha White Normal chest Chest X-ray report from Dr. NON-REACTIVE CHULALONGKORN Blood serological report from Dr. HOSPITAL BANGKUK Other special report(s) when needed) from Dr. SIGNATURE OF MEDICAL TECHNICAL ADVISOR TITLE M Karaulnik M.D. DATE OF FINAL REPORT I.C.E.M. Medical Officer 26 JUL 1976 50157-101 * Continue on reverse side if necessary. GPO 1975 0-576-794 OPTIONAL FORM 157 (Formerly FS-398) January 1975 DEPT. OF STATE" + }, + { + "id": "A22484466_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "SPINAL FLUID, 000082" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "SPECIMEN LAB RPT. NO. SPINAL FLUID 000082 URGENCY PATIENT STATUS AMB BED ROUTINE OUTPATIENT NP DOM.. TRAN THI LIEN TODAY SPECIMEN SOURCE PRE-OP CEREBROSPINAL STAT FLUID Enter in above space PATIENT IDENTIFICATION-TREATING FACILITY-WARD NO - DATE REPORTED BY MD DATE LAB ID. NO. REQUESTING PHYSICIAN'S SIGNATURE Vanna TECH 26.7.76 REMARKS: PA CHEST Nonreactive CHULALONGKORN HOSPITAL BANGKOK Transportation TOTAL SHOWN VOV. evous 3 5 5 51557" + }, + { + "id": "A22484466_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "CHULALONGKORN HOSPITAL X-RAY REPORT Hospital Number 67141 000082 Ward Patient's Name TRAN THI LIEN Age 80/F Date of Examination 26.7.76 Requested by PA CHEST No active chest disease. in CHULALONGKORN HOSPITAL BANGKOK 6107-500 LOW)" + }, + { + "id": "A22484466_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "LEAVEBLANK LEAVE BLANK TRAN THI LIEN + NER MARK USINSOOOZ D USINS WASH DC 96 / 7/28/46 that VNR F 0 4/8\" BLUBLK. VNR BLANK ICEM A22-484-466 99, ERS TAKEN" + }, + { + "id": "A22484466_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "INSTRUCTIONS obtained la assifiable fingerprints TRAN TH LIEN Use/printer s.ink A 22 484 466 Distribute ink eventy snink neslah Wash and dry finge routh broughly Roll fingers from Day andisputation ng hogers to slip Be sure impressions are recorded orthatictt the in for idual finger block me physic condit observed stapled the ward assified allowing ther atterns shownhere 1.LOOP 2. WHORL 3. ARCH CENTER OF LOOP DELTAS DELTA THE LINES BE TWEEN CENTER OF THESE LINES RUNNING BETWEEN FLOOP MUST SHOW DELTAS MUST BE CLEAR ARCHES HAVE NO DELTAS points which the line storming the loon or whor directions All Roon onitis has one delta is cannot be issified the loopian checked agand the lines between them are clear THIS SPACE FOR FBI USE Whorl prints cannot be classific unless the two delta an lthelinestonnecting the deltas are clear Arth fingerprints an be lassified fiends clear impression IS obtained to permit identification of the pattern 3S being an an his It lupon ex mination pears that any the in pressic ns cannot be classified new prints should be made If normore than three impressions are und lassifiable new prints of these tingers may pastedoverthedetective.onesIfmore than three are un assinable make new chart.com" + }, + { + "id": "A22484466_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "INDEX CARD, G-361 (Rev. 4-1-76) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam"] + }, + "years": { + "ms_years_nlp_v1": [1896] + } + }, + "anumber": "A22484466", + "full_text": "NAME (LAST IN CAPS) (FIRST) (MIDDLE) SNDX CODE NO. TRAN, LIEN THI A22 484 466 Alias P.O.E. DATE OF ENTRY TYPE ADM. MO.-DAY-YR. OF BIRTH COUNTRY OF BIRTH LOS 08-02-76 IC-6 1896 VIETNAM Type of Action: Name of Sponsor: Action on VP: (Decision) (Mo.) (Day) (Year) (Section) (Forwarded to Consul at:) Street Address (City, State, and Zip Code) FCO Date FCO Date LOS LMB FCO 04-04-79 Date Acession No. CORRECTED Box No. INDEX Form G-361 (Rev. 4-1-76) N INDEX CARD Triplicate" + }, + { + "id": "A22484466_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "INDEX CARD, G-361 (Rev. 4-1-76) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1896] + } + }, + "anumber": "A22484466", + "full_text": "NAME (LAST IN CAPS) (FIRST) (MIDDLE) SNDX CODE NO. A22 484 466 Alias TRAN, LIEN THE P.O.E. DATE OF ENTRY TYPE ADM. MO.-DAY-YR. OF BIRTH COUNTRY OF BIRTH 8-2-76 REFUGEE 1896 VEETNAM Type of Action: Name of Sponsor: I-94 Action on VP: (Decision) (Mo.) (Day) (Year) (Section) (Forwarded to Consul at:) Street Address (City, State, and Zip Code) FCO Date FCO Date FCO Date LOS 8-25-76GWBT Acession No. Box No. Form G-361 (Rev. 4-1-76) N INDEX CARD Triplicate" + }, + { + "id": "A22484466_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "LEAVE BLANK APPLICANT TRAN , / LIEN THI tcher mark) CAINSLAOD A USINS 26981 AYAMONTE None LOS ANGELES CALIF ? 1896 MISSiON UEJO CA 92675 virtran SAIGON VIETWAM F O 4-g 76 BR BLK of CHERIFF'S A22 484 466 FETALE BUREAU OF P. a. BOX 449 SANTA ANA, CALIF. 92702 SUBSTATION 586-56-7200 Status" + }, + { + "id": "A22484466_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE, FC-239 ( (Rev. 8-17-75)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1975] + } + }, + "anumber": "A22484466", + "full_text": "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE WASHINGTON, D.C. 20537 2 1. LOOP APPLICANT CENTER OF LOOP TO OBTAIN CLASSIFIABLE FINGERPRINTS: 1. USE BLACK PRINTER'S INK. 2. DISTRIBUTE INK EVENLY C11 INKING SLAB 3. WASH AND DRY FINGERS THOROUGHLY. 8. ROLL FINGERS FROMMAN TO MAIL AND AVCID ALLOWING FINGERS TO SLIP. 5. BE SURE EXPRESSIONS ARE RECORDED IN CORRECT ORDER 6. IF AN AMPUTATION OR DEFORMITY TO PRINT A FINGER MAKE AMOTATION TO THAT EFFECT IN THE INDIVIDUAL FINGER DELTA 7. 10 SOME PHYSICAL CONDITION MAKES IT COTAIN PERFECT IMPRESSIONS SUBMIT THE BEST THAT CALL DE ODTAINED WITH STAPLED TO THE CARD EXPLAINING THE CIR CUSSTANCES 8. EXAMINE THE COMPLETED CRINTS SEE FATHER CAN CLASSIFIED DEARING IN MIND THAT THE LINES MOST FINGERFRIN is FALL INTO THE PATTER/S SIOW ON THIS CARD (OTHER PATTERNS OCCUR LOOP INFREQUENTLY AND AREHOT SHOWI HERE). 2. WHOPE THIS CARD FOR USIDY LEAVE CANTS FOR LAVE DELTAS 2. OFFICIALS STATE AU FORE CE EMPLOY 12ED CENERA 3. U.S.COVERNMENTAGENCIESIN CONNECTION WITH C1 EAR ANCES.** 4. OFFICIALS OF FEDERALLY CHARTERED OR INSURED BANK. ING INSTITUTION TO PROMOTE OR MAINTAIN THE SECURITY OF THOSE INSTITUTIONS. THESE LINES RUNNING BETWEEN INSTRUCTIONS: DELTAS MUST BE CLEAR \"T. PRINTS MUST FIRST BE CHECKED THROUGH THE APPRO. PRIATE STATE IDENT TION BUREAU AND ONLY THOSE 3. ARCH FINGERPRINTS FOR NO DISQUALE YING RECORD HAS DEEN FOUND LOCALLY SHOULD DE SUBMITTED FOR FBI SEARCH 2. PRIYACY ACT 05 1071 COME OF LL STATE PRINT BEING RETURNED ON BASIS OF SE- AGE. PRESENT POLICY PROVIDES FOR ARCHES HAVE NO DELTAS CURITY CARD MO VETER- RETENTION OF CRIMINAL PRINTS OF ANS ADAINISTRATION CLAIM NO.(VA.). INDIVIDUALS 13 YEARS OF AGE OR LESS, FD-258 (Rev. 9-17-75) ** U.S. GOVERNMENT PRINTING OFFICE: 1975 595-270" + }, + { + "id": "A22484466_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "APPLICANT: BE SURE TO PUT YOUR NAME AND At NAINDNEGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. SERVICE COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN Normal 11 '03 AM'18 22 484 466 (OTHER AGENCY USE) LOS DIEXM INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: LOS T/C = 245 SEP 23 1978 DATE I (1) Ident. FORM G-325A" + }, + { + "id": "A22484466_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466" + }, + { + "id": "A22484466_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, 1-357" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Vietnam", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1979, 1978, 1976] + } + }, + "anumber": "A22484466", + "full_text": "IMPORTANT: PLEASE READ INSTRUCTIONS ON BACK OF PAGE ONE BEFORE FILLING OUT MEMORANDUM U. S. GOVERNMENT PRINTING OFFICE: 1977-249-607 UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place Los Angeles File No. A 22 484 4 466 LOS Status as a lawful permanent resident of the United States is accorded: Name SEX DATE OF BIRTH Street TRAN, LIEN THI F 1896 Address 26981 Ayamonte PLACE OF BIRTH City, State, Zip Mission Viejo, Ca. 92675 Saigon, Vietnam NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) Vietnamese PRIORITY DATE REMARKS Indochina Refugee NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 Public Law 95-145 Aut, 2, 1976 at (Other law Specify) As of (Month) Los Angeles, Ca. (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission. (Insert symbol) IC6 DATE OF SEP 23 1978 RECOMMENDED BY: (Immigration Officer) (Date) A.Witshage) 9-23-78 civi DD ACTION LOS Sureck Charge DISTRICT T/C 245 FOR USE BY VISA CONTROL OFFICE Date 6-361 (DATE) G-1883-13-79, Foreign State APR 04 1979 PROCESSED FOR I-551. Preference Category LAB TEMPORARY EVIDENCE OF LAWFUL ADMISSION FOR Number PERMANENT RESIDENCE VALID UNTIL Month of Issuance EMPLOYMENT AUTHORIZED Signed (Visa Office, Dept. of State) Form 1-357 delivered Form 1-151 Serial No. mailed delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of immigrant visa number. orm 1 - 181 (Rev. 4-1-77)Y" + }, + { + "id": "A22484466_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "INSTRUCTIONS" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A22484466", + "full_text": "INSTRUCTIONS GENERAL: To request allocation of a visa number for a preference or nonpreference case under Section 245. Mail the original and one copy to the Visa Control Office When grant of permanent residence be- comes final, the copy returned by the Visa Control Office which allocates the visa number shall be appropriately endorsed, and placed in the file. In cases where permanent residence IS granted without réferral to the Visa Control Office only an original - -181 need be prepared and placed in the file. In other cases where outstanding instructions require the Form 181 to be forwarded to the Visa Control Office, it shall be prepared in dupli cate and the original placed in the file. OH Jala PREFERENCE: Under Section 245, the priority date will be the filing date of one of the first six preference petitions. NONPREFERENCE Under Section 245, the priority date shall be fixed by the following factors, whichever is the earliest; (1) the priority date accorded the applicant by the consular officer as a nonpreference immigrant; (2) the date on which application Form 1-485 is properly filed, if the applicant establishes that he is a member of a profession or a person with exceptional ability in the sciences or the arts not included in the Departn ent of Labor's Schedule A(29 CFR 60) provided a certification is issued on that basis, or that he is within Schedule A, or that the provisions of Section 212(a)(14) of the Act do not apply to him; (3) the date on which an ap- proved valid third or sixth preference visa petition in behalf was filed; or (4) the date an application for certification based on a job offer WIU accepted for processing by any office within the employment service system of the Depa nent of Labor, provided the certification applied for was issued. A nonpreference priority date, once established, is retained by the alien even though at the time a visa. number becomes available and he is allotted a nonpreference visa number he meets the provisions of Section 212(a)(14) of the Act by some means other than that by which he originally established entitlement to the nonpreference priority date. LABOR CERTIFICATION: Check and complete the block regarding certifications on the form as appropriate in a nonpreference case. REMARKS: If the visa number requested is based on Section 202(b)(1), (2), (3) or (4) or Section 203(a)(9) of the Act explain as appropriate in \"Remarks\" block. DELAY NOTICE: When the Service must obtain a visa number from the Department of State before granting permanent residence, the letter portion of this form notifying of the delay is mailed to the applicant with a copy to the attorney of record. In represented cases the attorney is notified of the approval of an application by furnishing him with a copy of the notice which is part of this form. presson CO' SPEST WASHINGTON LIVIT' FIEM III TRU UNITED STATES DEPARTMENT OF JUSTICE Immiaration and Naturalization Service" + }, + { + "id": "A22484466_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form 1-357" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A22484466", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place Los Angeles File No. A 22 484 466 Status as a lawful permanent resident of the United States is accorded: Name SEX DATE OF BIRTH Street TRAN, LIEN THI F 1896 Address 26981 Ayamonte PLACE OF BIRTH City, State, Zip Mission Viejo, Ca. 92675 Saigon, Vietnam NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) Vietnamese PRIORITY DATE REMARKS Indochina Refugee NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244 )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the & N Act Sec 13 of the Act of 9/11/57 Public Law 95-145 (Month) Aut.,2,1976 eat (Other law Specify) As of (Day) (Year) Los Angeles Ca. PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) IC6 DATE OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION A.Withage, 9-23-78 LINU DD DISTRICT FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) Form 1-357 delivered Form 1-151 Serial No. mailed delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of immigrant visa number. Form 1 - 181 (Rev. 4-1-77)Y (Page 2)" + }, + { + "id": "A22484466_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "Form 1 - 181a (Rev. 4-1-77)Y UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS A 22 484 466 Date: TRAN, LIEN THI 26981 Ayamonte Mission Viejo, Ca. 92675 Your application for status as a permanent resident has been received. When proc- - essing has been completed, you will be invited to appear for medical examination and interview. To avoid delay in the processing of your application, please do not telephone or write while your case is pending. However, if there is a change in your address, employ- ment or marital status, please notify this office promptly by mail referring to the above file number. Sincerely yours, District Director (Page 3)" + }, + { + "id": "A22484466_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "Form 1 - 1816 (Rev. 4-1-77)Y UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A 22 484 466 Date: TRAN, LIEN THI 26981 Ayamonte Mission Viejo, Ca. 92675 The application for adjustment of status to that of a permanent resident filed by the above named has been granted. Sincerely yours, District Director ATTORNEY (Page 5)" + }, + { + "id": "A22484466_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION BY INDOCHINESE REFUGEE FOR PERMANENT RESIDENCE, Form Approved" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Cambodia", "Vietnam", "United States", "Laos"] + }, + "years": { + "ms_years_nlp_v1": [1975, 1979, 1896, 1977, 1978] + } + }, + "anumber": "A22484466", + "full_text": "Form Approved APPLICATION BY INDOCHINESE REFUGEE FOR PERMANENT RESIDENCE OMB No. 43-R0595 DATE RECEIVED File Number SEP 23 1978 Applicant for benefits of SECTION 101 OF THE ACT OF Section 101 of the Act of October 28, 1977 OCTOBER 28, 1977 Section 103 of the Act of October 28, 1977 Section 104 of the Act of October 28, 1977 DO NOT WRITE ABOVE THIS LINE. SEE INSTRUCTIONS BEFORE FILLING IN APPLICATION. IF YOU NEED MORE SPACE TO ANSWER FULLY ANY QUESTION ON THIS FORM, USE A SEPARATE SHEET AND IDENTIFY EACH ANSWER WITH THE NUMBER OF THE CORRESPONDING QUESTION. PRINT IN BLOCK LETTERS COMPLETE ONLY ONE OF THE FOLLOWING (1A, 1B, OR 1C): 1.A. I hereby apply to become a lawful permanent resident alien on the following basis: I am a native or citizen of Vietnam, Laos, or Cambodia and have been physically present in the United States for at least two years and: (1) was paroled into the United States as a refugee from those countries subsequent to March 31, 1975, but prior to January 1, 1979; or (2) was inspected and admitted or paroled into the United States on or before March 31, 1975, and was physically present in the United States on March 31, 1975. 1.B. I hereby apply to have my admission for permanent residence recorded as of March 31, 1975 or the date of my arrival in the United States, whichever date is later. I was lawfully admitted for permanent residence prior to October 28, 1977. I am a native or citizen of Vietnam, Laos, or Cambodia and I have been physically present in the United States for at least two years and I am the spouse minor unmarried child of a native or citizen of Vietnam, Laos, or Cambodia and such relationship existed on March 31, 1975 or the date upon which my spouse parent was inspected and admitted or paroled into the United States. 1.C. I hereby apply to become a lawful permanent resident alien on the following basis: I am not a native or citizen of Vietnam, Laos, or Cambodia but I have been physically present in the United States for at least two years and I am the spouse minor unmarried child of a native or citizen of Vietnam, Laos, or Cambodia and such relationship existed: (Check whichever date is later) on March 31, 1975, or the date on which my spouse or parent was paroled into the United States as a refugee. 2. My name is (Family Name) (First/Given Name) (Middle Name) SEX Male Female TRAN LIEN THI 2A. Name which you were admitted to the United States (if different from above) 4. Have you ever applied for permanent res- idence status in the United States? 3. I reside in the United States at: (No. & Street) (Apt. No.) (City & State) (Zip Code) Yes No (If \"Yes\", give date and 26981 AYAMONTE, MISSION VIESO, CA. 92675 place of filing and final disposition.) 5. Alien registration No. 6. I am now a citizen of (Country) 7. Date of Birth VIETNAM 1896 8. Place of Birth (City or Town) (County, Province, or State) (Country) SAIGON VIETNAM 9. Name as appears on nonimmigrant document Form My I-94 permit number is: I-94 TRAN, LIEN THI 065 96 96 10. My last arrival in the United States occurred on: At the Port of (City, State) DATE: (Month, Day, Year) 8-2-76 HHW 11. I arrived by (Name of vessel or other means of travel) as a (Visitor, student, U.S. citizen, stowaway, immigrant, parolee, etc.) ICEM Charter Parolee 12. I was was not 13. My nonimmigrant visa, number none was issued by the U.S. Consul inspected on (Month, Day, Year) at (City, Country) 14. I have been married one times, including my present marriage, if now married. (If you are now married give the following) A. Number of times my husband or wife has been married. B. Name of husband or wife (Wife's maiden name) C. My husband or wife resides with me apart from me at Address (Apt. No.) (No. & Street) (Town or City) (Province or State) (Country) 15. I have have not been absent from the United States during the past two years. FORM I-485 RECEIVED RET'D TRANS. (Page 1) TRANS. IN OUT COMPLETED (10-15-77)" + }, + { + "id": "A22484466_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Application for Naturalization and Adjustment of Status, I-4129A" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A22484466", + "full_text": "16. In the spaces below. list all of your entries into and departures from the United States. (Show your LAST entry FIRST Date of Entry Port of Entry Entered as: Visitor. student. parolee. stowaway. etc. Date of Departure Port of Departure 8-2-76 It HW Paralee 17.A. I have 5 sons or daughters as follows: (Complete all columns as to each son or daughter: if living with you state \"with me' in last column: otherwise give city and state or country of son's or daughter's residence.) Name Sex Place of Birth Date of Birth Now living at Xvan 18. I list thing Huynh, Loan; Hung, Phing Thank strignh,Ph Duong King PhungMai; B. The following members of my Xuean family are also applying for permanent resident status. Hughth Kinh, Ngo Hoa Quangdam Hight, below all organizations, societies, clubs, and associations, past or present, in which I have held membership an the United Statestor a foreign country, and the periods and places of such membership. (If you have never been a member of any organization. state \"None``.) none 19. I have have not been treated for a mental disorder. drug addiction or alcoholism. (If you have been, explain.) 20. I have have not been arrested. convicted or confined in a prison. (If you have been, explain.) 21. I have have not been the beneficiary of a pardon, amnesty, rehabilitation decree. other act of clemency or similar action. (If you have been, explain.) 22. I have have not ordered. assisted. or otherwise participated in the persecution of any person because of race. religion or political opinion. (If you have, explain.) 23. APPLICANTS FOR STATUS AS PERMANENT RESIDENTS MUST ESTABLISH THAT THEY ARE ADMISSIBLE TO THE UNITED STATES. EX- CEPT AS OTHERWISE PROVIDED BY LAW, ALIENS WITHIN ANY OF THE FOLLOWING CLASSES ARE NOT ADMISSIBLE TO THE UNITED STATES AND ARE THEREFORE INELIGIBLE FOR STATUS AS PERMANENT RESIDENTS UNDER THE ACT OF OCTOBER 28. 1977: Aliens who have committed or who have been convicted of a crime involving moral turpitude (does not include minor traffic violations): aliens who have been engaged in or who intend to engage in any commercialized sexual activity: aliens who are or at any time have been anarchists, or members of or affiliated with any Communist or other totalitarian party, including any subdivision or affiliate thereof ; aliens who have advocated or taught, either by personal utterance, or by means of any written or printed matter, or through affiliation with an organization. (i) opposition to or- ganized government, (ii) the overthrow of government by force or violence, (iii) the assaulting or killing of government officials because of their official character, (iv) the unlawful destruction of property, (v) sabotage, or (vi) the doctrines of world communism, or the establishment of a totalitarian dictatorship in the United States: aliens who intend to engage in prejudicial activities or unlawful activities of a subversive nature: aliens who have been convicted of violation of any law or regulation relating to narcotic drugs or marihuana, or who have been illicit traffickers in narcotic drugs or marihuana; aliens who have been involved in assisting any other aliens to enter the United States in violation of law: aliens who have applied for exemption or discharge from training or service in the Armed Forces of the United States on the ground of alienage and who have been relieved or discharged from such training or service; aliens who ordered, assisted, or otherwise participated in the persecution of any person because of race, religion. or political opinion. Do any of the foregoing classes apply to you? Yes No (If answer is Yes, explain) 24. Completed Form G-325A (Biographic Information) is attached as part of this application. Completed Form G-325A (Biographic Information) is not attached as applicant is under 14 years of age. 25. IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS, Signature of Applicant: WRITE YOUR NAME IN YOUR NATIVE ALPHABET BELOW: Date of Signature: 26. (Signature of person preparing form, if other than applicant.) I declare that this Address of person preparing form., if other than applicant document was prepared by me at the request of the applicant and is based on all Ola Vista information on which I have any knowledge. (Application Mary not to Domenichini be signed below until applicant Date: before 8-9-78 San Clemente Ca. Occupation: Carewruher appears an officer of the Immigration and Naturalization Service for examination) I, LiEN THI TRAN do swear (affirm) that I know the contents of this application subscribed by me including the attached documents, that the same are true to the best of my knowledge, and that corrections numbered ( ) to were made by me or at my request, and that this application was signed by me with my full, true name: a,w it Cher mark (Complete and true signature of applicant) Subscribed and before the above-named at Santal Are on sworn to me by applicant 9 23 78 (Month) (Day) (Year) Ahridangy.com (Signature and title of officer) (Page 2)" + }, + { + "id": "A22484466_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A22484466", + "full_text": "A22 484 466 TRAN LIEN TH / ALIEN NUMBER LAST NAME FIRST NAME MIDDLE NAME IN CARE OF 26981 AYAMONTE ADDRESS NUMBER/STREET CITY Mission Urejo Ca. 92675 STATE ZIP CODE LUA KY SAIGON, VIETNAM MOTHER'S FIRST NAME FATHER'S FIRST NAME CITY / VILLAGE OF BIRTH Mission Viefo Mission Viejo Los Angeles CITY OF PRESENT RESIDENCE CITY OF FIRST U.S. RESIDENCE INS ADJUSTING OFFICE 1896 LOS DATE OF BIRTH POE CLASS ADJ. DATE COB OFFICER'S DESIGNATOR DO NOT FILL IN THIS PAGE. CONTINUE ON PAGE 5. (Page 3)" + }, + { + "id": "A22484466_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: SHERIFF-CORONER DEPARTMENT COUNTY OF ORANGE CALIFORNIA, Form Number: 501234" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1978] + } + }, + "anumber": "A22484466", + "full_text": "SHERIPP CORONED SHERIFF-CORONER DEPARTMENT COUNTY OF ORANGE CALIFORNIA BRAD GATES SHERIFF-CORONER August 11, 1978 TO WHOM IT MAY CONCERN: This is to certify that an examination of the files of the Sheriff's Department, County of Orange, Santa Ana, California, discloses the following information. Our files disclose no arrest record on Lien Thi TRAN of 26981 Ayamonte, Mission Viejo, California, 92675. F Chinese 4-8 76 Blk Blk DOB 1896 South Vietnam This letter is for immigration purposes only and is not for personal recommendation or identification. Very truly yours, Brad Gates, Sheriff-Coroner By Harry Gage Lieutenant Station Commander South County Substation HG:sm Files checked by name X Files checked by fingerprints 550 N. FLOWER STREET . P.O. BOX 449, SANTA ANA, CALIFORNIA 92702 . (714) 834-3000" + }, + { + "id": "A22484466_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1912, 1935, 1978] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "INSTRUCTIONS: USE TYPEWRITER. BE SURE ALL COPIES ARE LEGIBLE. Failure to answer fully all questions delays action. C C. -Ct C C C Do Not Remove Carbons: If typewriter is not available, print heavily in block letters with ball-point pen. U.S GOVERNMENT PRINTING OFFICE: 1977-237-015 FORM G-325A (REV. 10-1-74) Y Form Approved UNITED STATES DEPARTMENT OF JUSTICE LOS OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC T/C I INFORMATION SEP 23 1978 (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. FEMALE (If any) -TRAN, LIEN THI 1896 Vietnamese A 22 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. none Saigon, Vietnam -56-7200 FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER(Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES(if none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 26981 Ayamonte Mission Viejo Ca USA 08 76 PRESENT TIME Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER none OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE INATURALIZATION ADJUSTMENT OF STATUS t 9 / 23 / 78 OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN HI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (3) C. FORM G-325A" + }, + { + "id": "A22484466_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "BIOGRAPHIC INFORMATION, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1896, 1912, 1935] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['retired']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "Form Approved OMB No. 43-R436 BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. (If any) -TRAN, LIEN THI FEMALE 1896 Vietnamese A 122 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. Saigon, Vietnam (580)56-7200 none FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER(Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES(if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 08 76 PRESENT TIME 26981 Ayamonte Mission Viejo Ca USA Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER YEAR MONTH none OCCUPATION (SPECIFY) MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN HI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (3) C. FORM G-325A" + }, + { + "id": "A22484466_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Information for Naturalization and Adjustment of Status Application, G-325A" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Thailand", "Vietnam", "China", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1896, 1912, 1935] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['n.a']" + }, + "nationality": { + "nationality_llm_v1": "Vietnamese" + } + } + }, + "anumber": "A22484466", + "full_text": "Form Approved PARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. -TRAN, LIEN THI FEMALE 1896 Vietnamese (If any) 22 484 466 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. none Saigon, Vietnam (580-56-7200 FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE FATHER Tran, Ky ? China Deceased MOTHER (Maiden name) Duong, Lua ? Vietnam Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE none FORMER HUSBANDS OR WIVES( (if none,so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Huynh, Phan Phan 1884 1912-Saigon, Vietnam Deceased 1935 APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 26981 Ayamonte Mission Viejo Ca USA 08 76 PRESENT TIME Thailand (Camp) 06 76 07 76 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 513 Hong Bang Saigon Vietnam 34 06 76 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, SO STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER none OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) none THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE NATURALIZATION ADJUSTMENT OF STATUS + OTHER (SPECIFY): IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT. APPLICANT: BE SURE TO PUT YOUR NAME AND ALIEN REGISTRATION NUMBER IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (Family name) (Given name) (Middle name) (Alien registration number) TRAN, LIEN WHI A 22 484 466 (OTHER AGENCY USE) INS USE (Office of Origin) OFFICE CODE: TYPE OF CASE: DATE: (4) Consul FORM G-325A" + }, + { + "id": "A22484466_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A22484466_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service Processing Sheet, I-485-c" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Cambodia", "Vietnam", "United States", "Laos"] + }, + "years": { + "ms_years_nlp_v1": [1978] + } + }, + "anumber": "A22484466", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet Officer A.W. Date SEP 23 3 1978 4 Application or Petition Form No. I-485-C File No. A 22 484-466 NAME. Family name (in caps) followed by given name and middle name DOB: Same as I-94 Change verified by Affidavit or B/C ENTRY: Paroled as Refugee Admitted as NIV on or before 3/31/75 PRESENCE: Meets 2-year physical presence requirement (needs not be continuous) MEDICAL: Not required (Paroled through Refugee camp) Must be obtained G-325-A and fingerprints (not required if under 14) LOCAL POLICE CHECKS: Must be obtained from each location of residence in the U.S. of 6 months or more (not required if under 14) PHOTOS: ADIT PROCESSING CARD: Supplemental Sheet: CLASSIFICATION: (circle one) IC6 Native or Citizen of Vietnam, Laos, or Cambodia IC7 Non-native or non-citizen of above countries but who is the spouse or child of above. (This class must also meet the entry and 2-year physical presence requirements.) IC8 Previously adjusted native or citizen of Vietnam, Laos, or Cambodia who is applying for rollback date of permanent residence IC9 Previously adjusted applicant who is neither a native or citizen of Vietnam, Laos, or Cambodia, but who is the spouse or child of Indochina refugee and is applying for a rollback date of permanent residence. Form I-181 G-601 checkmark_ntt OK to Grant Except for 1. file review 2. 3. This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Form I-468 Keep this sheet on top of all material in file until initial decision is made (Rev. 11-1-70) FPI-LOM-1-24-78" + }, + { + "id": "A10775863_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Memo, C 3645015" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1933, 1964] + } + }, + "anumber": "A10775863", + "full_text": "A10775863 C 3645015 Memo: App being duly sworn, testified as follows: App test that she had one absence from the U.S. in excess of six months since her natz on 11/30/32. She test that she dad departed from the U.S. sometime in 1933 and returned to the U.S. on 11/8/59. She stated that this absence was onlt to her native country of Ireland. App test that she had never voted in a foreign election, had never worked for a foreign government, had never served in the Armed Forces of a foreign country, had never taken an oath of allegiance to a foreign country, and had never obtained foreign natz. The State Dept file in her visa file ( A 10 775 863 ) reflects that App was held to have expatriated due to foreign residence. The U.S. Supreme Court in Schneider V. Rusk in May of 1964 held this to be unconstitutional. As no other grounds for expatriation is indicated, it appears that App has not been expatriated. In accordance with instructions contained in NE Memo of 7/9/64, a new N.C. was issued. App subsequently married and has surrended her old cert and a new one in her marriage was issued her this day. General Attorney, Natz. Boston, Mass. Sept 11, 1964" + }, + { + "id": "A10775863_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION FOR A NEW NATURALIZATION OR CITIZENSHIP PAPER, 3645015" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1904, 1933, 1932, 1924, 1959] + } + }, + "anumber": "A10775863", + "full_text": "Form approved, Budget Bureau No. 43-R099.7 No. 3645015 APPLICATION FOR A NEW NATURALIZATION OR CITIZENSHIP PAPER (See instructions on Reverse) Fee Stamp Take or mail to IMMIGRATION AND NATURALIZATION SERVICE, I hereby apply for a new naturalization or citizenship paper. (1) (b) (a) My The full, name true under name which is I margaret was is 6'neill mangenet Horgan V (c) Other names I have used are next 1 (2) I was born at bonk Eine One on 3 th 1904 (City or town) (Country) (Month) (Day) (Year) (3) I arrived in the United States at Boston mass U.S.A. (City or town) on 1/1 (Month) 8 54917 (State) (Day) (Year) (4) I now reside at 829 Hyde and Pankart mass (City town) Hyde Part, (County) 14 CAR 3 (Apt. No.) (Number street) or (State) (5) My personal description is: Sex Memory ; complexion Dow color of eyes young ST; color of hair height 5 your me (i) feet 7 inches; weight 170 pounds; visible distinctive marks Birth make on J'onehead (6) The naturalization or citizenship paper was issued to me by the Shafaeme of Lary Quality Court marital status married ; country of which Iwas a citizen, subject, or national Gini > at of (City the town) State (County) of new york (State) V (Name of court) on november 30- 1932 or (Month) (Day) (Year) (7) Since my naturalization or repatriation, I have have not lost my citizenship in any manner. (8) Since the date the naturalization or citizenship paper was issued to me I have not been absent from the United States for more than six months, except as follows: (If none, state \" 'none. ) (8) DEPARTED FROM THE UNITED STATES RETURNED TO THE UNITED STATES Date Vessel, or other Means Date Vessel, or Other Means Port Port (Month, day, Year) of Conveyance (Month, day, Year) of Conveyance Logan anway Rogen 11-8-1959 anways (y Blecifor 1933 Bot Bester 1959 Plan north lost (9) Such paper became mutilated on or about at destroyed (Month) (Day) (Year) (City or town) , under the following circumstances: (State or country) 1 Answer (10) Only if You Are Applying For a New Paper in a Changed Name. (10) My name was changed by-- (a) Marriage; from the name of Horgen to snall at bonk Inclonel (Name naturalized under) (Present married name) 12 on nov 29-1924 (City or town) (County) (State) (Date) (b) Decree of Court, at (City or town) on (County) (State) (Month) (Day) (Year) I certify that the above statements are true and correct to the best of my knowledge and belief. convertion made me 1-12 Meongovet N-565 oneell (Complete signature frael of applicant) Form UNITED STATES DEPARTMENT OF JUSTICE 829 Hycb Parkave H.P Immigration and Naturalization Service (Address at which applicant receives mail) (Rev. 11-26-62)" + }, + { + "id": "A10775863_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "EXAMINER'S REPORT, GPO 945159" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1917, 1916, 1898, 1918, 1902, 1922, 1940, 1936] + } + }, + "anumber": "A10775863", + "full_text": "EXAMINER'S REPORT I have investigated this application and I am satisfied that the applicant is the person to whom the original record relates and that the applicant, if naturalized or repatriated, has not become expatriated subsequent acquiring United States citizenship, and that the naturalization or citizenship paper described in the application has been changley (Lost, mutilated, destroyed, surrendered) many The naturalization or declaration has been verified. Supplemental report is Areattaches attached hereto. I recommend that the application be granted. September 11 19 64 Approved, Ji District Joshua Gnatt (Signature Funlong Not of reporting officer) Director. (Title of reporting officer) New No. 3445010 issued on August (Date) received by me on (Date) marganet small (Applicant's signature) INSTRUCTIONS TO THE APPLICANT (This form must be completely filled out in ink or on a typewriter. This application is for use by a person who hasfiled a declaration of intention or has been naturalized or repatriated and whose declaration of intention or certificate of naturalization, citizenship, or repatriation has been lost, mutilated, or destroyed. It may also be used by a naturalized person whose name has been changed by marriage or by order of a court and who desires a new paper in the changed name.) Photographs.-You are required to send with this application two photographs of yourself taken within 30 days of the date ofthis application. They may be in natural color or in black and white, but black and white photographs which have been tinted or otherwise colored are not acceptable. These photographs must be 2 by 2 inches in size, and the distance from top of head to point of chin should be approximately 1 1/4 inches. They must not be pasted on cards or mounted in any other way, must be on thin paper, have a light background, and clearly show a front view of your face without hat. Snapshots, group, or full-length portraits will not be accepted. Your photographs should NOT be signed until after the new natural- ization or citizenship paper has been made out, but on the back of each photograph your name MUST NOW be printed lightly and carefully, using a soft pencil to avoid mutilation of the face of the photograph. Proof of changed name.- If your name has been changed by marriage subsequent to your naturalization and you are applying for a now paper in the changed name, you must attach to this application a certified copy of the public record of your marriage. If your name has been changed by a decree of court of competent jurisdiction subsequent to your naturalization, you must attach to the application a certified copy of the decree of court changing your name; and If you live in a State where, under the decree of court changing your name, further acts are required of you before the decree become final, in such case you must also attach to this application a certificate from the court that you have complied with all con- ditions of the decree changing your name. Certificate of Naturalisation or Citizenship. You must submit with this application the certificate of naturalization or of citizenship which was issued to you prior to your change of name, or which has been mutilated for retention by the Immigration and Naturalization Service if the application is granted. If you are unable to submit such certificate because It is lost or destroyed, state the circumstances fully on a separate sheet of paper the same size as this application. Fee- A fee of five dollars ($5) must accompany this application, unless you are applying for a copy of proceedings under the act of June 25, 1936, as amended, that is, unless you are a woman born in the United States who lost citizenship by marriage to an alien before Septem- ber 22, 1922, and are applying for a copy of the proceedings through which you were repatriated by taking an oath of allegiance to the United States. The fee for a copy of such proceedings Is $1.50. The fee is required for filing the application and is not returnable, regardless of action taken thereon. Remittances should be mode payable to the \"Immigration and Naturalization Service, Department of Justice.\" If residing In the Virgin Islands, remittances should be drawn In favor of the \"Commissioner of Finance of the Virgin Islands,\" If residing In Guam, remittances should be drawn in favor of the \"Treasurer, Guam,\" If you mail this application, attach money order or check. DO NOT SEND CASH. An applicant for a new declaration of Intention or certificate of naturalization in lieu of one lost, mutilated, or destroyed, who was c member of the military or nevel forces of the United States at any time after April 20, 1898, and before July 5, 1902; or at any time after April 5, 1917, and before November 12, 1918; or who served on the Mexican border GS a member of the Regular Army or National Guard between June 1916 and April 1917; or who has served or hereafter serves In the military, air, or naval forces of the United States after September 16, 1940, or who is presently serving and who was not at any time during such period or thereafter separated from such forces under other than honorable conditions, who was not a conscientious objector who performed no military duty whatever or refused to wear the uniform, or who as not at any time during such period or thereafter discharged from such military, air, or naval forces on account of alienage, is not required to pay any fee. In such case your honorable discharge must be presented with this application. GPO 945159" + }, + { + "id": "A10775863_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Registration of Marriages (Ireland) Act, 1863, 220" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1934, 1863, 1959] + } + }, + "anumber": "A10775863", + "full_text": "220 Acht um Clarú Pósadh, 1863 Registration of Marriages (Ireland) Act, 1863 P No 11 Cóip Deimhnithe de Thaifid i gClár-leabhar na bPósadh. Certified Copy of Entry in the Marriage Register Book-(See Endorsement) 19 34 Pósad do Ceiliúradh i Marriage solemnised at the Catholic Church of saint oatrick i gCeantar nol in the Registrar's District of Pósadh 1 gCeantar an Chláraitheóra Maoirseachta bork bork / Marriage i gContae Eire in the Superintendent Registrar's District of in the County of Ireland. Uimh Data an Phosta Ainm agus Sloinne Aois Staid Sli Bheatha Ionad Chónaithe Ainm agus Sloinne an Athar Sli Bheatha an Athar No. When Married. Name and Surname. Age. Condition. Rank or Profession. Residence at the time of Marriage. Father's Name and Surname. Rank or Profession of Father. (1.) (2.) (3.) (4.) (5.) (6.) (7.) (8.) (9.) Uimh No. 267 29th Jamothy 0 neill Full Bachelor barrier Flower ville John o 'neill barrier Claraithe an Registered by 247 november Windmill Rd. me this 8th 1934 margaret Hargon Full Shimster 5 Roc Kgrove Jennice Doved Horgan farmer bork lá seo de Phósas an lanú seo i day of Married in the Catholic blurch of saint Ratrick dréir Uird agus Gnathai na h-Eaglaise Catoilicí Ceiliúradh an Pósadh December seo Eadrainn-ne Jamothing 0-neill according to the Rites and Ceremonies of the Catholic Denis Church by Sconlon me eb In ar Láthair-ne Peter o naill Flaranle Boreenmonna this Marriage was mangore gongon in the Presence solemnized between us, of us. colon gargon , 34. Deimhnim leis seo gur fior cóip i seo de thaifid uimh 247. gClár leabhar na bPósadh atá fé mó churam I hereby Certify that the foregoing is a true copy of the Entry No. in a Marriage Register Book in my lawful custody N.g.v. mullane Oifig Office *Cláraitheóir (Maoirseachta) COMPANY 14 JUL REGISTER 1959 (Cláraitheóir (Maoirseachta) na mBreith na mBás agus na bPósadh) (Superintendant) Registrar (Superintendent) Registrar of Births Deaths and Marria ges) *Scriostear amach na focla seo má's gha Dáta i gCeantar bork Strike the word in brackets if not applicable Date DOUGLAS ROAD.CO for the District of" + }, + { + "id": "A10775863_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "EMBASSY OF THE UNITED STATES OF AMERICA, PPT 9-16:0'NEILL Mrs. Margaret" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1946, 1933, 1964, 1957, 1932] + } + }, + "anumber": "A10775863", + "full_text": "PPT 9-16:0'NEILL Ars. Margaret ml EMBASSY OF THE UNITED STATES OF AMERICA Via Air Mail Dublin 4, Ireland. July 8, 1964. Mrs. Margaret O'Neill, 829 Hyde Park Avenue, Hyde Park, Boston 36, Mass. Dear Mrs. O'Neill: The receipt is acknowledged of your letter dated June 22, 1964, requesting the Embassy to forward to you the certificate of loss of United States nationality in your case, which contains information regarding your acquisition of American citizenship. Your citizenship file at this office shows that you were naturalized before the Supreme Court of the State of New York at Long Island City, New York, on November 30, 1932, in your maiden name, Margaret Horgan. Certificate of Naturalization number 3645015 was issued to you. You were issued passport number 30184 in your maiden name, by the Department of State on June 8, 1933. You lost your American nationality under Section 404(b) of the Nationality Act of 1940 by residing continuously in Ireland, the country of your birth, for a period of three years. The effective date of loss was October 15, 1946. A certificate of loss of nationality in your name, dated, July 30, 1957, was approved by the Department of State on August 13, 1957. A copy of the approved certificate of loss was forwarded to you from the American Consulate at Cork on September 3, 1957. The Embassy does not, therefore, have a copy to forward to you at this time. In view of the recent decision made by the Supreme Court of the United States in the Schneider v.Rusk case, it appears that you may regain your American citizenship. It is believed that the information contained in this letter will be of assistance to you in this matter. Sincerely yours, For the Charge d'Affaires a.i., theore American Kiyonao Consul Okami Heame" + }, + { + "id": "A10775863_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863" + }, + { + "id": "A10775863_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Letter from the Assistant District Director for Citizenship, BOS 30/3 (O'Neill" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1964] + } + }, + "anumber": "A10775863", + "full_text": "150 Tremont Street BOS 30/3 (c) Boston, Massachusetts 02111 O'Neill August 26, 1964 Mrs. Margaret O'Neill 829 Hyde Park Avenue Hyde Park, Massachusetts Dear Madam: Reference is had to your recent inquiry concerning your citizenship status. No determination may be made by this Service until after the matter has been adjudicated. We are awaiting certain documents and upon receipt of same you will be notified to appear at this office. Very truly yours, J. A. HAMILTON, JR. District Director By: MK M. J. STEGUN Assistant District Director for Citizenship kb" + }, + { + "id": "A10775863_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "C site RECEIVED 899Hyd Pork one is N. SERVICE DOSTON, MARY Hyd Park Boston 36 most 1964 AUG 17 AM 9:30 8/16/64 Dear ria Stergen I would he very that g one an American bitizen as I would you would forward we a brief note stating very much like to vate ru this Election have made my Reclaim to Citizenship but g believe it takes some time to Process, Thanking your In adame Respectfully your Mies Marganel free You formanly Hongove Hargan book bity Included" + }, + { + "id": "A10775863_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "O" + }, + { + "id": "A10775863_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "Capited at G 25 ROUTE SLIP (Rev. 12-7-57) Date 8-24-64 BOSTON National To CIT Room Approval Note & Return See me Comment Note & File As requested Andries Necessary action Signature For your information Per telephone conversation Call me Ext. Remarks Your C-3656016; N-676 565; MARGARET O'NEILL; July 24, 1964. HEREWITH, FROM PASSPORT FILES, FIND PHOTOCOPIES ALL RELATING MATERIAL. RECEIVED AUG 2 6 1964 Office Q1 District Director Service 150 Tremont Street From Boston, Mass. WAS NV? Room X GPO 884318" + }, + { + "id": "A10775863_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES GOVERNMENT Memorandum, 5010-108" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1907, 1962, 1957, 1964, 1932] + } + }, + "anumber": "A10775863", + "full_text": "OPTIONAL FORM NO. 10 5010-106 MAY 1962 EDITION GSA GEN. REG. NO. 27 UNITED STATES GOVERNMENT Memorandum IMMIGRATION AND N=565-0;Neill NATURALIZATION SERVICE C-3645015 CU TO District Director DATE: July 24, 1964 Washington, D. C. 1964 JUL 27 AM 11 22 FROM : J. B. Sullivan, Acting District Director for Citizenship, Boston, Massachusetts WASHINGTON D.C SUBJECT: MARGARET O'NEILL; Applicant for a New Naturalization Certificate The above-named subject submitted an application for a new naturalization certificate to this office. She was born March 16, 1907 at Cork, Ireland. Mrs. O'Neill was naturalized by the Supreme Court at Long Island City, New York on November 30, 1932, under her maiden name, Margaret Horgan and was issued Certificate No. 3645015. On September 3, 1957, the American Consulate at Cork, Ireland notified Mrs. O'Neill of her expatriation. For further consideration of this case, kindly ascertain from the records of the State Department whether loss of citizenship was for any reason other than residence in the place of her birth. Joseph tel 341-1408" + }, + { + "id": "A10775863_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Operations Memorandum, FORM 05-682" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1955, 1933, 1940, 1957, 1932] + } + }, + "anumber": "A10775863", + "full_text": "PTFRCK FORM DS-682 8-1-50 Unclassified OPERATIONS MEMORANDUM TO: Department of State Date: July 30, 878-13-5 girl FROM: AMCONSULATE, Cork, Ireland (EWAH) SUBJECT: CITIZENSHIP ND PASSPOR\" : Expatriation of Margaret O'Neill nee HORGAN, REF: There is enclosed a CERTIFICATE OF THE LOSS OF THE NATIONAL- ITY OF the UNITED STATES based on the provisions 'of Section 404 (b) of Chapter IV of the Nation lity Act of 1940, relating to Mrs. Margaret O'Neill, nee HORGA 9 together with her NATURALIZATION CERTIFICATE No. 3645015, Petition No.34022, issued by the Supreme Court of the State of New York, Long Island City, New York, on November 30th, 1932, in her maiden name Margaret HORGAN. Mrs. O'Neill presented her expired passport No.30184 issued in her maiden name Margare Horgan by the Department of State, ashington, on June 8, 1933 indicating her arrival in Ireland on August 7, 1933. Mrs. O'Neill intends to return to the United States to join her daughter, Hilda, who obtained an immigrant visa in 1955, and to reside in the United States permanently, as soon as she is financially able to do so. Her son, John Patrick O'Neill, born in Ireland or May 17, 1940, executed an application for a passport at this office on July 31, 1957, and his applica- tion is being submitted tc the Department for consideration. Her base has been considered in the light of Section 340(d) of the Immigration and Nationality Act and an affidavit regarding permanent residence abroad has not been prepared as it is not deemed warranted. Enclosures: I. Certificate of Loss of Nationality, in triplicate. 2. Naturalization Certificate No. 3645015 EWAHoffmann 221 Unclassified 8-12-7" + }, + { + "id": "A10775863_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Certificate of the Loss of the Nationality of the United States, F-324" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1946, 1944, 1933, 1957, 1940, 1932] + } + }, + "anumber": "A10775863", + "full_text": "Form No. se FOREIGN SERVICE Established April 1944 CERTIFICATE OF THE LOSS OF THE NATIONALITY OF THE UNITED STATES (This form has been prescribed by the Secretary of State primant to Section 501 of the Act of October 14, 1940, 54 State 1773 DEPARTMENT OF STATE AUG 13 1957 (Date) Copy cos. CERTIFICATE insulate of the United States, APPROVED For the merica at Cork Ireland laus Secretary or State Frances G. knight Passport I. Erich A. Hoffmann here certify that, to the best of my knowledge and belief, Jame By JECOM HORGAN (argaret O'Neill, nee was born at Ovens County Cork (Town or city) (Province or county) Ireland on March 17, 1907 ; State or country (Date That She resides at 31 Reendowney Place, Friars' Walk, Cork, Ireland : (Street) (City) (State) That She last resided in the United States a Queensborough Hospital, Long Island (Street) (City) N.Y. New York ; State That She left the United States on or about August 1933 : (Precise date should be given) That She acquired the nationality of the t ted States by virtue of naturalization before the Supreme Court of the State of New York, held at Long \"Isiani City, himth New York, on November 30th, 1932, in her maiden name Margaret HORGAN. the United States so state if naturalized give the name and the court in the United States before which naturalisation was granted naturalization hot That She has expatriated himself under the provisions of Section 404(b) of Chapter IV of the Nationality Act of 1940 by residing continuously for three years in a foreign state in which the place of her birth is situated. Effective loss of nationality October 15 1946. expatriation should be set forth muchaelly) That the evidence of such action consists of the following: Mrs. Margaret 'Neill returne to Ireland on August 7th, 1933 as indicated in her passport of 50184 issued by the Department on June 8, 1933 in her maiden name Margaret and such documentary evidence as may be available concerning the action causing expatriation of the Individual concerned) HORGAN, and she resided in the country of her birth, Ireland, ever sind that date. Her case does not come within the purview of any exception to the operation of Section 404 of the ACT. In testimony whereof, I have hereunto subscribed my name and affixed office seal this 30th day of July 1957. (Month) [SEAL] Erich W. A. Hoffmann Consul of the United States of America. (Title of officer)" + }, + { + "id": "A10775863_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Foreign Service Regulations and Reporting Procedures for Consular Officers in Ireland,, PM-1600/23" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1940, 1939] + } + }, + "anumber": "A10775863", + "full_text": "April 5, 1940 To the American Consular Officer in Charge, Cork, Ireland. The Department refers to the registration application which was exacuted in your office on July 3, 1939 by rgaret O' Heill. The Department is of the opinion from the case as presented that the applicant is not in a position under any of the preser bed rules to overcome the pre- sumption of having ceased to be an American citizen, which has arisen under he provisions of Section 2 of the Act of March 2, 19 , and the application above mentioned is accordingl disapproved. Should evidence be presented which satisfies you that the applicant has made definite arrangements to return to the United E tes, thereby bringing the case within Rule (g), the issue of a limited service pass- port is authorized. If the applicant ails to avail herself of the opportunity offered to return to the United States for permanent residence, accompanied by her family, you should investigate the case in the light of Chapter X-145, Note 1, Part II, Foreign Service Regulations and report your findings to the Department. free the PD-100C R 130 - O'Neill, Margaret R.D.S." + }, + { + "id": "A10775863_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION FOR REGISTRATION" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1937, 1905, 1935, 1934, 1933, 1932, 2010] + } + }, + "anumber": "A10775863", + "full_text": "REGISTRATION APPROVED Get a Date APPLICATION FOR REGISTRATION (For use by person whose status as a citimen has been approved by the Department of State at Washington) Valid to john 41,TEPO Consult : Margaret O'Neill was born at Ovens, Co.Cork . (Place) Ireland . on March 17, 1907 : I was naturalized as a State) (Date) New York citizen of the United States before the Supreme Court of State of at Long Island the York on November 2 1932. I have resided outside the United States since 479 August 7, 1933, (Give at of Cor , Ireland, names country and periods of residence in esch) for the purpose of visiting my father, and married after my : my legal residence arrival in the United States is at 755 Southern Boulevard, Bronx, N.Y : my occupation is that of cousewife (formerly Nurse) : I intend to return to the United States within time months to reside permanently. I have not been naturalized as a citizen of a foreign state bake have not taken an oath of alleg ance to a foreign state. My husband-father-mother was naturaliz as a citizen of the United States before the / Court of at / on / My husband, Timothy O'Neill . to whom I was married on November 29, 1934 was born it Bandon, Co.Cork, Ireland , on He arch the 1905 is not an American citizen. ican have the following minor children: Helen Patricia Cork, Irele d. Name (Place of birth) September 6, 1935. Cork, Ireland (Date of birth) Katherine Marie Cork, Irel d. (Besidence) March 10, 1937 Cork, Ireland I desire my registration to include the following members of my family: The children above named In the event of death or accident notify: Mr. Timothy (Name) O'Neill (Husband) Flora Ville, (Address) Boreenmanna Road Cork. (Signature of applicant Flora Ville, Bercenmanne Road Caned Cork Irela Evidence of citizenship submitted: of Horgan. Naturalizati certificate Passport No. 30184 (To be filed issued June 8, 1933, maiden in na in by Count NO FEE. Robert R. Patterson (Signature of Committee collect) Cork Ireland (Place) Jule? 2010" + }, + { + "id": "A10775863_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "AFFIDAVIT BY NATURALIZED AMERICAN TO OVERCOME PRESUMPTION OF NONCITIZENSHIP, 1-170" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1933, 1940, 1939] + } + }, + "anumber": "A10775863", + "full_text": "Arrwater DI THING AMERICAN tv BLOWKIND AFFIDAVIT BY NATURALIZED AMERICAN TO OVERCOME PRESUMPTION OF NONCITIZENSHIP In all cases where the presumption of expatriation has arisen or is about to arise, this form must be made out and accompany the application, whether for a passport, registration, renewal, or extension. It is to be used in all cases where passports are applied for under rule (g) [sec. 150, note 18]. It must always accompany applications for extension of passports which have been expressly limited in validity [sec. 169. note 3). In cases of naturalized citizens the exact periods and places of foreign residence since naturalization should be stated. I. Margaret O'Neill a American citizen, born at Ovens, Co. Cork, Ireland do solemnly swear that I ceased to (City) (Country) reside in the United States on or about August 7, 1933 1 ; that I have since resided at Cork, Ireland ; and that I arrived (Countries) in Cork, Ireland , where I now (temporarily residing, on August 7 (City and country) 933 my reasons for such foreign residence bein follows: 1 To visit my father who was 111. I married in November 934 a citizen of Ireland, and since marriage have two daughte Since establishing a residence abroad I have made the following visits to the United States: From 19 to 19 From 19 to 19 From 19 to 19 From 19 to 19 I have not since my naturalization never as an Americ in citizen} been naturalized, taken an oath of allegiance, or voted as a foreign citizen or subject, or in any way held myself out as such. I maintain the following ties of family, business, and property with the United States: Lrs. II. Slattery (Sister) 755 Southern Boulevard, Bronx, New York John Cullinan (Uncle) 765 Sou hern Boulevard, Bronx, New York. I do not } pay the American Income Tax at do I intend to return to the United States permanently to reside within 9 (months) Peace or when in the Spring of 1940. Imagant (Signature of oncell applicant) AMERICAN CONSULAR SERVICE AT Cork, Ireland. Sworn to before me this 3rd day o Jul Vs 1939. Johnson (Date) [SEAL] (No fee prescribed) Robert R. Patterson Vice-Consul (SEE INSTRUCTIONS PRINTED ON REVERSE SIDE) of the United States of America. afflant Executing 'This and reasons statement officer therefor. should will Officer indicate should whether also this state is the whether applicant's or not independent afflant's statement statement has been If not, translated officer from should a foreign state extent language. to which he has prompted be as clear and definite as possible. JC 1-170" + }, + { + "id": "A10775863_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "OPinion of Officer Taking Affidavit, N-14023" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1940, 1939] + } + }, + "anumber": "A10775863", + "full_text": "OPINION OF OFFICER TAKING AFFIDAVIT The officer before whom the affidavit Is made should see that the pertinent facts and circumstances regarding the applicant's residence abroad are fully and correctly set forth in the affidavit and application If, for any reason, they are not 80 stated the officer should complete them in the space below, adding such comment OZ opinion as is appropriate. He should state whether the facts recited constitute the true reason for such residence, and whether they are sufficient under the established rules to entitle him to protection as an American citizen. He should also definitely state his opinion, in the case of a native citizen, whether the applicant has SATISFACTORILY EXPLAINED HIS PROTRACTED FOREIGN RESIDENCE, and in the case of a naturalized citizen whether HE IS IN A POSITION TO OVERCOME THE PRESUMPTION THAT HE HAS CEASED TO BE AN AMERICAN CITIZEN. (Sec. 144B and notes 3 to 6; sec. 155, note 15.) He should sign his name and add his title below the statement of his opinion. This affidavit which was executed on July 3, 1939, was held pending the receipt of a marriage certificate and birth certificate for the children. The facts recited constitute applicant's true reason for foreign residence but are not sufficient under the established rules to entitle her to protection as an American citiz It is my opinion that she is not in a position to overcome the presumption that she has ceased to be an American citizen. Applicant states emph ically, however, that she will return to the United States for I menent residence about April 1, 1940, end will be accompanied by er family. Under the circumstances the base has not been considered in th light of fraudulent naturalization and it is suggested that she be given a limited period to return under the provisions of rule (g). Should she then not return er case will be reconsidered in view of her recent naturalizatio Robert R. Patterson ce Consul of the United States of Ameri RRP.jc" + }, + { + "id": "A10775863_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization, 30184" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1933, 1922, 1932, 1924, 1994] + } + }, + "anumber": "A10775863", + "full_text": "30184 NATURALZATIOn UNITED STATES OF AMERICA STATE OF NEW YORK 88: COUNTY OF NEW YORK EDITION OF 1932 DEFARE I, mangaret at (Name in for full) Hongane a passport I solemnly swear a CITIEEN that I was OF THE born UNITED at book.,Big STATES, (Place) do hereby apply to Department of State, Washington, Ineland , on Marclin 1994 I was married-on never married Never been married (A woman must insert date of each marriage) that I emigrated (Country) to the United States, on or about / 14.2-21.1924 ; (Date) that I resided continuously in the Unit (Date) States from 1924 to 1.9.33, at new york (City) bly State) jy [that I was naturalized as a itizen (Portion in brackets not the United States before the Supreme beaut is Court of this N.Y. Queens be filled in if applicant claims citizenship through naturalization of parent or husband) ralization at Cig ty submitted on nov 30 1.439 as shown by the Certificate of Nat (Month) (Day) (Year) previous No that I am the IDENTICAL PERSON described in said certificate]; that I am domiciled in United States, my permanent residence being at Queenshora Hospital $treet/address) gamance presented herewith in the city Have of Long gloul State of nyr that I have not taken an oath of allegiance to, or naturalized as a citizen or subject of any foreign State, and that I ha (If applicant took an oath of allegiance to, or was natu d in a foreign State, a supplementary statement, under oath, should be attached) resided outside the United States since my naturali Money ion at the following places for the following periods: country and length of stay in each) from to (Departure from U. S.) from to (Name of father My husband cou David Thies) Horgan was born at (Country) Inelavel (Return to S.) (A woman is who has residing been married at may Insert HOR shand's nanny gueland now [he emigrated to ti (Date) (City and State or country) (Portion in bragkets not to be filled in if United States on or about resided years continuously in the Unite Applicant WAN naturalized in own right) (Month) (Year) States, from 1 to 1 at ; and was naturalized as a citizen laco of residence in the U. 8.) the United States before the Court of at (Cityand on 1 as shown by the Certificatexof Naturalization (previously herewith.] submitted.) State (Month and day) (Ye My last passport was obtained from drush Passford (presented (Inser ashington, or location of office abroad) attached (Date) and is submitted herewith for cancellation. (Give disposition of passport if it can not be submitted) I am about to go abroad temporarily and intend to r urn to the United States within beland Vacation 3 months. (Name countries to be visited) (Object of visit) I request that my passport include m wife who was born (Name in full) at on (Place and State or country) , and to whom I was married Date) on Her present add SS is (Date of marriage) (City) (State) (Country) PORTION IN THIS BLOCK MUST BE FILLED I IF MARRIAGE TOOK PLACE ON OR AFTER SEPTEMBER 22, 1922 My (wife's) maiden name was (Name) , and (I) (she) was was not previously married on (Date of each previous marriage) My Her former husband, (Full name of former-libsband) was born healthed at and we (City and State or country) (they were divorced on (Date) My wife emigrated to the United States on or about and (her father) (her former husband) as naturalized as a citizen of the United States before the (Portion in brackets not to be filled in if wife claims lienship through birth in the United States) Court of at on (City and State) 12 1 as places shown for by the accompanying ertificate of Naturalization Since naturalization she has resided (Month) abroad (Day) at the following (Year) the following periods: [Name each country visited and the length of stay in each) from to (Departure from U. S.) from (Names of countries visited) I PASSPORT request that my passport Include my minor children, as follows: born at on JUN - 8 1933 residing at" + }, + { + "id": "A10775863_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "OATH OF ALLEGIANCE" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1904, 1933, 1983] + } + }, + "anumber": "A10775863", + "full_text": "OATH OF ALLEGIANCE Further, I do solemnly swear that I will support and defend the Constitution of the United States against all enemies, and domestic; that I will bear true faith and allegiance to the same; and that I take this obligation freely, without LICENSE mental remer ration or purpose of evasion: 80 help mo God. JUN 25 1933 x (Signature Applicant) Hargare Magaset of Sworn to before me this day SEAL OF of margaut Hougau PASSPORT AGENCY] we Agent the Department of State. of DESCRIPTION OF APPLICANT Height K5 feet, A57 inches. Age 26 years. Hair Black Buntle mark on j'avehead Eyes guey Distinguishing marks or features of birth bank and (Signature ml a Date of birth 17 I much 1904 Infigmities. marks or sears on head or bands, by which applicant may be identified) Place (City and State) (Month, day, and your) Occupation nurse I intend to leave the United States from the port of new your (Port of departure) City sailing on board the & S. (Name of Washington ship) on any (Date of 2nd 19 23 , departure) A DRESS % QUEENSBORO HOSPITAL I request that my passport be mailed to the following address: OK JAMAICA, long & Name Wm P Guessee SHADTON President. The [NOTE.-A Inter passport Footbox win not be Alled to . No. and Street 274 Machs se are hotel address unless the total is the applicant's place of permanent rest- dence. City and State new your AFFIDAVIT OF IDENTIFYING WITNESS H I, the undersigned, solemnly swear that I am a citizen of the United States; that I reside at the address written below signature hereto affixed; that I know the applicant who executed the affidavit hereinbefore set forth to be a citizen of the nited States; that the statements made in the applicant's affidavit are true to the best of my knowledge and belief; further, mury solemnly swear that I have known the applicant person y for all my Wile years. 26 years Kate If witness has been a nd date of issue or date approximate issued Slatters passport, of issue. give number My many Hate (Name slattery SIST of witness) o. Date of issue No lawyer or other person will be accepted as witness to a proport 763 Fox st Brony n. oplication if be has received or expects to receive a fee for his services in (Residence address of witness) insection with the execution of the application or obtaining the parport. JUN 5 1983 Sworn to before me this day Houseau Agent of the Department of State. The plicati fides a Seal impres cover [SEAL OF PASSPORT AGENCY] CORPANTI MEATO" + }, + { + "id": "A10775863_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "The Acting Secretary of State presents his compliance to the Minister of the Irish Free State and has the honor to enclose for his disposal a passport which was issued to Margaret Horgan by the Government of the Irish Free State., PD-010-MR D" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [2000, 1933] + } + }, + "anumber": "A10775863", + "full_text": "The Acting Seezeta of State presents his compli- sents to the Minister of the Irish Free state and has the honor to enclose for his disposal a passport which was issued to Margaret I organ by the Government of the Irish Free State. It appears from e lenoe presented to the Department that Miss Horgon wan TM curalized as an American citizen on November 30, 1933, and the enclosed document was surrendered to the Department 2000 cly when Miss Hozgan applied for and received an American P asport. Enclosure: June 12. .1933 Passporte, Department of State, Washington June 9, 1933. 130- Horgin, Margaret R. B. S. nam PD:GM:OMR D" + }, + { + "id": "A10775863_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "REQUEST FOR INFORMATION FROM NATURALIZATION FILE ( (N-585 is attached, fill in items 2, 3 and 6 only)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1957] + } + }, + "anumber": "A10775863", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Bx 586 REQUEST FOR INFORMATION FROM NATURALIZATION FILE (If N-585 is attached, fill in items 2, 3 and 6 only) 1. CERTIFICATE NO. C-3 645 015 2. REQUESTING OFFICE Boston, Mass. N-565-etk 3. DATE OF REQUEST 7-23-64 4. FILE NO. 5. NAME OF APPLICANT Margaret O'Neill 6. REASON FOR REQUEST a. Derivative f. Application for Certificate, N-580 b. Lost Papers g. Denaturalization proceedings C. Special Certificate h. Birth Date d. New Name Certificate i. Information from Record . furnish copy of Petition Old Certificate submitted j. Other (Specify, indicate application Form No. if any) e. New Name Certificate Old Certificate lost or mutilated PLEASE SEND COMPLETE NATURALIZATION FILE INCLUDING DENATURALIZATION PROCEEDINGS. AL$0 NATURALIZATION CERTIFICATE IF IN FILE. 7. NAME OF NATURALIZED PERSON Margaret Horgan AT TIME OF NATURALIZATION 8. DATE OF BIRTH 3-16-07 - Ireland 9. COURT (TITLE and LOCATION) Supreme Court, Long Island City, N Y. 10. DATE OF NATURALIZATION 11-30-32 11. NO EVIDENCE OF LOSS OF CITIZENSHIP APPEARS IN FILE Eppat 1957 12. COMPLETE FILE FORWARDED - 13. PHOTOGRAPH OF CERTIFICATE ATTACHED 14. PHOTOGRAPH OF PETITION ATTACHED 15. PETITION FILED ON SHOWS DATE OF BIRTH TO BE 3-17-07 SIGNATURE OF TRANSCRIBER DATE TRANSCRIBED GPO 947-592 Form G-347 (Rev. 3-25-64)" + }, + { + "id": "A10775863_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "RECEIVED JUL 27 1 39 PM \"64 CENTRAL OFFICE I&N SERVICE MAIL UNIT" + }, + { + "id": "A10775863_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "IMMIGRATION AND NATURALIZATION SERVICE, C 3 645 015 Temp." + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Jamaica", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1957, 1932] + } + }, + "anumber": "A10775863", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Washington 25, D. C. August 26, 1957 C 3 645 015 Temp. INF Clerk of Court Supreme Court, Queens County Jamaica, New York Dear Sir: This office is in possession of information showing that the person named below has lost United States citizenship since the date of naturalization. Please place this communication with the record of the natural- ization, and note your index accordingly. If there should be any requests for information concerning naturalization or loss of citizenship, please refer them to this office for attention and appropriate disposition. Name: Margaret Horgan Certificate No. 3 645 015 Petition No. 34022 Date of Naturalization: November 30, 1932 Sincerely yours, E. A. Loughran Assistant Commissioner ral ADM-17 (12-7-54)" + }, + { + "id": "A10775863_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "male" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "CERTIFICATE OF THE LOSS OF NATIONALITY OF THE UNITED STATES, Form No. 568" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1946, 1944, 1933, 1957, 1940, 1932] + } + }, + "anumber": "A10775863", + "full_text": "oned at National Archives at Nanas City 3.4.45 01511 Form No. 348 FOREIGN SERVICE Established April 1944 CERTIFICATE OF THE LOSS OF THE NATIONALITY OF THE UNITED STATES (This form has been prescribed by the Secretary of State pursuant to Section 501 of the Act of October 14, 1940, 54 Stat. 1171.) DEPARTMENT OF STATE AUG 13 1957 (Date) CERTIFICATE Consulate of the United States of APPROVED Cork Ireland ss: team For the America at Secretary of State Frances G. Knight Direc Passport Erich W. A. Hoffmann By I, hereby certify that, to the best of my knowledge and belief, Margaret O'Neill,nee HORGAN Ovens County Cork was born at , Ireland March 17, 1907 (Town or city) (Province or county) on ; (State gr country) 31 Reendowney Place, Friars' Walk, Cork (Date) That he resides at ; (Street) s (City) (State) Queensborough Hospita Blance (City) Long is Island That he last resided in the United States at N. Y. New York (Street) ; (State) or about August 1933 That he left the United States on (Precise date should be given) natural lization before the That he acquired elite cour the nationality the of the United States by virtue of OI State of York, eld at Long (If national by birth New York, on November 30th, 1932, in her maiden name Margaret HORGAN. in the United States, so state if naturalized, give the name and place of the court in the United States before which naturalization was granted and the date of such naturalization) her 404(b) That he has expatriated himself under the provisions of Section of Chapter IV of the residing continuously for three years in a foreign Nationality Act of 1940 ,by place of her birth is situated. Effective (The action causing of loss of nationality October 15, 1946. expatriation should be set forth succinctly) Mrs. Margaret O'Neill returned to That the evidence of such action consists of as the following: in her (Here list the sources of information issued by the Department on June 8, 1933 in her maiden name Margaret Hind such documentary ELECT evidence sire as may be available concerning the the action causing or expatriation of OLI the individual concerned) nd, ever since that date. Her case does not come within the purview of any exception to the operation of Section 404 of the ACT. 30th In testimony whereof, I have hereunto subscribed my name and affixed my office seal this July 57. day of , 19 (Month) Erich W A. Hoffmenn [SEAL] Consul of the United(s@rube. of America. (Title of officer) (OVER) STATISTICS" + }, + { + "id": "A10775863_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "Conied ai the National Archives at Kanas City The certificate should be executed in quadruplicate. Two copies thereof should be sent to the Department, one of which should be the original, and two should be retained in the files of the office in which it was executed. After the Department of State shall have approved the certifi- cate it will so advise the appropriate diplomatic or consular officer, who will thereafter make a notation on the two copies retained by him to the effect that the certificate has been approved by the Department under the date of the instruction to the diplomatic or consular officer and who will thereafter forward a copy of such certificate to the person to whom it relates." + }, + { + "id": "A10775863_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Naturalization Certificate" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1932] + } + }, + "anumber": "A10775863", + "full_text": "TO BE GIVEN TO THE PERSON NATURALIZED No. 3645015 Petition no. 34022 Personal,description of holder,as, Age 25 years:sex female color white ; complexion medium colorofeyes grey color of hair black height 5 feel 7 inches; weight Maritalstatus 155 pounds; visiblesdishindive,marks none Irish single ;race formermationality British I certify that the description, above givenis brue, and than hafficed.heretois, a likeness, of me. any ( Complete Hougou and true signature of holder) State of New York County of Queens } SS: Margaret Horgan then,residing. at Queensboro Hospital, Jamaica N. Y. having pelitioned, lobe ofthe United atermofthe Supreme Court,of the State of New York Long Island City, N. Y. on November 30th 1932 the courthaving to reside hermanenthyin.the United. States hadiner Prespects ofthe United States insuch, andwas, entilled to besoadmilled.she court thereupon organgonet Horgan as acitizen ofthe United States of America. Intestimonywhereofthesealofthecourtis hereunto, affixed this 30th day of November in the years hour Lord nineleen hundred and Seal thirty-two and of our Independence the onehundred and fifty-seventh award Glerkofthe Supreme enter Court. By Kraise anepe afe Deputy Clerk." + }, + { + "id": "A10775863_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "American Consular Service Cork, Ireland. July 3, 1939. Application for registration this date , to include two children AMERICAN CONSULATE CORK, IRELAND. Certificate of the Loss of the Nationality of the United States executed at the American Consulate, Cork, Ireland, on July 30th, 1957 Erich W. A. Hoffmann American Consul STO SEUBN 12 our 10 paidon" + }, + { + "id": "A10775863_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States of America Naturalization Certificate, 345016" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Jamaica"] + } + }, + "anumber": "A10775863", + "full_text": "TO BE FORWARDED TO THE BUREAU OF NATURALIZATION No. 3645015 OF 10 kelden no 34022 Personal description of holder arefa date of inaturalization Uge 25 years Jer female eder white completion medium colorefoyo grey coloref hair black height 5 feel 7 inches bernight 155 founds distendere marks none Marilat Matur single proce Irish former maternality British Icerlife that the description above greenes has and Malthe photograph affired herebo \" likeness of me Marquez Honyou / Complete and true signature of holder) State of New York 53 County of Queens Bedknown that Mar garet Horgan then residing at Queensboro Hospital, Jamaica, N. Y. having politicned to admitted.ru adian the United Males of (Imerica and alerm of the Supreme Gourly the State of New York held pursuanth law at Long Island City, N. Y. in November 30th 183 the courthaving to and that the proteiner intends to reside permanently m the United Mater hadin all resport complerd with the Maherateation from of the United Rates in such me applicable andwa condition lot readmilled the courthereupon organet organ H admitted the coloren of the United Hater if Minerian In testimony whereef the seality the courtes herrante affered this 30th day of November who your four land nineteen handrodand Seal thirty-two Independe na the one hundred and fifty-seventh offox arrele Supreme Gent Clork" + }, + { + "id": "A10775863_0028", + "page_index": 28, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0028/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "DUPLIC TE UNITED STATES OF AMERICA No. 34022 PETITION FOR CITIZENSHIP To a - with for STREET Cost of DO at TAMARGA The online K MAR a ARET HORGAN benty Use here (1) Mary = is Socpital, My compativo is nurse n (way - in Cock iraland = the 17.1909 3tr fun in Irish - Londo - my Intention to - . direct or the United States - 00.26.2027 in the Court of See York at New Yoak City (5) I'm Deserted The name of my with = Instruct to - seen and co. at in been at = returned the Dated - all for permanent residence there's and 297 mide at There and sa DATE date set place of total had of residicare of each of sid are as follows: (6) My be foreign residence - Coric Ireland I emigrated to the United Postan it America this queenstown Ireland My lawrut entry for residence to the United State - at HY NY under the sace of Margaret Ho rgan on May 2,1927 on the reseal Laconia = shown 50 the certifiest of my Annual attached benetity 7 Iam - c Stellerer la or opposed to organized government or a member of or dilisted with any organization or body of persons teaching disbelief = or appear to orgeniae recomment 1 am - a polypomist - a bollower to the practice of polymary I ACO attached to the principles of the Cosscitation of the United tal and will d and to the good order and happiness of the United States It is my initiation to tennisse . office of the United States and to resources - forever all a and 2dully to any foreign prince, potentiale, state or and particularly to SADAGE . ** THE CHACE ** CRO 06 GREAT editace (RELASS Ame THE anitian NOMEN inz HEAR his. OF Ini Fada, LAPEHOM OF india. whee to no at sale tice sm . subject (or estimate and la my intention to reside permanently in the United States. (9) Ism able to spee.k the English - (a) 1 have - led methooosity to the United State of America for the term of fire yeso at least immediately preceifing the date of this petitive, to sive May 2, 1927 and in the County of Queens this State net preceding the date of this petition, since July 20 3931 belog a residence within mid county of at less six maths - preceding the date of this petition (10) I am so Directoloro made petition for citizenship: Number ca at sad ruch petition was deaded by that Court for the following resident and - to: sad the can dental first since been ested oz removed Attach reto and made . part of this my petition for childenship, are my Organization of Intention to become a dillion of the United States, certifiests from the Department of abe of my said arrival. and the of the two verifying withouts required by law Wherefi your pray that : may be admitted . citizen of the United States of America, and that my name be changed to - 1. your know petitioner being duty sworn. depose and my that 1 have read this petition and know the contenta thereof that the - to logo my can Issic except - to matters harets stated to be alleged upon Information and that at to those matters : believe # to be trus: and that this - is eizened by all with my full. true name Maryant (Complete Maizon signature (politioner) AFFIDAVITS OF WITNESSES Ramona Burns occupation Dietitcian ml Hoeper Jameica Gertigude Lawrench occupation nursa tailing AT messaboro Hoa... Jama ion each herey only and respectively wirn definites and mys that ha is . citizen of the United States of Amering that be has personally known - butted Stated with HORGAR the pesitioner above mentioned store Juna 20.1927 the permission bur resided in the United States continuously precading the date of filled this polition, of whis this difficult data but and 11 Jamaion in the (Sounty of quaens June 10.1931 this be has a" + }, + { + "id": "A10775863_0029", + "page_index": 29, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0029/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Petition,, N-4-1025" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Jamaica", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1923, 1931, 1927, 3933] + } + }, + "anumber": "A10775863", + "full_text": "was pers - - IC green 4 : declare = Instruction to become a different of the United States on = the 58 Dist Court of Sea Year at does York-osty (5) I - as The of my will or in we were mannet - at -- - - - the United Nation at for permanent residence there not - vesicles at I bare paren and the name date, and place of birth, and place of residence of each of said difference are as follows: (a) My last decision resideuro was Cork Ireland 1 emigrated to the United States of America from queanstom Ireland My lawful earry for permanent residence to the United States was al NY XY under the satie of Margaret Horgan 05 By 2,192 - the - Laconia = shown by the continues of my Sectral allached bereta (7) I am not in or opposed to organized government or s member of or afflisted with any organization or body - persons teaching disbeliet in or moved to organized I - DR is polygamist not . believer in the practice of polymany I am attached to the principles of the Constitution of the United Foster and wall daysed to the good order and happiness of the United States It is my intention to become 5 criting of the United States and to renounce absolutely and from all all drive and fidelity to any foreign prince, potentate state, or and particularly to . .. THE cases - - OF CHEAT PRITAIN IRELAND AND THE GRITISM DRIN the SCAR ... DEPENDER of Tat Falls, LOPENOR OF LADIA of when (= 4. - this time i am = subject (or citizen). and it is my intention to reside permanently is the United States (8) are able to speak the English language (9) : have resided continuously is the United States of America for the term of five jest at learn immediately preceding the date of this petition, so wil, May 2, 1927 and in the County of Queens this State - test preceding the date of this petition, since July 10 3933 being a residence within said onesty of as Inst siz months per presenting the date of this petition (10) 1 have no Sharetofore made petiting for citizenshipe Number on et and such petition was dealed by that Court for the following reasons and causes to with and the cause of such dental bas since been cured or removed Attached hereba and made a part of this, say petition for citizenship, are my declaration of tetention to become a oftines of the United States, certifiesto from the Department or Laber of my said arrival. and the stidavits of the two verifying witnesses required by law W berefore L your petitioner, pray that I may be admitted . citizen of the United States of America, and that my name be changed to --- 1. your stamato petitioner being duly sworn, depose and 897 that i have read this petition and know the contents thereof; that the name is true of my own know edge except as to matters herein stated to be alleged upon informati and that to to those matters I believe It to be true; and that this petition is signed by = with my full, true name. manyout (Complete and true Hangou signature patitioner) AFFIDAVITS OF WITNESSES Ramons Burns completiction residing at meenebere Hoopay Jemeica and Gertitude lawrence occupation nurse helding at cleanshoro Hoap. Jammies each being City and respectively sworn, deposes and says that he is a citizen of the United States of America; that be has personally known and hot been acquired in the United States with MARGARIST HORGAZ the petitioner above mentioned state June 20,1923 and that to his presonal knowledge the petitions has resided in the United States continuously preceding the date of filing this petition, of which this officials in part, 10 wit, tam the date last mentioned and at Jamaica in the County of this State, in which the above-entitled petition is made continuously since June 10.1931 and that be has personal knowledge this the yeth if nuring all kith periods has been a person of good meral character, attached to the principles of the Constitution of the United States and well dis point - order and happiness of List United States, and that in his opinion the putitioner is Licensery way qualified to Be admitte preitizen of the United State Kan Burne of without Gentrude Rawman (Signature of williams Buberthe 134 to before me by the above-named pottioner and witnesses is the office of the Chris of said Cours at Jameion the day of June Anno Domini 19. 32 I hereby certify that certificate of arrival No. 2. 226959 Invoice Per of Laber, the lawful entry for premanent residence of the petitioner above named together with declaration of Internal No of such petitioner, has boes by me filed with, attached to, and made is part of this petitions in the date FOWARD W COX by R Clark" + }, + { + "id": "A10775863_0030", + "page_index": 30, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A10775863_0030/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A10775863", + "full_text": "Furnis 2210 u. R DEPARTMENT OF LABOR SERVICE No. UNITED DECLARATION STATES OF INTENTION or FB ar Invalid for all purposes seven years after the date hereof State of New York, Southern District of New York, $5. In the District Court of the United States. & BARGAR + aged se years, occupation MM do declare on oath that my personal description is: Color mite complexion fair height sfeet inches, weight 148 pounds, color of hair eyes gray other visible distinctive marks - I was born in Cork, Argland on the 17 day of anno Domini T 90F I now reside at 3ml India New York City, N. Y. adidas.) I enigrated to the United States of America from Green town on the vessel remin : my last basis - Treat transport - check to dvs) foreign residence was Cort. first 0.00 am mt married: the name wife of my husband is she he was born at and now resides at It is my bona fide intention to renounce force et all allegiance and fidelity to any foreign prince, potentate, state, or sovereignty, and particularly to of whom I am now a subject: I arrived at the port of \" in the State of IX iv 08 or about the 8 day of anno Domini 1 927 I are not an anarchist I am not a polygamist nor a believer in the practice of polygamy; and it is my Intention in good faith to become a citi en of the United States of America and to permanently reside therein So HELP ME Goix X allang set Hougan ubs and sween before me in the office of the Clark 6 2011 Court SEAL a New York City N this as atz of and con Damini 11) 3 = Cheir" + }, + { + "id": "A19240402_0000", + "page_index": 0, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0000/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "For citation purposes: Records Copied at the National Archives at Kansas City Record Group 566, Records of the U.S. Citizenship and Immigration Services Department of Justice. Immigration and Naturalization Service. Alien Case Files, 1944-2003 Alien Case File A19240402 Anna Nemeth National Archives Identifier: 74718451" + }, + { + "id": "A19240402_0001", + "page_index": 1, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0001/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Surrender this copy when leaving the united states - see reverse, N-530" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "Germany", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "Family Name (Capital Letters) First Name Middle Initial NEMETH Anna Gabriella N-530 Country of Citizenship Passport or Alien Registration Number Hungary F-072399 * United States Address (Number, Street, City and State) Toalstoy Found. Fisk Bldg, 250 W 57 St, Rm 1004, New York Airline and Flight No. or Vessel of Arrival * * Passenger Boarded at N. Y. 10019 MIAR 21 154-72 Cologne, Germany Number, Street, City, Province (State) and Country of Permanent Residencé 40 Janes Nerneth 6735 Maikanimer YOU Schloss 8tr. 2123 adidas Month, Day and Year of Birth United States pursuant to Suc 203(p)(7) Mar. 16, 1907 of the 1811 Act. Unless your candi- City, Province (State) and Country of Birth nonal entry is other wise terminated your eligible for hermanent residence Budapest, Hungary will b lifter 2 yours. Visa Issued at EMPLOYMENT AUTHORIZED A19 240 402 NYC 1/13/72 370 Nermin nth Month, Day and Year Visa Issued (Por)" + }, + { + "id": "A19240402_0002", + "page_index": 2, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0002/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "ARRIVAL - DEPARTURE RECORD, FORM 1-94 ( (REV. 5-1-68)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "IMPORTANT NOTICE Retain this permit in your possession. You are permitted to remain in the U.S. for the time indicated. To remain* past period, without permission from immigration authorities, is a violation of law. WHEN YOU LEAVE THE UNITED STATES By sea or air, surrender this permit to transpor- tation line. Over Canadian border, surrender this permit to Canadian Immigration Officer. Over Mexican border, surrender this permit to United States Immigration Officer. RECORD OF EXTENSIONS To Office Office Office DEPARTURE RECORD Port: Applicant inspected on 9-10-74 at CHI Date: Found admissible CCS immigrent Waiver a thorized under Carrier: I.P. Sign II Section 212 181 To: Officers signature & title (Country of disembarkation) UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service Form Approved Budget Bureau No. 43-R0311 ARRIVAL - DEPARTURE RECORD FORM 1-94 (REV. 5-1-68)" + }, + { + "id": "A19240402_0003", + "page_index": 3, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0003/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary"] + } + }, + "anumber": "A19240402", + "full_text": "1. Name (Last in CAPS) First Middle 2. No. NEMETH, Anna Gabriella A19 240 402 3. Name Under Which Admitted, Record Created or Aliases Sndx. Code N-530 7 4. City and Country of Birth 5. Date Month Day Year of HUNGARY 2 Birth 3/16/07 6. Place of Entry 7. Date Month Day Year of NYC Entry 1/13/72 8. Appl. Form No. or Reason 9. Date Appl. Received 10. Date of Request for Request RESIDES 11. Receiving ECO Symbol 12. Forwarding FCO Symbol 13. Date of Transfer CHI NYC 3/11/74R9 14. REMARKS: Form G-360B (Rev. 1-1-74)N ROUTE SLIP X" + }, + { + "id": "A19240402_0004", + "page_index": 4, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0004/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Form G-360D ( (Rev. 1 - 1 - 72) N TICKLER, A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "1. Name (Last in CAPS) First Middle 2. No. NEMETH, Anna Gabriella A19 240 402 3. Name Under Which Admitted, Record Created or Aliases Sndx. Code N-530 4. City and Country of Birth 5. Date Month Day Year of Birth 3/16/07 6. Place OF Datary 7. Date Month Day Year of Entry NYC 1/13/72 8. Appl. Form No. or Reason 9. Date Appl. Received 10. Date of Request for Request Resides 11. Receiving FCO Symbol 12. Forwarding FCO Symbol 13. Date of Transfer NYC FKG 2/22/72 14. REMARKS: XXMMX COND. ENT. Form G-360D (Rev. 1-1-72) N TICKLER" + }, + { + "id": "A19240402_0005", + "page_index": 5, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0005/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "1. Name (Last in CAPS) First Middle 2. No. NEMETH, ANNA GABRIELLA A19 240 402 3. Name Under Which Admitted, Record Created or Aliases Sndx. Code ANNA KARDOS NEMETH GABORNE N530 4. City and Country of Birth 5. Date Month Day Year. HUNGARY of Birth 3/16/07 6. Place of Entry 7. Date Month Day Year NYC of Entry 1/13/72 8. Appl. Form No. or Reason 9. Date Appl. Received 10.1 Date of Request for Request CB N-400 8/9/77sg 11. Receiving FCO Symbol 12. Forwarding FCO Symbol 13. Date of Transfer SFR CHI 14. REMARKS: 12/2/23 Form G-360B (Rev. 1-1-77)N ROUTE SLIP" + }, + { + "id": "A19240402_0006", + "page_index": 6, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0006/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE COVER SHEET RECORD OF PROCEEDING This is a permanent record of the Immigration and Naturalization Service. Any part of this record that is removed MUST BE RETURNED after it has served its purpose. INSTRUCTIONS 1. Place a separate cover sheet on the top of each Record of Proceeding. 2. Each Record of Proceeding is to be fastened on the inner left side of the file jacket in chronological order. 3. Any person temporarily removing any part of this record must make, date, and sign a notation to this effect which is to be retained in this record, below the cover sheet. The signer is responsible for replacing the removed material as soon as it has served its purpose. 4. See AM 2710 for detailed instructions. M-175 (Rev. 10-20-69)" + }, + { + "id": "A19240402_0007", + "page_index": 7, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0007/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "SANSOME PHOTOS, INC: .439 WASHINGTON ST. CORNER OF SANSOME & WASHINGTON OPPOSITE IMMIG. & NAT. BUILDING TELEPHONE: 986-1927 , WE KEEP YOUR NEGATIVE ON FILE FOR RE-ORDER * * PAID APR20 1977 YOUR PHOTOGRAPHS TAKEN ON:" + }, + { + "id": "A19240402_0008", + "page_index": 8, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0008/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "=" + }, + { + "id": "A19240402_0009", + "page_index": 9, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0009/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A-19240 402 Sansome Photos 439 WASHINGTON ST. Corner Sensome 986-1927." + }, + { + "id": "A19240402_0010", + "page_index": 10, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0010/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402" + }, + { + "id": "A19240402_0011", + "page_index": 11, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0011/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A-19 240 402 Sansome Photos 439 WASHINGTON ST. Corner Sansome 986-1927" + }, + { + "id": "A19240402_0012", + "page_index": 12, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0012/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "=" + }, + { + "id": "A19240402_0013", + "page_index": 13, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0013/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A-19240 402 Sansome photos 439 WASHINGTON ST. Corner Sansome 986-1927" + }, + { + "id": "A19240402_0014", + "page_index": 14, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0014/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "ALIEN REGISTRATION, A-19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1964, 1929] + } + }, + "anumber": "A19240402", + "full_text": "3 ALIEN REGISTRATION Name ANNA GABRIELLA NEMETH STATEMENT OF FACTS FOR PREPARATION OF PETITION No. SECTION OF LAW 316(a) A-19 240 402 (1) My full, true, and correct name is ANNA GABRIELLA NEMETH (Full, true name, without abbreviations) (2) My present place of residence is 300 MONTE VISTA OAKLAND ALA CALIF 94611 (Number and street) (City or town) (County) (State) (ZIP Code) (3) I was born on 3 16 1907 in BUDAPEST HUNGARY (Month) (Day) (Year) (City or town) (County, district, province, or State) (Country) (4) I WIDOWED and have I am living children. The first name of my husband of wife is (was) GABOR (Single; married; divorced; widowed) we were married on 5 19 1929 at MONOR HUNGARY ; he or she was born (Month) (Day) (Year) (City or town) (State or country) at BUDAPEST HUNGARY 8 20 03 on ; (City or town) (County, district. province, or State) (Country) (Month) (Day) (Year) - entered the United States at on for permanent residence in (City 01 (State) (Month) (Day) (Year) (DECEASED 1964) with me the United States and now resides apart from me at ; and was naturalized (Show full address if not living with you) on at Certificate No. (Month) (Day) (Year) (City or town) (State) iiia Seczez (n) or became a citizen by ; his or her Alien Registration No. is (5) I was lawfully admitted to the United States for permanent residence on I 13 72 ; under the name (Month) (Day) (Year) of ANNA GABRIELLA NEMETH at NEW YORK NY on the CHARTER of TOLSTOY (City) (State) (Name of vessel or other means of conveyance) FOUDATION inversence (6) I have resided continuously in the United States of America since 1-13-72 iN ILLINOIS and continuously in the State of CALIFORNIA where I now live since 5-1-76 and during the past 5 years I have been physically present in the United States for an aggregate period of 60 months. (7) I (have have not) previously filed petition for naturalization No. on (Month) (Day) (Year) at in the (City) (State) (8) I wish the naturalization court to change my name to NONE (Give full name desired or state \"None\") (9) Since such lawful admission, I have not been absent from the United States (for a period or periods of 6 months or longer) except as follows (if none, state \"None\"): DEPARTED FROM THE UNITED STATES RETURNED TO THE UNITED STATES DATE VESSEL OR OTHER MEANS DATE VESSEL OR OTHER MEANS PORT (Month, day, year) OF CONVEYANCE PORT (Month, day, year) OF CONVEYANCE NONE (10) I have children: (Complete columns (a) to (h) as to each child. If child lives with you, state \"with me\" in column (h), otherwise (No.) give city and State of child's residence.) (a) Given Names (b) Sex (c) Place Born (d) Date (e) Date (Country) of Entry (f) Port of Entry (g) Alien Born Registration No. (h) Now Living At- M MONOR/HUNG, 3945 HARRISON JOHN D. NEMETH 1-13-30 1-13-72 NEW YORK A19240401 OAKLAND, ca years Absent 1-5-78" + }, + { + "id": "A19240402_0015", + "page_index": 15, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0015/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Application,, N-4-102" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Germany", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "4 (11) Do you intend to reside permanently in the United States? Yes No If \"No,\" explain: (12) My last place of foreign residence was (City) (Country) MAIKAMMER GERMANY (13) My father's full name is DEZSO KARDOS (14) My mother's maiden name was JULIANNA CSIPES (15) I came to the United States from the port of (City) (Country) COLON w GERMANY (16) The person in the United States to whom I was coming was IVAN G. KENESSEY NAPERVILLE, 122. (17) The place in United States to which I was going was CHICAGO (18) The names of some of the passengers or other persons traveled with, including members of my own family, and their relationship to me, if any, were JOHN D. NEMETH (SON ) AND REFUGEES IN ORGANIZATION OF TOLSTOY FOUND, READ INSTRUCTION NO. 7 BEFORE ANSWERING QUESTION (19) (19) I want certificates of citizenship for only those of my children under age 16 years named below. (Enclose $10 for each (Do) (Do Not) child only if you want certificates, otherwise, send no money with this application.) (Write names of children under age 16 years for whom you want certificates) If present spouse is not the parent of the children named above, give parent's name, date and place of naturalization, and number of marriages Signature of person preparing form, if other than applicant. I SIGNATURE OF APPLICANT Anna Nerneth declare that this document was prepared by me at the request of ap- SIGNATURE Werners plicant and is based on all information of which have any knowledge. ADDRESS AT WHICH APPLICANT RECEIVES MAIL ADDRESS: DATE: 300 MONTE VISTA, OAKLAND 94611 3945 HARRISON, OAKLAND 4/4/77 APPLICANT'S TELEPHONE NUMBER TO APPLICANT: DC NOT FILL IN BLANKS BELOW THIS LINE. NOTE CAREFULLY. - This application must be sworn to before an officer of the Immigration and Naturalization Service at the time you appear before such officer for examination on this application. AFFIDAVIT I do swear that I know the contents of this application comprising Subscribed and sworn to before me by applicant at the preliminary pages 1 to 4, inclusive, and the supplemental forms thereto, No(s). investigation ( ) at subscribed to by me; that the same are true to the best of my knowledge and belief; that this day of 19 corrections numbered ( ) to ( ) were made by me or at my I certify that before verification the above applicant stated in my pres- request: and that this application was signed by me with my full, true, ence that he had (heard) read the foregoing application, corrections and correct name, SO HELP ME GOD. therein and supplemental form(s) and understood the contents thereof. (Complete and true signature of applicant) (Naturalization examiner) (For des demonstration er a of applicant's god ability day to write) /shi era beg goil (1st witness) Occupation residing at (Street address. city or town. and State) (2d witness) Occupation residing at (Street address, city or town. and State) U.S. State Physical presence mos. (Naturalization examiner) ARRIVAL RECORD FOUND ARRIVAL RECORDS EXAMINED Place Card index Name Index books Age Manifests Date Marital status Manner (Signature of person making search) Nonfiled (Dates, reasons. and examiner's initials) for" + }, + { + "id": "A19240402_0016", + "page_index": 16, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0016/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION TO FILE PETITION FOR NATURALIZATION, N-4 100 ( Rev. 5-1-76)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1976] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Form approved IMMIGRATION AND NATURALIZATION SERVICE OMB Ng 43 R0079 FEE STAMP APPLICATION TO FILE PETITION FOR NATURALIZATION Mail or take to: IMMIGRATION AND NATURALIZATION SERVICE 245 ALIEN REGISTRATION (Show the exact spelling of your name as it appears on your alien registration (See INSTRUCTIONS. BE SURE YOU UNDERSTAND EACH receipt card. and the number of your card. If you did not register, so state.) QUESTION BEFORE YOU ANSWER IT.) Name ANNA GABRIELLA NEMETH No. A-19240 402 Date: 4/4/77 My name is: ANNA GABRIELLA NEMETH (Print or type here your present full name only) I live at: 300 MONTE VISTA APT 103 OAKLAN CA 94611 (Print or type present apartment number, street address, and if appropriate \"in care of OAKLAND ALAMEPA (City) we (County) JCA, (State) 94611 (ZIP Code) Other names I have used are: ANNA KARDOS NEMOTIFGMBORNE (Print or type here any other name you have ever used, including maiden name) My present occupation is HOUSEWIFE Sex: Male Female (1a) Was your father or mother ever a United States citizen? (If \"Yes\" explain fully separately) Yes No (1b) Can you read and write English? Yes No (1c) Can you speak English? Yes No (1d) Can you sign your name in English? Yes No (2) In what places in the United States have you lived during the last 5 years? List present address FIRST. FROM To- STREET ADDRESS CITY AND STATE (a) 5-1-1976 PRESENT TIME 300 MONTE VISTA OAKLAND Ca 94611 (b) 3-1-1974 5- 1976 534 W. WELLINGTON CHICAGO 122, 60657 (c) 1-20.19.12 3-1 74 3172 N. SHERIDAN CHILAGO 122 60657 (d) 19 19 (3) What were the names, addresses, and occupations (or types of business) of your employers during the last 5 years? (If none, write \"None.\") List present employment FIRST. FROM- To- EMPLOYER'S NAME ADDRESS OCCUPATION OR TYPE OF BUSINESS (a) 19 PRESENT TIME (b) 19 19 (c) 19 19 NONE (d) 19 19 (4) Have you been out of the United States since you first arrived? Yes No If \"Yes\" fill in the following information for every absence of less than 6 months. no matter how short it was. 8 NAME OF SHIP, OR OF AIRLINE, RAILROAD COMPANY Bus DATE DEPARTED DATE RETURNED COMPANY OR OTHER MEANS USED TO RETURN TO THE PLACE OR PORT OF ENTRY THROUGH WHICH You UNITED STATES RETURNED TO THE UNITED STATES / (5) How many times have you been married? How many times has your husband or wife been married? If either of you has been married more than once, fill in the following information for each previous marriage. Check one) DATE MARRIED DATE MARRIAGE ENDED NAME OF PERSON TO WHOM MARRIED SEX PERSON MARRIED WAS How MARRIAGE CITIZEN ALIEN ENDED (a) (b) (c) (d) Form N-400 (Rev. 5-1-76)N (1) GHT (OYER)" + }, + { + "id": "A19240402_0017", + "page_index": 17, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0017/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "The Naturalization Application, N-4" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1973] + } + }, + "anumber": "A19240402", + "full_text": "2 (6) The law provides that you may not be regarded as qualified for naturalization under certain conditions, if you knowingly committed certain offenses or crimes, even though you may not have been arrested therefor. Have you ever, in or outside the United States: (a) knowingly committed any crime for which you have not been arrested? Yes No (b) been arrested, cited, charged, indicted, convicted, fined or imprisoned for breaking or violating any law or ordinance, including traffic regulations? Yes No If you answer \"Yes\" to (a) or (b), give the following information as to each incident. WHEN WHERE (City) (State) (Country) NATURE OF OFFENSE OUTCOME OF CASE, IF ANY (a) (b) (c) (d) (e) (7) List your present and past membership in or affiliation with every organization, association, fund, foundation, party, club, society or similar group in the United States or in any other country or place, and your foreign military service. (If none, write \"None.\") (a) HUNGARIAN REFORMED CHURCH FEDERATION IN AMERICA 1973 to 19 (b) 19 to 19 (c) 19 to 19 (d) 19 to 19 (e) 19 to 19 (f) 19 to 19 (g) 19 to 19 (8) (a) Are you now, or have you ever, in the United States or in any other place, been a member of, or in any other way con- nected or associated with the Communist Party? (If \"Yes\", attach full explanation) Yes No (b) Have you ever knowingly aided or supported the Communist Party directly, or indirectly through another organization, group or person? (If \"Yes\", attach full explanation) Yes No (c) Do you now or have you ever advocated, taught, believed in, or knowingly supported or furthered the interests of Communism? (If \"Yes\", attach full explanation) Yes No (9) Have you borne any hereditary title or have you been of any order of nobility in any foreign state? Yes No (10) Have you ever been a patient in an institution or been treated anywhere else for a mental or nervous illness or disorder? Yes No (11) Are deportation proceedings pending against you, or have you ever been deported or ordered deported, or have you ever applied for suspension of deportation or for preexamination? Yes No (12) (a) My last Federal income tax return was filed NEVER (year) Do you owe any Federal taxes? Yes No (b) Since becoming a resident of the United States, have you: (If \"Yes\", attach full explanation) -filed an income tax return as a nonresident? Yes No -failed to file an income tax return because you regarded yourself as a nonresident? Yes No (13) Have you ever claimed in writing, or in any other way, to be a United States citizen? Yes No (14) (a) Have you ever deserted from the military, air, or naval forces of the United States? Yes No (b) If male, have you ever left the United States to avoid being drafted into the Armed Forces of the United States? Yes No (15) The law provides that you may not be regarded as qualified for naturalization if, at any time during the period for which you are required to prove good moral character, you believed in polygamy or have been a polygamist; received income mostly from illegal gambling; committed adultery; have been a prostitute or procured anyone for prostitution; or have knowingly for gain encour- aged or helped an alien to enter the United States illegally; or have been an illicit trafficker in drugs or marijuana; or have been a habitual drunkard. Have you ever, anywhere, been such a person or committed any of these acts? (If \"Yes\", attach full explanation) Yes No (16) Do you believe in the U.S. Constitution and form of government of the United States? Yes No (17) Are you willing to take the full oath of allegiance to the United States? (See Instructions) Yes No (18) If the law requires it, are you willing: (a) to bear arms on behalf of the United States? (If \"No\", attach full explanation) Yes No (b) to perform noncombatant services in the Armed Forces of the United States? (If \"No\", attach full explanation) Yes No (c) to perform work of national importance under civilian direction? (If \"No\", attach full explanation) Yes No (19) (a) If male, did you ever register under United States Selective Service laws or draft laws? Yes No If \"Yes\" give date ; Selective Service No. ; Local Board No. ; Present classification (b) Were you ever exempted from service because of conscientious objections, alienage, or other reasons? Yes No If \"Yes,\" state reasons (20) If serving or ever served in the Armed Forces of the United States, give branch ; from 19 to 19 and from , 19 to , 19 inducted or enlisted at ; Service No. type of discharge ; rank at discharge (Honorable, Dishonorable, etc.) reason for discharge (alienage, conscientious objector. other) Reserve or National Guard from to" + }, + { + "id": "A19240402_0018", + "page_index": 18, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0018/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE COVER SHEET for RECORD 1-19-70 / OF PROCEEDING This is a permanent record of the Immigration and Naturalization Service. Any part of this record that is removed MUST BE RETURNED after it has served its purpose. INSTRUCTIONS 1. Place a separate cover sheet on the top of each Record of Proceeding. 2. Each Record of Proceeding is to be fastened on the inner left side of the file jacket in chronological order. 3. Any person temporarily removing any part of this record must make, date, and sign a notation to this effect which is to be retained in this record, below the cover sheet. The signer is responsible for replacing the removed material as soon as it has served its purpose. 4. See AM 2710 for detailed instructions. M-175 (Rev. 10-20-69)" + }, + { + "id": "A19240402_0019", + "page_index": 19, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0019/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402" + }, + { + "id": "A19240402_0020", + "page_index": 20, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0020/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A19-240 - - 402" + }, + { + "id": "A19240402_0021", + "page_index": 21, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0021/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CHANGE OF ADDITION TO RECORD OF LAWFUL PERMANENT RESIDENCE, A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 2000, 1972] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE ChaNGE of ADD Place Chicago, Illinois 534 W. WELLiNGTON APT. 402 File No. ChicaGo 57, IL, A19 240 402 Status as a lawful permanent resident of the United States is accorded: Name Anna Gabriella NEMETH SEX DATE OF BIRTH Street 3172 N. Sheridan F March 16, 1907 Address Chicago, Illinois 60657 PLACE OF BIRTH City, State, Zip Hungary NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) Hungary PRIORITY DATE REMARKS NONPREFERENCE Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the & N Act Sec 249 of the I & N Act Sec 214(d) & N Act Private Law no. of the Sec 244( )( ) of the & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of January 13, 1972 at New York City (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) P7 (Applicable in all cases) DATE OF 9-10-74 RECOMMENDED BY: (Immigration Officer) (Date) ACTION T.P. Gogan 9-10-74 DD w. H. BARTLEY DISTRICT Citi FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) 6884635 Form 1-357 delivered Form 1-151 delivered Form 1-151 mailed Form G-153 delivered 09-10-740/2000 CC: Visa Control Office, Visa Office, Department of State, Washington, D.E. 20520 for allocation of Immigrant visa number. State Director, Selective Service (with I - 59) Form - 181 (Rev. 5-1- - 74) N (Page 1)" + }, + { + "id": "A19240402_0022", + "page_index": 22, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0022/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "INSTRUCTIONS, I-59" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "INSTRUCTIONS GENERAL: To request allocation of a visa number for a preference or nonpreference case under Section 245 or for a Western Hemisphere number under Section 1 of the Act of November 2, 1966, mail original and one copy to Visa Control Office. When grant of permanent residence becomes final, the copy returned by the Visa Control Office which allocates the visa number shall be appropriately endorsed, and placed in the file. In such cases the triplicate copy, which was re- tained in the file, shall be noted to show the date permanent residence status is granted and for- warded together with completed Form I-59 to the State Director of Selective Service in the case of every male alien between the ages 18 and 26 or between the ages of 18 and 35 in the case of a doctor, dentist or other medical specialist. If not required for this purpose, it shall be destroyed. In cases where permanent residence is granted without referral to the Visa Control Office, except where Selective Service is to be notified, only an original 1 - 181 need be prepared and placed in the file. In other cases where outstanding instructions require the form 1 - 181 to be forwarded to the Visa Control Office, it shall be prepared in duplicate and the original placed in the file, except when an additional copy is required to notify Selective Service. PREFERENCE: Under Section 245, the priority date will be the filing date of one of the first six preference petitions. NONPREFERENCE: Under Section 245, the priority date shall be fixed by the following factors, whichever is the earliest; (1) the priority date accorded the applicant by the consular officer as a nonpreference immigrant; (2) the date on which application Form 1-485 is properly filed, if the applicant establishes that he is a member of a profession or a person with exceptional ability in the sciences or the arts not included in the Department of Labor's Schedule A(29 CFR 60) provided a certification is issued on that basis, or that he is within Schedule A, or that the provisions of Section 212(a)(14) of the Act do not apply to him; (3) the date on which an ap- proved valid third or sixth preference visa petition in his behalf was filed; or (4) the date an application for certification based on a job offer was accepted for processing by any office within the employment service system of the Department of Labor, provided the certification applied for was issued. A nonpreference priority date, once established, is retained by the alien even though at the time a visa number becomes available and he is allotted a nonpreference visa number he meets the provisions of Section 212(a)(14) of the Act by some means other than that by which he originally established entitlement to the nonpreference priority date. LABOR CERTIFICATION: Check and complete the block regarding certifications on the form as appropriate in a nonpreference case. REMARKS: IF the visa number requested is based on Section 202(b)(1), (2), (3) or (4) or Section 203(a)(9) of the Act explain as appropriate in \"Remarks\" block. DELAY NOTICE: When the Service must obtain a visa number from the Department of State before granting permanent residence, the letter portion of this form notifying of the delay is mailed to the applicant with a copy to the attorney of record. In represented cases the attorney is notified of the approval of an application by furnishing him with a copy of the notice which is part of form. yelco TOOS CUTCHEO" + }, + { + "id": "A19240402_0023", + "page_index": 23, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0023/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1972] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE ChaNGE of ADD Place Chicago, Illinois 534 W WELLiNGTON APT. 402 File No. ChicaGo 57, IL A19 240 402 Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name Anna Gabriella NEMETH Street 3172 N. Sheridan F March 16, 1907 PLACE OF BIRTH Address Chicago, Illinois 60657 City, State, Zip Hungary NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) Hungary PRIORITY DATE REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) & N Act Private Law no. of the Sec 244( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of January 13. 1972 at New York City (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission,(Insert symbol) P7 (Applicable in all cases) DATE OF 9-10-24 RECOMMENDED BY: (Immigration Officer) (Date) ACTION T.P. Gogen 9-10-74 DD w. H. BARTLEY DISTRICT CHI FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) 6884635 Form 1-357 delivered Form I-151 delivered Form 1-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington/ D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service (with -59) - Form 1- - 181 (Rev. 5-1-74) N (Page 2)" + }, + { + "id": "A19240402_0024", + "page_index": 24, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0024/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1972] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE ChaNGE of ADD Place Chicago, Illinois 534 W WELLiNGTON APT. 402 File No. Chicago 57 IL A19 240 402 Status as a lawful permanent resident of the Unifed States is accorded: Name SEX DATE OF BIRTH Anna Gabriella NEMETH Street 3172 N. Sheridan F March 16g 1907 Address PLACE OF BIRTH Chicago, Illinois 60657 City, State, Zip Hungary NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) Hungary PRIORITY DATE REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244( )( ) of the & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of January 13. 1972 at New York City (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission. (Insert symbol) P7 (Applicable in all cases) DATE OF 9-10-74 RECOMMENDED BY: (Immigration Officer) (Date) ACTION T.P. Gign 9-10-74 DD w. 11 BARTLEY DISTRICT CHI FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) 6884635 Form 1-357 delivered Form 1-151 delivered Form 1-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service (with I - 59) Form I - 181 (Rev. 5 - - 74) N (Page 3)" + }, + { + "id": "A19240402_0025", + "page_index": 25, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0025/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form I-18la ( (Rev. 5 - 1 - 74) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "Form 1- 181a (Rev. 5 - 1 - 74) N UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A19 240 402 Date: Anna Gabriella NEMETH 3172 N. Sheridan Chicago, Illinois 60657 Your application for status as a permanent resident has been received. When processing has been completed, you will be further advised. If a visa number is required in your case, the State Department has been re- quested to allocate a number for your use. When the visa number is received you will be invited to appear for medical examination and interview. To avoid delay in the processing of your application, please do not telephone or write while your case is pending. However, if there is a change in your address, employment or marital status, please notify this office promptly by mail referring to the above file number. Sincerely yours, District Director (Page 4)" + }, + { + "id": "A19240402_0026", + "page_index": 26, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0026/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, Form I-181a ( (Rev. 5 - 1 - 74) N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "Form I - 181a (Rev. 5 -1-74) - N UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A19 240 402 Date: Anna Gabriella HEMETH 3172 N. Shoridan Chicago, Illinois 60657 Your application for status as a permanent resident has been received. When processing has been completed, you will be further advised. If a visa number is required in your case, the State Department has been re- quested to allocate a number for your use. When the visa number is received you will be invited to appear for medical examination and interview. To avoid delay in the processing of your application, please do not telephone or write while your case is pending. However, if there is a change in your address, employment or marital status, please notify this office promptly by mail referring to the above file number. Sincerely yours, District Director COPY TO ATTORNEY (Page 5)" + }, + { + "id": "A19240402_0027", + "page_index": 27, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0027/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "Form 1- - 181b (Rev. 5 - 1-74) - N UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A19 240 402 Date: Anna Gabriella NEMETH 3172 I. Sheridan Chicago, Illinois 60657 The application for adjustment of status to that of a permanent resident filed by the above named has been granted. Sincerely yours, District Director ATTORNEY (Page 6)" + }, + { + "id": "A19240402_0028", + "page_index": 28, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0028/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "NFWe FILE ROUTED ON LOAN File No. 919-240-402 ANNA Subject GABRIELLA NEMETH TC To (Office) Att.: (Unit or Person) I-485 From (Office) RALB (Unit or Person) Date Time CHARGE COPY Form G-102 (Rev. 12-1-58) FPI-SS-2-9-70-9.6M-5049" + }, + { + "id": "A19240402_0029", + "page_index": 29, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0029/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FILE ROUTED ON LOAN, G-102" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "FILE ROUTED ON LOAN File 19-240-402 No. ANNA Subject GABRIELLA NEMETH To TC (Office) Att: (Unit or Person) LISS From RAIB [Office) (Unit or Person) Date Time FILE ROUTE SLIP Form G-102 (Rev. 12-1-58) FPI-SS-2-9-70-9.6M-5049" + }, + { + "id": "A19240402_0030", + "page_index": 30, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0030/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "APPLICATION FOR STATUS AS PERMANENT RESIDENT, 4-240-42" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1924, 1907, 1974, 1948] + } + }, + "anumber": "A19240402", + "full_text": "sent 2/22/74 Form Approved O.M.B. No. 43-R0400 date APPLICATION FOR STATUS AS PERMANENT RESIDENT FEE STAMP File No. 719-240-402 APPLICATION FOR THE BENEFITS OF SECTION: pt 203(a)(7) and Sec. 245, I&N Act 245 Sec. 214(d), I&N Act 249 I&N Act Sec. 13, Act of 9/11/57 (DO NOT WRITE ABOVE THIS LINE.) (SEE INSTRUCTIONS BEFORE FILLING IN APPLICATION. IF YOU NEED MORE SPACE TO ANSWER FULLY ANY QUESTION ON THIS FORM. USE A SEPARATE SHEET AND IDENTIFY EACH ANSWER WITH THE NUMBER OF THE CORRESPONDING QUESTION. FILL IN WITH TYPEWRITER OR PRINT IN BLOCK LETTERS IN INK.) CH1 w 875962 485-25.00P0 1. I hereby apply for the status of a lawful permanent resident alien on the following basis: (Check box A, B, C, D. E. or F) A. As a refugee to whom an immigrant visa is immediately available (Section 203(a)(7) and Section 245, I&N Act). B. As a former fiancee or fiance of a U.S. citizen whom I married within 90 days after my arrival in the United States, or as a child of such fiancee or fiance (Section 214(d), I&N Act). C. As a former government official, or as a member of the immediate family of such official (Section 13, Act of September 11, 1957). D. As a person to whom an immigrant visa is immediately available, other than one described above (Section 245, I&N Act). E. As a person who has resided in the United States continuously since prior to July 1, 1924 (Section 249, I&N Act). F. As a person who has resided in the United States continuously since a date on or after July 1, 1924, but before June 30, 1948 (Section 249, I&N Act). 2. My name is (Last in capital letters) (First Name) (Middle Name) My alien registration number is Sex NEMETH ANNA CABriellA Male 719-240-402 Female 3. I reside in the United States at: (Apt. No.) 3172 N Sheridan (City) - Ch H (State) 60657 (ZIP Code) (No. and Street) 4. Date of Birth Place of Birth (City or Town) (County, Province or State) (Country) I am now a citizen of (Country) 3-16-1907 5. I last arrived in the United States at the port of (City and State) Br depect Hungery on (Month) (Day) (Year Hungery by (Name of vessel other of travel) NJ as a C. 1-13-1972 or means (visitor, student, exchange visitor, temporary worker. fiancee, fiance, crewman Mia 21/154.72 parolee, etc.) Conditional Sec. 203(3)(7) was My last nonimmigrant visa issued outside the United States was issued by the American on (Month) (Day) (Year) I inspected. was not Consul at (City) (Country) 6. I am single married divorced widowed a. I have been married / times, including my present marriage, if now married. (If you are now married give the following:) F b. Number of times my husband or wife has been married n/A c. Name of husband or wife (Wife give maiden name) d. My husband or wife resides with me apart from me Li Address (Apt. No.) (No. & Street) (Town or City) (Province or State) (County 11/17- 7. a. 1 have / sons or daughters as follows: (complete all columns as to each son or daughter; if living with you state \"with me\" in last column; otherwi ise ? LANTH EXPiRE give city and state or country of son's or daughter's residence). Name Sex Place of Birth Date of Birth Now living at Janos. M 1-13-1930 Monor Hungory- Chicago Ill. RECEIVED b. The following members of my family are also applying for permanent resident status: my sm Jamos D nemeth MAR 1 1974 TRAVEL CONTROL A BRANCH 8. I have have not heretofore filed an application for the status of a permanent resident. (If you have ever filed such application, give the date and place of filing and final disposition.) UNITED STATES DEPARTMENT OF JUSTICE RECEIVED TRANS IN RET'D.-TRANS Immigration and Naturalization Service OUT COMPLETED Form I-485 (Rev. 12-1-72) N 1974 (Page 1)" + }, + { + "id": "A19240402_0031", + "page_index": 31, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0031/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Alien Certification Form, AC-1295" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "9. I list below all organizations, societies, clubs, and associations, past or present, in which I have held membership in the United States or a foreign country, and the periods and places of such membership. (If you have never been a member of any organization, state \"None.\") none 10. I have have not been treated for a mental disorder, drug addiction or alcoholism. (If you have been, explain.) 11. I have have not been arrested, convicted or confined in a prison. (If you have been, explain.) 12. I have have not been the beneficiary of a pardon, amnesty, rehabilitation decree, other act of clemency or similar action. (If you have been. explain.) 13. APPLICANTS FOR STATUS AS PERMANENT RESIDENTS MUST ESTABLISH THAT THEY ARE ADMISSIBLE TO THE UNITED STATES. EXCEPT AS OTHERWISE PROVIDED BY LAW, ALIENS WITHIN ANY OF THE FOLLOWING CLASSES ARE NOT ADMIS- SIBLE TO THE UNITED STATES AND ARE THEREFORE INELIGIBLE FOR STATUS AS PERMANENT RESIDENTS: Aliens who have committed or who have been convicted of a crime involving moral turpitude (does not include minor traffic violations); aliens who have been engaged in or who intend to engage in any commercialized sexual activity; aliens who are or at any time have been, anarchists, or members of or affiliated with any Communist or other totalitarian party, including any subdivision or affiliate thereof; aliens who have advocated or taught, either by personal utter- ance, or by means of any written or printed matter, or through affiliation with an organization, (i) opposition to organized government, (ii) the overthrow of government by force or violence, (iii) the assaulting or killing of government officials because of their official character, (iv) the unlawful destruction of property, (v) sabotage, or (vi) the doctrines of world communism, or the establishment of a totalitarian dictatorship in the United States; aliens who intend to engage in prejudicial activities or unlawful activities of a subversive nature; aliens who have been convicted of violation of any law or regulation relating to narcotic drugs or marihuana, or who have been illicit traffickers in narcotic drugs or marihuana; aliens who have been involved in assisting any other aliens to enter the United States in violation of law: aliens who have applied for exemption or discharge from training or service in the Armed Forces of the United States on the ground of alienage and who have been relieved or discharged from such training or service. Do any of the foregoing classes apply to you? Yes No (If answer is Yes, explain) Huny 14. (COMPLETE THIS BLOCK ONLY IF YOU CHECKED BOX \"A\", \"B\", \"C\" or \"D\" OF BLOCK 1) APPLICANTS WHO CHECKED BOX \"A\" \"B\" \"C\" OR \"D\" OF BLOCK 1 (INCLUDING REFUGEES) IN ADDITION TO ESTABLISHING THAT THEY ARE NOT MEMBERS OF ANY OF THE INADMISSIBLE CLASSES DESCRIBED IN BLOCK 10 ABOVE MUST. EXCEPT AS OTHERWISE PROVIDED BY LAW, ALSO ESTABLISH THAT THEY ARE NOT WITHIN ANY OF THE FOLLOWING INADMISSIBLE CLASSES: Aliens who are mentally retarded, insane, or have suffered one or more attacks of insanity; aliens afflicted with psychopathic personality, sexual deviation, mental defect, narcotic drug addiction, chronic alcoholism or any dangerous contagious disease; aliens who have a physical defect. disease or disability affecting their ability to earn a living; aliens who are paupers, professional beggars or vagrants; aliens who are polygamists or advocate polygamy; aliens who intend to perform skilled or unskilled labor and who have not been certified by the Secretary of Labor (see Instruction 10); aliens likely to become a public charge; aliens who have been excluded from the United States within the past year, or who at any time have been deported from the United States, or who at any time have been removed from the United States at Government expense; aliens who have procured or have attempted to procure a visa by fraud or misrepresentation; aliens who have departed from or remained outside the United States to avoid military service in time of war or national emer- gency; aliens who are former exchange visitors who are subject to but have not complied with the two year foreign residence requirement. Do any of the foregoing classes apply to you? Yes No (If answer is Yes, explain) (Page 2)" + }, + { + "id": "A19240402_0032", + "page_index": 32, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0032/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1973] + } + }, + "anumber": "A19240402", + "full_text": "15. I do do not intend to seek gainful employment in the United States. If you intend to seek gainful employment in the United States, state the occupation you intend to follow. n/A 16. (Complete this block only if you checked box A or D of block 1) a. I have a priority on the consular waiting list at the American Consulate at as of (City) (Date) b. A visa petition according me immediate relative preference status was approved by the district director at on (City and State) (Date) c. A visa petition has not been approved in my behalf but I claim eligibility for preference status because my spouse my parent is the beneficiary of a visa petition approved by the district director at (City and State) on (Date) d. I am claiming preference status as a refugee under the proviso to Section 203(a)(7) of the Act who has been continuously physically present in the United States for at least the past two years. (If you check this item, you must execute and attach Form 1-590A to this application.) e. Other (explain) 17. (Complete this block only if you checked Box E or F of Block 1) A. I first arrived in the United States at (Port) on (Date) by means of (Name of vessel or other means of travel) I was was not inspected by an immigration officer. B. I entered the United States under the name (Name at time of entry) n/Az and I was destined to (City and State) I was coming to join (Name and relationship) C. Since my first entry I have have not been absent from the United States. (If you have been absent, attach a separate statement listing the port, date and means of each departure from and return to the United States.) 18. Completed Form G-325A (Biographic Information) is Completed Form G-325A (Biographic Information) is not attached attached as part of this application. as applicant is under 14 years of age. 19. IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS, Signature of Applicant: WRITE YOUR NAME IN YOUR NATIVE ALPHABET BELOW: x Date of times Signature: 20. (Signature of person preparing form, if other than applicant.) I declare that this Address of person preparing form if other than applicant document was prepared by me at the request of the applicant and is based on all information on which I have any knowledge. 2/20 1300 Webash this 2/8/74 Occupation: notory examination) Public (Application not to be signed below until applicant appears before an officer of the Immigration and Naturalization Service for I, do swear (affirm) that I know the contents of this application subscribed by me including the attached documents, that the same are true to the best of my knowledge, and that corrections numbered ( ) to ( ) were made by me or at my request, and that this application was signed by me with my full, true name: (Complete and true signature of applicant) Subscribed and sworn to before me by the above-named applicant at on (Month) (Day) (Year) (Signature and title of officer) U.S. GOVERNMENT PRINTING OFFICE : 1973 301-488-011 (Page 3)" + }, + { + "id": "A19240402_0033", + "page_index": 33, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0033/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Affidavit, 1602-0354" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1907, 1974, 1929] + } + }, + "anumber": "A19240402", + "full_text": "AFFIDAVIT STATE OF ILLINOIS) ) S.S. COUNTY OF COOK ) BEFORE ME: The undersigned Notary Public for the State of Illinois at large, personally appear, Anna G. - Nemeth, residing at 3172 N. Sheridan, Chicago, Illinois, who after being sworn on oath, deposes and says: That she cannot obtain from Hungary, her Birth Certificate, her Marriage Certificate and her husband Death Certificate, due to the present political situation of this country. - That she include in this document, the information concern- ing to her: DATE OF BIRTH: March 16, 1907- Place of birth: Budapest, Hungary.- Parents Names: Dezso Kardos and Julianna Csipes.- - DATE OF MARRIAGE: 1929 at Monor, Hungary- MARRIED TO: Gabor Nemeth. My husband died on 1966 at Monor, Hungary. I, Anna G. Nemeth, hereby swear, under penalty of perjury, that the above statement is true and correct, and that my signature below is also true and correct. tuna Neweth Anna G. Nemeth Subscribed and Storn to before me, on this 8th day of February, 1974- A.D. Alicia A. Dopico. Notary Public.- MY COMMISSION EXPIRES APRIL 16, 1974 NOTARY PUBLIC, STATE OF ILLINOIS ISSUED THRU NATIONAL NOTARY PUBLIC ASOC," + }, + { + "id": "A19240402_0034", + "page_index": 34, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0034/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A 19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place NEW YORK File No. A 19 240 402 Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name NEMETH, ANNA G. F 03/16/07 Street PLACE OF BIRTH Address HUNGARY City, State, Zip NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) STATELESS PRIORITY DATE REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of 01/13/72 at NYC (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) P-7 (Applicable in all cases) DATE OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION DD DISTRICT FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) Form 1-357 delivered Form 1-151 delivered Form 1-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service FORM I-181 (REV. 12-1-72) Y (Page 1)" + }, + { + "id": "A19240402_0035", + "page_index": 35, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0035/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A 19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place NEW YORK File No. A 19 240 402 Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name NEMETH, ANNA G. F 03/16/07 Street PLACE OF BIRTH Address HUNGARY City, State, Zip NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) STATELESS PRIORITY DATE REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of 01/13/72 at NYC (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) P-7 (Applicable in all cases) DATE OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION DD DISTRICT FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) Form 1-357 delivered Form 1-151 delivered Form 1-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service FORM I-181 (REV. 12-1-72) Y (Page 2)" + }, + { + "id": "A19240402_0036", + "page_index": 36, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0036/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE, Form Number: A 19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service MEMORANDUM OF CREATION OF RECORD OF LAWFUL PERMANENT RESIDENCE Place NEW YORK File No. A 19 240 402 Status as a lawful permanent resident of the United States is accorded: SEX DATE OF BIRTH Name NEMETH ANNA G. F 03/16/07 Street PLACE OF BIRTH Address HUNGARY City, State, Zip NATIONALITY COUNTRY TO WHICH CHARGEABLE (If any) PREFERENCE (If any) STATELESS PRIORITY DATE REMARKS NONPREFERENCE: Section 212(a)(14) certification not required because: Individual section 212(a)(14) certification issued Blanket section 212(a)(14) certification issued under the following provision of law: Sec 203(h) of the I & N Act Sec 249 of the I & N Act Sec 214(d) I & N Act Private Law no. of the Sec 244( )( ) of the I & N Act Sec 1 of the Act of 11/2/66 Congress session Sec 245 of the I & N Act Sec 13 of the Act of 9/11/57 (Other law Specify) As of 01/13/72 at NYC (Month) (Day) (Year) PORT OF ENTRY FOR PERMANENT RESIDENCE Class of admission (Insert symbol) P-7 (Applicable in all cases) DATE OF RECOMMENDED BY: (Immigration Officer) (Date) ACTION DD DISTRICT FOR USE BY VISA CONTROL OFFICE Date Foreign State Preference Category Number Month of Issuance Signed (Visa Office, Dept. of State) Form I-357 delivered Form 1-151 delivered Form 1-151 mailed Form G-153 delivered CC: Visa Control Office, Visa Office, Department of State, Washington, D.C. 20520 for allocation of Immigrant visa number. State Director, Selective Service FORM I-181 (REV. 12-1-72) Y (Page 3)" + }, + { + "id": "A19240402_0037", + "page_index": 37, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0037/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, FORM 1-181a ( (REV. 12-1-72) Y" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "FORM 1-18la (REV. 12-1-72) Y UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A 19 240 402 Date: NEMETH. ANNA G. Your application for status as a permanent resident has been received. When processing has been completed, you will be further advised. If a visa number is required in your case, the State Department has been re- quested to allocate a number for your use. When the visa number is received you will be invited to appear for medical examination and interview. To avoid delay in the processing of your application, please do not telephone or write while your case is pending. However, if there is a change in your address, employment or marital status, please notify this office promptly by mail referring to the above file number. Sincerely yours, District Director (Page 4)" + }, + { + "id": "A19240402_0038", + "page_index": 38, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0038/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, FORM 1-181a ( (REV. 12-1-72) Y" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "FORM 1-181a (REV. 12-1-72) Y UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A 19 240 402 Date: HEMETH ANNA G. Your application for status as a permanent resident has been received. When processing has been completed, you will be further advised. If a visa number is required in your case, the State Department has been re- quested to allocate a number for your use. When the visa number is received you will be invited to appear for medical examination and interview. To avoid delay in the processing of your application, please do not telephone or write while your case is pending. However, if there is a change in your address, employment or marital status, please notify this office promptly by mail referring to the above file number. Sincerely yours, District Director COPY TO ATTORNEY (Page 5)" + }, + { + "id": "A19240402_0039", + "page_index": 39, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0039/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402" + }, + { + "id": "A19240402_0040", + "page_index": 40, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0040/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A19240 402" + }, + { + "id": "A19240402_0041", + "page_index": 41, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0041/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402" + }, + { + "id": "A19240402_0042", + "page_index": 42, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0042/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A19 240402" + }, + { + "id": "A19240402_0043", + "page_index": 43, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0043/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "FORM 1-181b (REV. 12-1-72) Y UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE REFER TO THIS FILE NO. A 19 240 402 Date: HOMETH. ANNA G. The application for adjustment of status to that of a permanent resident filed by the above named has been granted. Sincerely yours, District Director ATTORNEY (Page 6)" + }, + { + "id": "A19240402_0044", + "page_index": 44, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0044/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "I Non- Filed 29 MAR 1978 OSF sufficially close - will reasting par" + }, + { + "id": "A19240402_0045", + "page_index": 45, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0045/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, Form No. 4-25-77N" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1952, 1978] + } + }, + "anumber": "A19240402", + "full_text": "Form approved. OMB No. 43-R0433 Jric: UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE De. call for M/E to Mapa, (see address) Alien Registration No. A19240402 2/6/7815 Petition No. ANNA NEMETH men address: 300 MONTE VISTA #103 3333 Beard Rd: apl.#1 Date OAKLAND, CA. 94611 Mape, CA. 94578 Your application has been received and arrangements have been made to help you in the next step toward naturalization. Please come to: on (date) ROOM 1004, TENTH FLOOR, APPRAISERS BUILDING JAN 18 1978 630 SANSOME ST., SAN FRANCISCO, CALIF. 94111 at (time) 12:00 P.M. The proceeding will take about two hours. If for any reason you cannot keep this appointment, return this letter immediately with your explanation and a request for a new appointment; otherwise, no further action will be taken on your application. If you are applying for citizenship for yourself, you will be tested on your knowledge of the government of the United States and its history. You will also be tested on reading, writing, and speaking English, unless on December 24, 1952, you had been living in the United States for a total of at least 20 years and were then over 50 years old, or unless you are physically unable to read, write, or speak. YOU MUST BRING WITH YOU: 1. This letter 2. $25 filing fee a money order made payable to \"Clerk of Court\") 3. Alien Registration Receipt Card 4. Any draft cards 5. Any documents you have which you used in connection with any entries into the United States 6. The Personal Description Form on the back, completely filled in 7. The third page of this letter with the names and addresses of your two witnesses filled in on the lines provided 8. Those items checked on the back side of this letter PLEASE KEEP THIS APPOINTMENT EVEN IF YOU DO NOT HAVE ALL THE ITEMS NUMBERED ABOVE OR THOSE CHECKED ON THE BACK. HOWEVER, YOU MUST BRING THE $25 FILING FEE. IMPORTANT: Bring with you two United States citizen witnesses 5 who can testify from personal knowledge and observation about your qualifications for naturalization during the past years. These witnesses must live or have lived in the general area in which you live or lived during that period, and must have seen you very often in the area in which you live or lived. If the witnesses you bring with you can cover only a part of the number of years shown above, that will be satisfactory, provided that they can cover no less than the last six months. The rest of the period can be covered at a later date, by affidavits of other witnesses. This will be explained to you when you appear before the examiner. (316, 319 (a)) who can testify from personal knowledge and observation about you, and about your adopted child's (children's) qualifications for naturalization during the past years. These witnesses must live or have lived in the general area in which you and your child (children) live or lived during that period, and must have seen you and your child (children) very often in the area in which you and your child (children) live or lived. If the witnesses you bring with you can cover only part of the number of years shown above, that will be satisfactory. The rest of the period can be covered at a later date by affidavits of other witnesses. This will be explained to you when you appear before the examiner. (323 (a)) who can testify from personal knowledge and observation about you, and your child's (children's) qualifications for naturalization. (322, 323 (c)) who can testify from personal knowledge and observation about your qualifications for naturalization. (319 (b) (c) (d), 329) Form N-430 IMPORTANT-SEE ITEMS CHECKED BACK SIDE (Rev. 4-25-77)N" + }, + { + "id": "A19240402_0046", + "page_index": 46, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0046/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Personal Description Form (N-604, Personal Description Form N-604" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "YOU MUST ALSO BRING WITH YOU WHAT IS CHECKED BELOW: Enclosed form(s) properly and completely filled out. Your marriage certificate. Proof of death or divorce for each prior marriage of yourself or spouse. Your spouse's birth or naturalization certificate or certificate for citizenship. The child (children) for whom you filed application for naturalization. Birth certificate(s) for the child (children). Adoption decree(s), and English translation(s) if in a foreign language. Your discharge certificate(s). The child (children) under age 16 years for whom you have applied for a certificate of citizenship except The enclosed Personal Description Form(s) (N-604), completely filled in, for each child under age 16 years for whom you applied for a certificate of citizenship. The child's (children's) other parent. PERSONAL DESCRIPTION FORM (Type or print) Date of birth ; sex ; complexion color of eyes ; color of hair height feet inches; weight pounds; visible distinctive marks ; marital status country of nationality (If change of name requested) ch ge to: ALWAYS GIVE YOUR ALIEN REGISTRATION NUMBER WHEN COMMUNICATING WITH THIS SERVICE" + }, + { + "id": "A19240402_0047", + "page_index": 47, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0047/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Naturalization Form, N-4" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "Authority for collection of the personal data information requested on the Description form is contained in Sections 332 and 338 of the Immigration and Nationality Act (8 U.S.C. 1442 and 1449). Submission of this information is voluntary. The principal purpose for requesting this information is to comply with the statutory requirements as to the contents of a certificate of naturalization. The in- formation requested, as a matter of routine use, will be furnished to the clerk of the naturalization court where your petition for naturalization will be filed in order to place the information on a certif- icate of naturalization in the event you are admitted to United States citizenship. As a routine use all or any part of the information may be disclosed to a court, and to other federal, state, local or foreign law enforcement or regulatory agencies, Department of Defense, including any component thereof, the Selective Service System, the Department of State, the Department of the Treasury, the Department of Transportation, Central Intelligence Agency, Interpol and individuals and organiza- tions in the processing of your application or petition for naturalization or during the course of investigation to elicit further information required by the Immigration and Naturalization Service to carry out its function. Information requested which indicates a violation or potential violation of law, whether civil, criminal or regulatory in nature, may be referred, as a routine use, to the appropriate agency, whether federal, state, local or foreign, charged with the responsibility of investigating, enforc- ing or prosecuting such violations. Failure to provide any or all of the requested information will prevent the issuance of a certificate of naturalization. FILL IN NAMES AND ADDRESSES OF YOUR TWO WITNESSES (Type or print) (1st witness) Residing at (Street address, city or town, and State) (2nd witness) Residing at (Street address, city or town, and State) DO NOT WRITE BELOW THIS LINE U.S. State Physical presence Mos. (Naturalization examiner) U.S. GOVERNMENT PRINTING OFFICE c70-16-83252-3" + }, + { + "id": "A19240402_0048", + "page_index": 48, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0048/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325 ( (REV. 8-1-74)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1903, 1886, 1977, 1872] + } + }, + "anumber": "A19240402", + "full_text": "FORMG-325 (REV.8-1-74)Y UNITED STATES DEPARTMENT OF JUSTICE SFR Immigration and Naturalization Service NATURALIZATION Form Approved BIOGRAPHIC OMB No. 43-R436 INFORMATION Date: DEC 2 3 1977 (Family name) (First name) (Middle name) MALE BIRTHDATE (Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. ANNA GABRIELLA (IR any) NEMETH FEMALE 3-16-07 HUNGARIAN A 19240402 LL-OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH SOCIAL SECURITY NO. NEMETH GABORNE BUDAPEST, HUNGARY (If any) 326-54-4043 FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH (If known) CITY AND COUNTRY OF RESIDENCE FATHER KARDOS DEZSO 1872 VESZPREM, HUNGARY DECEASED MOTHER (Maiden name) CSIPES JULIANNA 1886 MEZOTUR, HUNGARY -11- HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE DECEASED 1966 NEMETH GABOR 1903 BUDAPEST 5-19-29 MONOR HUNGARY FORMER HUSBANDS OR WIVER HIVES (If none, so state) FAMILY NAME (For wife, give malden name) FIRST NAME BIRTHDATE DATE AND PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE NONE APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 300 MONTE VISTA OAKLAND CA. 94611 USA 5 76 PRESENT TIME 534 W. WELLINGTON CHICAGO 122. 60657 -11- 3 74 5 76 3172 N. SHERIDAN CHICAGO 122.60657 -4 - / 12 3 74 APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR FURST SANDOR 28 BUDAPEST HUNGARY 8 66 12 To APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE.) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (Specify) MONTH YEAR MONTH YEAR None PRESENT TIME Show below last occupation abroad if not shown above. (Include all information requested above.) THIS FORM IS SUBMITTED IN CONNECTION WITH APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER DATE 4/4/77 NATURALIZATION OTHER (SPECIFY) tima Nometh ADJUSTMENT OF STATUS IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? w Yes PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A19240402_0049", + "page_index": 49, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0049/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Title: UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form Number: A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1974] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SE CE PLEASE ADDRESS REPLY TO COURTHOUSE & FEDERAL OFFICE 219 SOUTH DEARBORN STREET AND REFER TO THIS FILE NO CHICAGO. ILLINOIS 60604 A19 240 402 AUG 16 1974 Anna Gabriella NEMETH 3172 N. Sheridan Chicago, Illinois 60657 According to the records of this Service, you were admitted to the United States as a conditional entrant under Section 203(a)(7) of the Immigration and Nationality Act, as amended. This law provides that after you have been in the United States two years or more you may, after interview and examination, be granted the privilege of living permanently in this country. Accordingly, please come to this office at the place and time noted below for your interview. Please bring with you: 1. This letter. The Form I-94 (Arrival-Departure Record) which was given to you when you entered the United States. Your Passport. 219 South Dearborn Street Place of Interview: Chicago, Illinois 60604 Floor: 3 Room No. 385 Date of Interview: Tuesday September 10g 1974 Time of Interview: 8:30 A.M. ASK FOR: MR. LOGAN IMPORTANT: THE ENCLOSED FORMS G-325C AND FINGERPRINT CHART ARE TO BE COMPLETED FULLY AND FORWARDED TO THIS OFFICE WITHIN FIVE (5) DAYS OF RECEIPT OF THIS LETTER ALONG WITH TWO (2) PHOTOGRAPHS THAT SHOULD BE NEW, AND SHOULD BE A CLEAR FRONT VIEW OF YOUR FACE ON A LIGHT BACKGROUND WITHOUT A HAT. THE WHOLE PICTURE SHOULD BE 1 1/2 BY 1 1/2 INCHES IN SIZE WITH THE DISTANCE FROM THE TOP OF THE HEAD TO THE POINT OF THE CHIN ABOUT 11/2 INCHES. THE PHOTOGRAPHS SHOULD BE ON THIN PAPER, UNMOUNTED AND UN- SIGNED. MACHINE MADE PHOTOGRAPHS ARE NOT ACCEPTABLE. FAILURE TO SUBMIT THESE FORMS PROMPTLY WILL DELAY THE COMPLETION OF YOUR INSPECTION. NOTE: YOU MAY TAKE THIS LETTER AND THE FINGERPRINT CARD TO ANY POLICE STATION OR SHERIFF'S OFFICE AND ASK AN OFFICER TO RECORD YOUR FINGERPRINTS ON THE CARD, THE CARD MUST BE THEN SIGNED BY YOU IN THE PRESENCE OF THE OFFICER TAKING YOUR FINGER- PRINTS. HE MUST SIGN HIS NAME AND THE DATE IN THE SPACE PROVIDED, IF YOU HAVE MARRIED SINCE ENTRY PLEASE BRING MARRIAGE CERTIFICATE WITH A PHOTO- STATIC COPY. IF YOU DO NOT SPEAK ENGLISH LANGUAGE FLUENTLY, YOU MUST BEING AN INTERPRETER WITH YOU. H. Bartley District Director" + }, + { + "id": "A19240402_0050", + "page_index": 50, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0050/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Immigration and Naturalization Service" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "Germany", "United States"] + } + }, + "anumber": "A19240402", + "full_text": "Warrag Cover city 3-15 4 UNITED STATES DEPARTMENT OF JUSTICE 385 Immigration and Naturalization Service File No: 19-240-402 Date: 8.16.74 Your assistance in furnishing additional identifying information is requested so that we may act upon or reply to your communication. Please fill in the necessary information and return this letter and any attached material to this office. Your \"A-\" (Alien Registration) No. 19 240 402 No., if Known Any Other File Your Full Name ANNA GABRIELLA NEMETH Complete Present Address 534 W. WELLINGTON , CHICAGO 60657 Address in U.S. at Time of Entry 3170 N. SHERIDAN CHICAGO 60657 Birthdate 3-16-907 Birthplace BUDAPEST / HUNGARY Date of Entry 1-13-72 Place of Entry NEW YORK Airline and Flight Number or Vessel of Arrival TOLSTOY FOUND, CHARTER COLON/W.GERMANY/-NYOR Type of Entry (Temporary Visitor, Student, Permanent IMMIGRATION Residence Visa, Reentry Permit, etc.) Destination in U.S. as Shown on Entry Document Name Used at Time of Arrival THE SAME Other Names Used at Any Time NONE Please fill in the following if an application or previous correspondence concerning this matter was forwarded to this Service: Type of Application: Date of Application or Correspondence: Your address as shown on application or correspondence: Address of Service office where application or correspondence was forwarded: Form G-14 (Rev. 4-7-72)N" + }, + { + "id": "A19240402_0051", + "page_index": 51, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0051/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS, GPO 926-907" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS Servicio de Inmigración y Naturalización Expediente Num.: Fecha: Tenga la bondad de proporcionar información adicional de identificación con el fin de que podamos dar curso o responder a su comunicación. Sirvase llenar los espacios indicados y enviar esta forma junto con cualquier otro material a estas oficinas. Su número \"A\" (Registro de Extranjeros) Cualquier otro número de registro, de saberlo Su nombre completo Su dirección actual completa Su dirección en los Estados Unidos en el momento de su llegada Fecha de nacimiento Lugar de nacimiento Fecha de entrada Lugar de entrada Línea aerea y número de vuelo o buque en que llegó Tipo de entrada (Visitante Temporal, Estudiante, Visa de Residencia Permanente, Permiso de Reingreso, etc.) Destinación en los Estados Unidos según aparece en el documento de entrada Nombre que usó en el momento de su llegada Otros nombres que haya usado en cualquier momento Sirvase llenar los siguientes espacios si se ha enviado una solicitud a este Servicio, o si ha habido alguna correspondencia en torno a este asunto: Tipo de solicitud: Fecha de la solicitud o correspondencia: Su dirección segun aparece en la solicitud o correspondencia: Dirección de la oficina del Servicio a la cual se envió la solicitud o correspondencia: GPO 926-907" + }, + { + "id": "A19240402_0052", + "page_index": 52, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0052/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "PLACE STAMP HERE DEPARTMENT OF JUSTICE Immigration and Naturalization Service 119 D Street NE. Washington D C. 20536 S." + }, + { + "id": "A19240402_0053", + "page_index": 53, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0053/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "ALIEN REGISTRATION NO.: A19240 4021 AM IN THE UNITED STATES AS (Check one) (Copy letter and number from registration VISITOR PERMANENT RESIDENT receipt or other alien certification document) STUDENT OTHER MY NATIONALITY IS HUNGARIAN I (Specify) WAS BORN ON 3-16-07 NEMETH ANNA (Date) 10 MY NAME IS G. 888 MY PRESENT ADDRESS IS: (Last) (First) (Middle) 534 W. WELLINGTON CHICAGO (State) (Street address or rural route) (City or post office) 122.60657 (Zip Code) (IF ABOVE ADDRESS IS TEMPORARY) EXPECT TO REMAIN THERE YRS. MOS MY LAST 3170 (Street APPREA address WAS N. or SHERIDAN rural route) (City CHICAGO office) (State) ILL (2)p 60657 Code) or post I WORK FOR OR ATTEND SCHOOL AT (Employer's name or name of school) (Street address or rural route) I ENTERED THE UNITED STATES AT NEW YORK City or past office) (State) -13-72 (Zip Code) ON (Port of entry into United States) (Date of entry) (IF NOT A PERMANENT RESIDENT): WAS ADMITTED TO THE U. S. A. UNTIL OR RECEIVED AN EXTENSION OF STAY UNTIL DATE 5-22-74 SIGNATURE Anno Newieth (Date)" + }, + { + "id": "A19240402_0054", + "page_index": 54, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0054/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE Immigration and Naturalization Service, G-14" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1972] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE I RECEIVED N Immigration and Naturalization Service JAN I- File No: Northern 219 Chicago S Decision Ch Ill Fll-60604 Date: 1/15/74 Your assistance in furnishing additional identifying information is requested so that we may act upon or reply to your communication. Please fill in the necessary information and return this letter and any attached material to this office. Any Other File Your \"A-\" (Alien Registration) No. A19-240-402 No., if Known Your Full Name AnnA Gabriella Nemeth Complete Present Address 3170 N, Sken dan Rd.- Address in U.S. at Time of Entry Tolst of Found. Fisk Bldg 250W SISN. 10019 Birthdate 3-16-1907 Birthplace Budapesty Hungary Airline and Flight Number or Vessel of Arrival Miaz 21/154-72 Date of Entry 1/13/1972 Place of Entry N. y C. - Type of Entry (Temporary Visitor, Student, Permanent Residence Visa, Reentry Permit, etc.) Refugee Destination in U.S. as Shown on Entry Document Ch, Ill. Name Used at Time of Arrival Anna Gabrielle Nemeth Other Names Used at Any Time none time Nerweth 3170 N. Sheridan Rd. - Ch. Tll-6065 Please fill in the following if an application or previous correspondence concerning this matter was forwarded to this Service: DEDEMED Type of Application: Date of Application or Correspondence: Your address as shown on application or correspondence: Address of Service office where application or correspondence was forwarded: Form G-14 (Rev. 4-7-72)N" + }, + { + "id": "A19240402_0055", + "page_index": 55, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0055/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS, Exp. 926-907" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "DEPARTAMENTO DE JUSTICIA DE LOS ESTADOS UNIDOS Servicio de Inmigración y Naturalizacion Expediente Num. Fecha: Tenga la bondad de proporcionar información adicional de identificación con el fin de que podamos dar curso o responder a su comunicacion. Sirvase llenar los espacios indicados y enviar esta forma junto con cualquier otro material a estas oficinas. Su número \"A\" (Registro de Extranjeros) Cualquier otro número de registro, de saberlo Su nombre completo Su dirección actual completa Su dirección en los Estados Unidos en el momento de su llegada Fecha de nacimiento Lugar de nacimiento Fecha de entrada Lugar de entrada Línea aerea y número de vuelo o buque en que llego Tipo de entrada (Visitante Temporal, Estudiante, Visa de Residencia Permanente, Permiso de Reingreso, etc.) Destinación en los Estados Unidos según aparece en el documento de entrada Nombre que usó en el momento de su llegada Otros nombres que haya usado en cualquier momento Sirvase llenar los siguientes espacios si se ha enviado una solicitud a este Servicio, o si ha habido alguna correspondencia en torno a este asunto: Tipo de solicitud: Fecha de la solicitud o correspondencia: Su dirección segun aparece en la solicitud o correspondencia: Dirección de la oficina del Servicio a la cual se envió la solicitud o correspondencia: GPO 926.907" + }, + { + "id": "A19240402_0056", + "page_index": 56, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0056/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet, G-228 filed by:" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1974] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE Processing Sheet G-28 filed by: Application or I't ition Form No. File No. SYMBOL (STAT.) PRIORITY DATE: Officer's Date Document or Action Required Requested Received Initials (Check) (Check) 17/19/4 PP ( ) I-94 ( ) Photos ( ) Fingerprints ( 4 17 1974 G-325A (I) (2) (5) I-484s ( ) I -508A ( ) I-88 ( JUN 17 10/44 callup I-181 to State Dept. G-325A (4) to: Budgest ) Hungay 7-31.74 Form G-151 ( ) Birth record ( ) Financial evidence ( ) Medical examination on: 245 interview on: Remarks: Interviewed: Nothing adverse disclosed Signature of Officer Date DECISION: (Approved) (Denied) (Date) This form may be overprinted or stamped to show instructions, items requested, items received, or other pertinent data which may facilitate processing. Keep this sheet on top of all material in file until initial decision is made Form I-468 (Rev. 11-1-70)" + }, + { + "id": "A19240402_0057", + "page_index": 57, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0057/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "A 19 240 401-402 02/13/74 Anna and Janos Nemeth C/O Tolstoy Foundation 250 West 57th. Street New York, New York 10019 Seaport Sec. 11th. Floor Monday, February 25, 1974 2:15 P. M." + }, + { + "id": "A19240402_0058", + "page_index": 58, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0058/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "JOHN D. NEMETH 3000 carriage way Drive # 310 Company Chocolates ROLLING MEADOWS, ILL. 60008. AICAG oede Coparations. 1974 606 UNITED STATES DEPT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE 20 W. BRODWAY NEW YORK N.Y. 10007." + }, + { + "id": "A19240402_0059", + "page_index": 59, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0059/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE, Form I-592" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + } + }, + "anumber": "A19240402", + "full_text": "UNITED STATES DEPARTMENT OF JUSTICE IMMIGRATION AND NATURALIZATION SERVICE File: FELTETELES BELEPO MEGERKEZESI KIJELENTESE Ertem, hogy az Egyesült Allamokba a Bevandorlas es Nemzetiseg Torveny 203. Bekezdese, (a) (7) Cikke intezmenyei alatt felteteles belepesem jova lett hagyva. Az Egyesült Allamok Bevandorlasi Szolgalat kepviselö1 elött tett ilyen felteteles belepessel kaposolatos nyilat- kozataimat ismet atneztem, es ezek minden tekintetben igazok es helyesek. Jelen kijelentesem elött tudositva voltam arrol, hogy bizonyitas helytelen myilatkozatomr61, vagy akarmi teny visszatartasamró1 azzal kaposolatban amirol kerdezve voltam elegseges ok lehet felteteles belepesem vegeteresenek, orszagba vissza utasitasomnak, es lehetsegesen arra a megallapitasra vezethet, hogy az Egyesült Allamokba felteteles belepesem csalas által szerzodott meg. X tuna Newcrth Subscribed and sworn to before me on 1/13/72 at JFK, NYC. Roberth Salvesa Immigrant Inspector Form I-592 (12-1-65) Hungarian" + }, + { + "id": "A19240402_0060", + "page_index": 60, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0060/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "photograph" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402" + }, + { + "id": "A19240402_0061", + "page_index": 61, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0061/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "DEPARTMENT OF STATE FOREIGN SERVICE OF THE UNITED STATES OF AMERICA MEDICAL EXAMINATION OF VISA APPLICANTS, FS-398" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Germany"] + }, + "years": { + "ms_years_nlp_v1": [1971] + } + }, + "anumber": "A19240402", + "full_text": "PLACE DEPARTMENT OF STATE U.S. Public Health Service FOREIGN SERVICE OF THE UNITED STATES OF AMERICA American Consulate General MEDICAL EXAMINATION OF VISA APPLICANTS DATE OF EXAMINATION OCT - 6 1971 CITY COUNTRY At the request of the American Consul at Frankfurt/Main Germany NAME AGE I certify that on the above date I examined SEX NEMETH, Anna 64 F I examined specifically for evidence of any of the following conditions: CLASS A: DANGEROUS CONTAGIOUS DISEASES: Actinomycosis Granuloma Inguinale Ringworm of scalp Amebiasis Keratoconjunctivitis, infectious Schistosomiasis Blastomycosis Leishmaniasis Syphilis, ,infectious stage Chancroid Leprosy (Hansen's Disease) Trachoma Favus Lymphogranuloma Venereum Trypanosomiasis Filariasis Mycetoma Tuberculosis (pulmonary or extrapulmonary) Gonorrhea Paragonimiasis Yaws MENTAL CONDITIONS: Mental retardation Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Sexual deviation (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. (CHECK NUMBER (1) BELOW OR COMPLETE NUMBER (2)) My examination, including the X-ray and other reports below, revealed: (1) No defect, disease, or disability. (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class - A, B, or C - diagnosis, and pertinent details*): Diabetes CLASS \"B\" Varicose veins bil. Aortic sclerosis Chest X-ray report 70 mm x-ray Qualified Aortic sclerosis from Dr. U.S. Public Health Service Negative Blood serological report from Dr. Approved Laboratory Other special report(s) (when needed) RAIMUND GRATENAU, M.D. from Dr. SIGNATURE OF MEDICAL TECHNICAL ADVISOR TITLE Medical Officer in Sharge DATE OF FINAL REPORT USPHS, Frankfurt/M., Germany OCT 6 1971 Continue on reverse side if necessary. C43-10-77593-1 FORM FS-398 10-65 For Medical Officer in Charge" + }, + { + "id": "A19240402_0062", + "page_index": 62, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0062/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, 443-R048" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1907, 1970, 1972] + } + }, + "anumber": "A19240402", + "full_text": "Form Approved FOLYAMODVANY Budget Bureau No. 43-R0408 MINÓSITÉSRE MINT FELTÉTELES BELÉP UNITED STATES DEPARTMENT OF JUSTICE Bevándorlási és IMMIGRATION AND NATURALIZATION SERVICE File No. Allampolgársági Torvény 203. Bekezdes, (a) (7) Cikke A A FOLYAMODÓNAK A KOVETKEZO ADATOKAT KELL SZOLGÁLTATNIA. (OLVASSA EL AZ UTASITASOKAT A HATLAPON). HASZNALJON fRóGÉPET VAGY IRJON NYOMTATOT BETUKKEL. 1. Nevem: Elsö keresztnév: Második keresztnév: Családi név: ANNA GABRIELLA NEMETH 2. Jelenlegi cimem: 6735, MAIKAMMER, SCHLOSS STR 21/23 3. Születésem dátuma: Születésem helye: (Megye) (Ország) Jelenlegi állampolgárságom: (hónap, nap, év) (Város vagy Falu) 3, 16, 1907. BUDADEST - MAGYAR MAGYAR. 4. Magassagom: Súlyom: Szemeim szine: Hajam szine: Arcszinem: Észrevehetö jegyek és sebhelyek: 164 64 BARNA BARNA FEHER APPENDITIS OPERACIA 5. Ország ahonnan menekültem: Menekülésem pontos vagy körülbelüli dátuma: (hónap, nap, év) MAGYAR 12, 17, 1970. 6. Menekülésem okai (részletes leírás) : FIAM DISS2IDA'TT, EGYEDUL NEM AKARTAM BUDAPESTEN MARADNV FERJEM KAPITALISTA VOLT, NYUGDIJAM HAVI 625 FORINT VOLT, 7. Jelenlegi bevándorlási állapotom NEMETS2OV. KOZT. országban a következ (ország amelyben tartózkodik) TARTOZUODA'SI ENGEDELY BESCH. Bevándorlási uber die BEANTRAGUNG az VON ASYL, AUFENTHALTSERLAUB- állapotom bizonyitéka országban ahol tartozkodom: (Leirás) NIS BIS ZUM 26, APRIL 1972. 8. Hitvesem neve: 9. Jelenlegi cime: 10. Allampolgársága: GABOR NEMETH 11. Hitvesem el fog kisérni nem fog elkisérni engem az Egyesült Allamokba. 12. Gyermekeim neve: Születési dátuma: Születéshelye: Jelenlegi cime: JANOS NEMETH 1,13,1930 MONOR MAINAMMER, SCHLOSS Str. 21/23 Tegyen egy jelet (X) azoknak a gyermekeknek a neve elé akik onnel az Egyesült Allamok fognak utazni. 13. Iskolazas vagy Kiképzés: Iskola neve és helye: Jellege: Hallgatott tanevek: Bizonyitvány vagy Oklevel: MONORI ELEMI ISKOLA ELEMI 4. MONORI POLGARISUOLA KOZEPISHOLA 4. 14. Katonai Szolgálat: Orszag: Ágazat és Egység: Datumok: Szolgálati szám: Elért rang: Form I-590 (Hungarian) (Rev. 5-15-68)" + }, + { + "id": "A19240402_0063", + "page_index": 63, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0063/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "U.S. Government Printing Office, 1969 O-351-4, 203(a)(7)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1971, 1970, 1945, 1969, 1930, 1947] + } + }, + "anumber": "A19240402", + "full_text": "15. Alább felsorolok minden szerve. arsaságot, kört, és egyesületet aminek a a Manan tagja voltam vagy jelenleg tagja vagyok, a tagsag datumaival és helyével egyutt. (Ha sohasem volt egy szervezet tagja, iria \"Semmi\".) REFORMATUS ASSZONYKOR , MONOR 1930-1970. MAGYAR NOU DEMOURATIVIS STOVETSEGE 1945-1947 16. En voltam sohasem voltam torvényszegéssel vadolva. (Ha valaha törvényszegéssel volt vádolva, adja meg minden egyes vád datumat, helyét, és jellegét, és a végs dontést.) : 17. En voltam ezelött sohasem voltam az Egyesült Allamokban. (Ha volt valaha az Egyesült Allamokban, adja meg a belépés és kilépés dátumait és tartózkodasanak céljat: látogato, állandó lakos, tanuló, tengerész, stb.): Irattári vagy Idegen Nyilvántartási szam: 18. Az Egyesült Allamokban éló közeli rokonaim: Nevek: Rokonság foka: Jelenlegi cim: minesenell 19. Kezesem: (adja meg az Egyesult Allamokban lakó kezesenek nevét és címét) IVAN G. UENESSEY, 25 W. 500 ROYCE RD. NAPERVILLE, 111.60540 Datum: A Folyamodó Aláírása: 30,5,71. Neweth Auur NE IRJON E VONAL ALÁ. En, eskü alatt bizonyitom (ezennel bizonyitom), hogy ismerem az ezen általam aláirt folyamodvany és a csatolt okmányok tartalmát, hogy a tartalom tudomásom szerint igaz, és hogy -tol -ig szamozott javitasok általam vagy az en kérésemre voltak bevezetve, és hogy ezt a folyamodványt én irtam alá, teljes és igazi nevemmel. Amus Nourth (A folyamodó teljes és igazi aláírása.) Subscribed and sworn to before me by the above-named applicant at Oct 6, on Oct 6,1971 month, day, year (Signature and title of officer) MEDUCEE CONDITIONAL EATHY INTERVIEW OK APPROVED 203 (a) (7) You United are States pursuant to See conti- 203(8)(7) admitted conditionally to the of entry is otherwise terminated the I&N Act. Unless your DATE Orte,1971 DATE NOV 23 1971 tional eligibility for permanent residence AT Frankfant your and be determined after 2 years. EMPLOYMENT AUTHORIZED. NYC 1/13/72 370 on (Date) Immigration Officer Officer in Charge STA UTASITASOK Ezt az urlapot kitöltve és aláírva az Égyesült Allamok Bevándorlási és Honositási Szolgálata legközelebbi tengerentúli hivatala Felelós Tisztjének kell benyújtania. Amikor, mint folyamodonak, nevére sor kerül, további utasitasokat fog kapni. 1. FOLYAMODVANY - Minden egyes folyamodonak egy külön Folyamodvanyi Urlapot kell kitöltenie és egy példányban benyújtania. Tizennégy évesnél fiatalabb kiskorúak részére a szülö vagy gyám tölti ki a Folyamodványi Urlapot. 2. BIZTOSITÉK - Egy egyesült-államokbeli kezes által kitöltott I-591 számu Biztositéki Urlap szükséges mielött feltételes belépése jóvahagyható, de azt nem kell ezen alkalommal benyújtania. U. S. GOVERNMENT PRINTING OFFICE: 1969 -331-433" + }, + { + "id": "A19240402_0064", + "page_index": 64, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0064/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Alien Registration Form, GPO 1968 OF - 315-001" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "Germany"] + }, + "years": { + "ms_years_nlp_v1": [1907, 1968] + } + }, + "anumber": "A19240402", + "full_text": "LEAVE THIS SPACE BLANK LAST NAME FIRST NAME MIDDLE NAME SEX RACE F cauc APPLICANT NEMETH Anna Gabriella HT (Inches) WT. 5'3 SIGNATURE OF PERSON FINGERPRINTED 140lbs tuna Venicth know CONTRIBUTOR AND ADDRESS COMPANY AND ADDRESS USINS HAIR EYES FRANKFURT brown brown DATE OF BIRTH RESIDENCE OF PERSON FINGERPRINTED CITY & STATE Mar. 16, 1907 GERMANY PLACE OF BIRTH Budapest/Hungary SIGNATURE OF OFFICIAL TAKING DATE YOUR NUMBER LEAVE THIS SPACE BLANK FINGERPRINTS CLASS. qu FEMALE A19 240 402 REF. PLACE FBI NO. HERE REASON EINGERPRINTED IV REF. CITIZENSHIP See reverse side for further instructions Hungarian 1. RIGHT THUMB 2. RIGHT INDEX 3. RIGHT MIDDLE 4. RIGHT RING 5. RIGHT LITTLE 6. LEFT THUMB C 7. LEFT INDEX gw 8. LEFT MIDDLE 9. LEFT RING 10. LEFT LITTLE LEFT FOUR FINGERS TAKEN SIMULTANEOUSLY LEFT THUMB RIGHT THUMB RIGHT FOUR FINGERS TAKEN SIMULTANEOUSLY 169 GPO: 1968 OF - 315-001" + }, + { + "id": "A19240402_0065", + "page_index": 65, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0065/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE, FD-258 ( (Rev. 12-12-67)" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1971] + } + }, + "anumber": "A19240402", + "full_text": "FEDERAL BUREAU OF INVESTIGATION UNITED STATES DEPARTMENT OF JUSTICE WASHINGTON, D.C. 20537 1. LOOP APPLICANT A14 240 402 CENTER To obtain classifiable fingerprints: OF LOOP 1. Use printer's ink. 2. Distribute ink evenly on inking slab. 3. Wash and dry fingers thoroughly. 4. Roll fingers from nail to nail, and avoid allowing fingers to slip. 5. Be sure impressions are recorded in correct order. 6. If an amputation or deformity makes it impossible to print a finger, make a nota- tion to that effect in the individual finger block. DELTA 7. If some physical condition makes it impossible to obtain perfect impressions, sub- mit the best that can be obtained with a memo stapled to the card explaining the circumstances. 8. Examine the completed prints to see if they can be classified, bearing in mind THE LINES BETWEEN CENTER OF that most fingerprints fall into the patterns shown on this card (other patterns occur infrequently and are not shown here). LOOP AND DELTA MUST SHOW 2. WHORL This card for use by: LEAVE THIS SPACE BLANK 1. Law enforcement agencies in fingerprinting DELTAS applicants for law enforcement positions and applicants for licenses or permits required by local ordinance or official regulation. The reason for fingerprinting must be shown in appropriate block. 2. U.S. Government agencies in connection with clearances. Identity of private contractor should be shown in space \"Company and Ad- dress.\" The contributor is the name of agency submitting the fingerprint card to the FBI. THESE LINES RUNNING BETWEEN DELTAS MUST BE CLEAR FBI number, if known, should always be fur- nished in appropriate space. 3. ARCH ILLEGIBLE PRINT 3 94, REASON RECORDED NO ARREST RECORD BY NAME FBI IDENTIFICATION DIVISION OCT 19 1971 IDENT. DIV. iss ARCHES HAVE NO DELTAS FD-258 (Rev. 12-12-67)" + }, + { + "id": "A19240402_0066", + "page_index": 66, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0066/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "APPLICANT: BE SURE TO PUT YOUR NAME IN THE BOX OUTLINED BY HEAVY BORDER BELOW. COMPLETE THIS BOX (FAMILY NAME) (GIVEN NAME) (MIDDLE NAME) - NEMETH Anna Gabriella A19 240 402 (OTHER AGENCY USE) (INS USE) 10ml CONDITIONAL ENTRY APPLICANT I Return to: Immigration and Naturalization Service AM CON GENERAL FRANKFURT, GERMANY 7/15/71 DATE: FORM G-325C (1) Ident." + }, + { + "id": "A19240402_0067", + "page_index": 67, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0067/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "REGISTRATION FOR CLASSIFICATION AS CONDITIONAL ENTRANT, Form Approved Form No. 4-048" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "Germany", "United States"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1907, 1917, 1921, 1970, 1913] + } + }, + "anumber": "A19240402", + "full_text": "Form Approved REGISTRATION Budget Bureau No. 43-R0408 FOR CLASSIFICATION AS CONDITIONAL ENTRANT UNITED STATES DEPARTMENT OF JUSTICE Section 203(a)(7) IMMIGRATION AND NATURALIZATION SERVICE File No. Immigration and A Nationality Act REGISTRANT TO FURNISH THE FOLLOWING INFORMATION (READ INSTRUCTIONS ON REVERSE) TYPE OR PRINT 1. My name is: First Middle Last Anna Gabriella NEMETH 2. My present address is: 6735 Maikammer, Schloss Str. 21/23, Germany 3. I was born on: (month)(day)(year) Place of birth (city or town) (Province) (Country) My present nationality is: Mar. 16,1907 Budapest Hungary Hungarian 4. Height Weight Eyes Hair Complexion Marks or Scars 5'3 11 140 1b. brownbrown fair scar after appendectomy 5. I fled or was displaced from (Name of country) On or about (month) (day) (year) Hungary Dec. 17 1970 6. Reasons: in (State detail) My son fled and I did not want to remain alone in Budapest, my husband was a capitalist, my pension was only 625 forint per month 7. My present immigration status in Germany is: pending, applied for polit (Country in which residing) tical asylum The evidence of my immigration status in the country in which I am residing is: (Describe) 8. My spouse's name is: 9. (His) (Her) present address is: 10. Spouse's nationality is: Gabor NEMETH (deceased 1966 n.a. n.a. 11. My spouse will will not accompany me to the United States 12. Name of child (ren) Date of birth Place of birth Present address Janos NEMETH Jan. 13 930 Monor, Hungary Maikammer, Germany Schloss Str. 21/23 Place a mark (X) in front of name of each child who will accompany you to the United States 13. Schooling or Education Name and location Type Dates attended Title of Degree of school or Diploma Monori Elemi Isk. element. 1913-1917 Monori Polgari Isk. second. 1917-1921 Monor, Hungary 14. Military Service Branch and Country Dates Serial No. Rank Attained Organization n.a. Form I-590 (REV. 5-15-68)" + }, + { + "id": "A19240402_0068", + "page_index": 68, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0068/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "Registration Form for Immigrant Entry to the United States, GPO 870-899" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1971, 1970, 1945, 1930, 1947] + } + }, + "anumber": "A19240402", + "full_text": "15. I list below all organizations, societies, clubs, and associations, past or present, in which I have held membership, and the periods and places of such membership. (If you have never been a member of any organization, state \"None\") Reformed Women Circle, Monor 1930-1970 Hungarian Women Democratic association 1945-1947 16. I have have not been charged with a violation of law. (If you have ever been charged with a violation of law, give date and place and nature of each charge and the final result) 17. I have have not been in the United States. (If you have ever been in the United States, show the dates of entry and departure and the purpose of your entry. Visitor, permanent resident, student, seaman, etc.) File or Alien Registration number 18. I have the following close relatives in the United States: Names Relationship Present address None 19. I am being sponsored by (Give name and address of United States Sponsor) Ivan G. Kenessey, 25 W. 500 Royce Rd , Napprville, I116054 Tolstay European Pounaution Date Signature of registrant Headquarters May 20,1971 DO NOT WRITE BELOW THIS LINE I, , do swear (affirm) that I know the contents of this registration sub- scribed by me including the attached documents, that the same are true to the best of my knowledge, and that cor- rections, numbered ( ) to ( ), were made by me or at my request, and that this registration was signed by me with my full, true name: (Complete and true signature of registrant) Subscribed and sworn to before me by the above-named registrant at on (month)(day)(year) (Signature and title of officer) INTERVIEW APPROVED DATE DATE AT Immigration Officer Officer in Charge INSTRUCTIONS This form should be executed, signed and submitted to the Officer-in-Charge of the nearest overseas office of the United States Immigration and Naturalization Service. When your name has been reached as a registrant you will be furnished additional instructions. 1. REGISTRATION - A separate Registration Form must be executed by each registrant and submitted in one copy. A Registration Form in behalf of a child under 14 years of age shall be executed by the parent or guardian. 2. ASSURANCES - Assurance Form I-591 executed by a United States sponsor will be required before your condi- tional entry may be authorized but need not be submitted at this time. GPO 870-899" + }, + { + "id": "A19240402_0069", + "page_index": 69, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0069/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "DEPARTMENT OF THE UNITED STATES OF AMERICA FOREIGN SERVICE OF THE UNITED STATES MEDICAL EXAMINATION OF VISA APPLICANTS, FORM FS-398" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Germany"] + }, + "years": { + "ms_years_nlp_v1": [1971] + } + }, + "anumber": "A19240402", + "full_text": "PLACE DEPARTMENT STATE S. Public Health Service FOREIGN SERVICE OF THE UNITED STATES OF AMERICA American Consulate General MEDICAL EXAMINATION OF VISA APPLICANTS DATE OF EXAMINATION OCT - 6 1971 CITY COUNTRY At the request of the American Consul at Frankfurt/Main Germany NAME AGE SEX I certify that on the above date I examined NEMETH, Anna 64 F I examined specifically for evidence of any of the following conditions: CLASS A: DANGEROUS CONTAGIOUS DISEASES: Actinomycosis Granuloma Inguinale Ringworm of scalp Amebiasis Keratoconjunctivitis, infectious Schistosomiasis Blastomycosis Leishmaniasis Syphilis,infectious stage Chancroid Leprosy (Hansen's Disease) Trachoma Favus Lymphogranuloma Venereum Trypanosomiasis Filariasis Mycetoma Tuberculosis (pulmonary or extrapulmonary) Gonorrhea Paragonimiasis Yaws MENTAL CONDITIONS: Mental retardation Previous occurrence of one or more Mental defect (mental deficiency) attacks of insanity Narcotic drug addiction Insanity Psychopathic personality Chronic alcoholism Sexual deviation (See proviso, sec. 34.7, USPHS Regs.) CLASS B: Physical Defect, Disease, or Disability Serious in Degree or Permanent in Nature Amounting to a Substantial Departure from Normal Physical Well-Being. CLASS C: Minor Conditions. (CHECK NUMBER (1) BELOW OR COMPLETE NUMBER (2)) My examination, including the X-ray and other reports below, revealed: (1) No defect, disease, or disability. (2) Defect, disease, or disability, or previous occurrence of one or more attacks of insanity, as follows (give class - A, B, or C - diagnosis, and pertinent details*): CLASS \"B\" Diabetes Varicose veins bil. Aortic sclerosis Chest X-ray report 70 mm x-ray Qualified Aortic sclerosis from Dr. U.S. Public Health Service Negative Blood serological report from Dr. Approved Laboratory Other special report(s) (when needed) RAIMUND GRATENAU, M.O. from Dr. SIGNATURE OF MEDICAL TECHNICAL ADVISOR ff T1 medical Officer in Charge DATE OF FINAL REPORT USPHS, Frankfurt/M., Germany OCT - 6 1971 Continue on reverse side if necessary. C43-10-77593-1 FORM FS-398 10-65 For Medical Officer in Charge" + }, + { + "id": "A19240402_0070", + "page_index": 70, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0070/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "BIOGRAPHIC INFORMATION, A19 240 402" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Hungary", "Germany"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1907, 1971, 1903, 1970, 1886, 1929, 1872] + } + }, + "anumber": "A19240402", + "full_text": "FORM G-325C (REV. 5-1-69) Form Approved BIOGRAPHIC UNITED STATES DEPARTMENT OF JUSTICE Budget Bureau No. 43-R436 Immigration and Naturalization Service INFORMATION A19 240 402 (Family name) (First name) (Middle name) BIRTHDATE (Mo.-Day-Yr.) NATIONALITY MALE NEMETH Anna Gabriella FEMALE Mar. 16,1907 Hungarian ALL OTHER NAMES USED CITY AND COUNTRY OF BIRTH Anna KARDOS Budapest, Hungary FAMILY NAME FIRST NAME DATE, CITY AND COUNTRY OF BIRTH (if known) CITY AND COUNTRY OF RESIDENCE KARDOS Dezso 1872 Veszprem, Hungary deceased FATHER CSIPES Julianna 1886 Mezotur 11 11 MOTHER (Maiden name) SPOUSE (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE (For wife, give maiden name) 1929 Monor (deceased 1966NEMETH Gabor 1903 Budapest Hungary Hungary FORMER SPOUSES (Fill in the blocks below. If none, state \"none\".) None FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE n.a. APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR Schloss Str. 21/23 Maikanmer Kheinn/Pf. Germany Mar. 1971 PRESENT TIME Adolf Kolping str. 5 Rüdesheim Rhein/Hessen It Feb. 1971 Mar. 1971 Ladebeker Furtweg Hamburg 11 Dec. 1970 Feb. 1971 Fürst Janos u.28 Budapest Hungary Aug. 1966 Dec. 1970 Toldi U. 5 Monor Pest 11 May 1929 Aug. 1966 APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (if none, so state) LIST PRESENT EMPLOYMENT FIRST. FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION MONTH YEAR MONTH YEAR Schloss Str. 21/23, Maikammer, Germany housewife Mar. 1971 PRESENT TIME Adolf Kolping, -5, Germany 11 Feb. 1971 Mar. 1971 Ladebeker Furtweg, Hamburg 11 11 Dec. 1970 Feb. 1971 Fürst Sandor U. 28, Budapest, Hungary 11 Aug. 1966 Deb. 1970 Toldi U. 5 Monor, Pest-thegye 11 \" May 1929 Aug. 1966 IF YOUR NATIVE ALPHABET IS IN OTHER THAN ROMAN LETTERS, WRITE YOUR NAME IN YOUR NATIVE ALPHABET BELOW: APPLICANT FOR CONDITIONAL ENTRY PENALTIES: SEVERE PENALTIES ARE PROVIDED BY LAW May 30,1971 X Ama Noueth FOR KNOWINGLY AND WILLFULLY FALSIFYING DATE (SIGNATURE OF APPLICANT OR PETITIONER OR CONCEALING A MATERIAL FACT." + }, + { + "id": "A19240402_0071", + "page_index": 71, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0071/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "letter" + }, + "form_title": { + "ms_form_title_llm_v1": "Auskunft aus dem Strafregister, ABAGER-618" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["Germany"] + }, + "years": { + "ms_years_nlp_v1": [1971, 1907] + } + }, + "anumber": "A19240402", + "full_text": "F Auskunft aus dem Strafreg er Bund e THE 20.7.71 Muster Familienname Berlin NEMETH (geb. KARDOS) bei Frauen Geburtsname Vornamen (sämtliche, Rufnamen unterstreichen) Anna Gabriella Geburtsangaben Tag. Monat, Jahr 16.3.1907 Geburtsort (Gemeinde) Budapest Kreis und Land Ungarn Wohnort (ggf. letzter Aufenthaltsort) 6735 Maikammer Straße und Hausnummer Schloss Str. 21/23 Beruf (ggf. des Ehemannes in Klammern) Hausfrau Familienstand (led., verh., verw., gesch.) verw. Vor. und Familien-(Geburts-)name des (bzw. früheren) Ehegatten Gabor NEMETH Eltern Vor- und Familienname des Vaters Dezso KARDOS Vor- und Geburtsname der Mutter Julianna CSIPES Staatsangehörigkeit Ungarische Im Strafregister vermerkte Verurteilung(en): Kein Vermork Bundenstrafregister Berlin 2 62 JULI 1971 (Gotze) Geschäfts-Nr.: A19240 402 Es wird um un beschränkte Auskunft aus dem Straf. register gebeten zwecks Auswanderung Maikammer, 30.5.1971 (Ort und Tag) Andie Staatsanwaltschaft Strafregisterbehörde- Unterschrift L.S. Joseph H. Kadlec, Officer in Charge Frankfurt, Germany (Dienststelle Unterschrift) JUL 15 1971 AE/GER-618" + }, + { + "id": "A19240402_0072", + "page_index": 72, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0072/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "misc" + }, + "is_g325a": false, + "is_cert_naturalization": false + }, + "anumber": "A19240402", + "full_text": "An das Bundesstrafregister 1000 Berlin 30 Lutzowufer 6-9 Amerikanisches Generalkonsulat Visumsabteilung 6 Frankfurt/Main Siesmayerstrasse 21" + }, + { + "id": "A19240402_0073", + "page_index": 73, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0073/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "doctype": { + "ms_doctype_v1": "form" + }, + "is_g325a": false, + "is_cert_naturalization": false, + "years": { + "ms_years_nlp_v1": [1971, 1964] + } + }, + "anumber": "A19240402", + "full_text": "WORKSHEET FOR CONDITIONAL ENTRANT No Show: A14 240 402 Excused: Interviewed at : Date: out16, 1971 Travel Document: none (hot l pp. Asylum granted ( ) pending x denied ( ) not requested ( Entry into country of asylum: Legal X Illegal () Countries traveled through: through austin Legal X Illegal ( ) Number of marriages: one Prior marriage terminated: Divorce () Date Place Death (X) Date 1964 Place Hungany Years of education: 8 Elementary Secondary College University Trade School Now employed: Yes ( ) No (X) Type of employment: Military service: years Rank: Arrests: Yes ( ) No X Reason: son A142404011 Come h Sermony to join son FKG-4 (12-27-67)" + }, + { + "id": "A19240402_0074", + "page_index": 74, + "resources": { + "full_jpg": "https://dctn4zjpwgdwdiiy5odjv7o2se0bqgjb.lambda-url.us-east-1.on.aws/iiif/3/og-2023-kc-nara_A19240402_0074/full/max/0/default.jpg", + "ocr_txt": true + }, + "fields": { + "sex": { + "ms_sex_llm_v1": "female" + }, + "doctype": { + "ms_doctype_v1": "form" + }, + "form_title": { + "ms_form_title_llm_v1": "United States Department of Justice Immigration and Naturalization Service, G-325A ( (REV. 8-27-72)N" + }, + "is_g325a": true, + "is_cert_naturalization": false, + "countries": { + "ms_countries_nlp_v1": ["United States"] + }, + "years": { + "ms_years_nlp_v1": [1966, 1907, 1903, 1972, 1872] + }, + "g325a": { + "occupation": { + "occupation_llm_v1": "['housewife']" + }, + "reason": { + "reason_llm_v1": "NATURALIZATION" + }, + "nationality": { + "nationality_llm_v1": "Hungarian" + } + } + }, + "anumber": "A19240402", + "full_text": "FORM G-325A (REV. 8-27-72)N Form Approved UNITED STATES DEPARTMENT OF JUSTICE OMB No. 43-R436 Immigration and Naturalization Service BIOGRAPHIC INFORMATION (Family name) (First name) (Middle name) MALE BIRTHDATE(Mo.-Day-Yr.) NATIONALITY ALIEN REGISTRATION NO. NEMETH ANNA Gabriella FEMALE 3-16-1907 Huggground (If any) 419-240-402 ALL OTHER NAMES USED (Including names by previous marriages) CITY AND COUNTRY OF BIRTH BudAPEst- Hungory SOCIAL SECURITY NO. 326-54-4043 FAMILY NAME FATHER KARDOS. Dezso. 1872 Veszprem Hungery- Deceased FIRST NAME DATE, CITY AND COUNTRY OF BIRTH(If known) CITY AND COUNTRY OF RESIDENCE MOTHER(Maiden name) Csipes. Julienna. 1886 MEZOTUR. Deceased HUSBAND (If none, so state) FAMILY NAME FIRST NAME BIRTHDATE CITY & COUNTRY OF BIRTH DATE OF MARRIAGE PLACE OF MARRIAGE OR (For wife, give maiden name) WIFE n/A FORMER HUSBANDS OR WIVES(i none, so state) FAMILY NAME (For wife, give maiden name) FIRST NAME BIRTHDATE DATE & PLACE OF MARRIAGE DATE AND PLACE OF TERMINATION OF MARRIAGE Nemeth Gabor 1903 / 929 Minor 1966 Hungery by Death APPLICANT'S RESIDENCE LAST FIVE YEARS. LIST PRESENT ADDRESS FIRST. Hangary FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 3172 N.Shendan Chicogo Illinois U.S.A Jan. 1972 PRESENT TIME APPLICANT'S LAST ADDRESS OUTSIDE THE UNITED STATES OF MORE THAN ONE YEAR FROM TO STREET AND NUMBER CITY PROVINCE OR STATE COUNTRY MONTH YEAR MONTH YEAR 6735Malkenner Schlorssth APPLICANT'S EMPLOYMENT LAST FIVE YEARS. (IF NONE, so STATE.) LIST PRESENT EMPLOYMENT FIRST. 2/23 Gemmy- FROM TO FULL NAME AND ADDRESS OF EMPLOYER OCCUPATION (SPECIFY) MONTH YEAR MONTH YEAR Housewife PRESENT TIME Housewife FORM IS SUBMITTED IN CONNECTION WITH Show below last occupation abroad if not shown above. (Include all information requested above.) THIS APPLICATION FOR: SIGNATURE OF APPLICANT OR PETITIONER NATURALIZATION times Neweth 3/8/74 DATE ADJUSTMENT OF STATUS OTHER (SPECIFY): IF YOUR NATIVE ALPHABET is IN OTHER THAN ROMAN LETTERS. WRITE YOUR NAME IN YOUR NATIVE ALPHABET IN THIS SPACE: Are all copies legible? Yes PENALTIES SEVERE PENALTIES ARE PROVIDED BY LAW FOR KNOWINGLY AND WILLFULLY FALSIFYING OR CONCEALING A MATERIAL FACT." + } +]