diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7812b18a724a2889eaec60e2b8b52d90b19b5e34 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Progress Update + +--- + +## Project A — Synthetic Test Data Generation + + [Project A Overview](project_a_output_progress/project_a_overview.md) + +### What's Done + +**Signature Pasting Pipeline** +Signatures from CEDAR and SigNet are cleaned, augmented, and pasted onto document templates. Signature field coordinates are currently hardcoded — obtained by running `pdfplumber` on the original born-digital PDF templates and converting PDF point coordinates to PNG pixel coordinates. + +> [Document Template](project_a_output_progress/templates) + +> [View Synthetic Dataset Output](project_a_output_progress/synthetic) + +--- + +**Field Auto-Detection** *(in progress)* +Currently working on automatically detecting signature and other fields from the template images using OpenCV, so the pipeline works even when new templates are added without needing to manually measure coordinates. + +> [View Field Validation Overlays](project_a_output_progress/validation_overlays) + +--- + +**Test Cases** *(in progress)* +50 structured test cases generated across 5 scenario types (PASS, NO_SIGNATURE, WRONG_PERSON, WRONG_ROLE, REQUIRED_PERSON_MISSING). Each case folder contains the generated document, reference signature images, and a `ground_truth.json`. + +> [View Test Cases Output](project_a_output_progress/test_cases) \ No newline at end of file diff --git a/project_a_output_progress/project_a_overview.md b/project_a_output_progress/project_a_overview.md new file mode 100644 index 0000000000000000000000000000000000000000..464d8f30ca0bd44bc1706a66a5474e6208b06d3f --- /dev/null +++ b/project_a_output_progress/project_a_overview.md @@ -0,0 +1,340 @@ +# Project A — Synthetic Signature Dataset: Technical Overview + +## What the Project Does + +Project A generates a **synthetic dataset of signed documents** for training and testing a signature verification model. Real signature images are taken from public datasets, cleaned up, and pasted onto document templates to produce labelled images — each one recording whether the signature on it is genuine or forged, and who signed where. + +The project has two main components: + +- **`prepare_signatures.py`** — loads signature images from datasets, removes backgrounds, and applies augmentation +- **`synthesize_documents.py`** — pastes prepared signatures onto document templates and builds the labelled dataset +- **`generate_test_cases.py`** — generates a structured 50-case test suite with ground truth labels across 5 failure scenarios + +--- + +## Datasets Used + +| Dataset | What it contains | How it is used | +|---|---|---| +| CEDAR | Genuine and forged signatures in flat folders (`full_org`, `full_forg`) | Loaded as a flat list of file paths | +| SigNet | Genuine and forged signatures organised per writer (`001/`, `001_forg/`, etc.) | Loaded per writer so writer identity is preserved | +| GPDS | Small sample only | Not actively used yet — reserved for future work | + +--- + +## File 1: `prepare_signatures.py` + +This file handles everything to do with **loading and preparing signature images** before they are pasted onto documents. + +### Loading Functions + +**`list_signature_files(folder)`** + +Scans a folder and returns all image file paths with valid extensions (`.png`, `.jpg`, `.jpeg`, `.tif`, `.bmp`). Used internally by other loading functions. + +**`load_cedar_signatures(genuine, limit)`** + +Loads CEDAR signature file paths. Pass `genuine=True` for real signatures, `False` for forged ones. The `limit` parameter allows loading a small sample for quick testing. + +**`list_signet_writer_ids(split)`** + +Lists all writer IDs available in SigNet for a given split (`"train"` or `"test"`). A writer is only included if both their genuine folder and their forged folder exist, ensuring no incomplete writers are returned. + +**`load_signet_signatures(writer_id, split, genuine)`** + +Loads signature file paths for a single writer in SigNet. This is per-writer (unlike CEDAR's flat load) because SigNet's folder structure is organised by writer, and knowing which writer a signature belongs to is needed for hard-negative sampling in later work (e.g. deliberately picking visually similar writers as tricky negatives). + +**`load_signet_all(split, limit_writers)`** + +Convenience wrapper that calls `load_signet_signatures()` for every available writer and returns one flat list. Each entry is a dictionary with the fields: + +``` +{ + "path": "/path/to/sig.png", + "writer_id": "001", + "label": "genuine" or "forged", + "source": "signet" +} +``` + +This is the function `synthesize_documents.py` calls when building the signature pool. + +--- + +### Background Removal + +**`remove_background(image_path, threshold=200)`** + +Loads a signature image and removes its white or light-coloured background using **OpenCV grayscale thresholding**: + +1. Convert the image to grayscale +2. Any pixel brighter than the threshold (default 200) is treated as background +3. Build an alpha channel from that mask so background pixels become transparent +4. Return a BGRA (OpenCV) image with a transparent background + +This is a simple, no-ML approach that works well for offline signature scans which typically have a white paper background. + +**`crop_to_content(rgba_image, padding=5)`** + +Finds the bounding box of all non-transparent pixels in the BGRA image and crops tightly around the signature ink, with a small padding margin. This removes excess whitespace so the signature fits neatly inside a document's signature box. + +--- + +### Augmentation + +Augmentation adds variation to the signatures so the model does not overfit to a fixed set of images. Three individual transforms are available, and one combined function applies them randomly. + +**`augment_rotate(rgba_image, max_angle=10)`** + +Randomly rotates the signature between −10° and +10° using `cv2.getRotationMatrix2D` and `warpAffine`. The border fill is transparent so no white rectangle is introduced. + +**`augment_scale(rgba_image, scale_range=(0.85, 1.15))`** + +Randomly resizes the signature to between 85% and 115% of its original size using `cv2.resize`. + +**`augment_noise(rgba_image, amount=6)`** + +Adds small random pixel noise (±6 per channel) to the RGB channels only, leaving the alpha channel unchanged. This simulates slight pen pressure variation or scan noise. + +**`augment_signature(rgba_image)`** + +Applies the three transforms above in combination with random probabilities: +- Rotation: 70% chance +- Scaling: 70% chance +- Noise: 50% chance + +This is the function `synthesize_documents.py` calls when preparing each signature for pasting. + +--- + +### Combined Pipeline + +**`prepare_signature(image_path, threshold=200, padding=5, augment=False)`** + +The full single-signature preparation pipeline in one call: + +``` +cv2.imread() → remove_background() → crop_to_content() → [augment_signature()] +``` + +Returns a BGRA numpy array ready to be pasted onto a document. Returns `None` if the image cannot be read. This is the main function called by the generation loop. + +--- + +## File 2: `synthesize_documents.py` + +This file handles **pasting prepared signatures onto document templates** and assembling the final labelled dataset. + +### Document Templates + +The project uses **15 document templates** across 5 groups, stored as PNG files in `data/templates/`. The templates are real document layouts converted from PDF: + +| Group | Documents | +|---|---| +| Banking forms | Bank account opening, corporate account application, wealth management | +| Corporate governance | Board resolution, banking authorisation, shareholder resolution | +| Chinese documents | Business registration, employee application, service application | +| Tamil documents | Public service, trade licence, residence assessment | +| Cheques | Continental Trust, Global Merchant, Standard Clearing | + +### Signature Box Coordinates + +For each template, the pixel coordinates `(x1, y1, x2, y2)` of every signature field are hardcoded in the `DOCUMENT_TYPES` dictionary. These coordinates were measured once using `pdfplumber` on the original born-digital PDFs, then visually verified by cropping and inspecting each box. They are not detected at runtime — the pipeline reads the stored values directly. + +This approach works reliably because the templates are fixed PNGs converted from those same PDFs at a consistent resolution (1241×1754 pixels at 150 dpi). If a template changes or is a scanned image at a different scale, the coordinates would need to be re-measured. + +--- + +### Core Functions + +**`remove_white_background(sig_pil)`** + +A second, PIL-based background removal pass applied just before pasting. It converts the signature image to RGBA and sets any pixel where R > 200 AND G > 200 to fully transparent. This catches white and near-white paper while preserving ink — including blue ballpoint pen ink, which has a low green channel value and is not affected by this condition. + +**`paste_signature(doc_pil, sig_pil, box)`** + +The core pasting function. For each signature box it: + +1. Calls `remove_white_background()` to clean the signature +2. Resizes it to fit inside the box using `thumbnail()` which preserves aspect ratio +3. Applies a small random offset of ±5 pixels so signatures do not always land at the exact centre +4. Converts the document to RGBA and pastes the signature using its alpha channel as a mask, so only ink pixels are blended in +5. Applies a slight Gaussian blur (radius 0.3) to the whole document so the ink looks like it belongs on the paper rather than sitting on top of it +6. Returns the final image as RGB + +**`build_signature_pool()`** + +Calls `load_cedar_signatures()` and `load_signet_all()` to combine all available signatures from both datasets into one flat pool. Each entry carries the file path, writer ID, label (genuine or forged), and source dataset. This pool is what the generation loop samples from randomly. + +**`generate_synthetic_documents(num_documents=200)`** + +The main generation loop. For each of the 200 documents it: + +1. Randomly picks a document type from `DOCUMENT_TYPES` +2. Loads the corresponding template PNG +3. For each signature box on that template, randomly picks a signature from the pool, runs it through `prepare_signature()` with augmentation, converts it from OpenCV BGRA to PIL RGBA, and calls `paste_signature()` +4. Optional signature boxes (such as the officer rows in `banking_authorization`) have a 70% chance of being filled, simulating real documents that list one to three officers +5. Labels the whole document as `"forged"` if any one signature on it is forged, otherwise `"genuine"` +6. Saves the output PNG and appends a metadata row + +**`write_dataset_csv(rows)`** + +Writes metadata for all generated documents to `data/synthetic_dataset.csv`. Columns include filename, document type, group, overall label, number of signatures, and per-role details in the format `role:label:source`. + +--- + +### What Gets Saved to Disk + +| Item | Saved? | Location | +|---|---|---| +| Raw signature images | Never written — read-only inputs | `data/raw/` | +| Cleaned and augmented signatures | No — RAM only, discarded after pasting | — | +| Final document PNGs | Yes | `data/synthetic/doc_001_…_genuine.png` | +| Dataset metadata | Yes | `data/synthetic_dataset.csv` | + +--- + +### Dataset Label Distribution + +There is no fixed genuine-to-forged ratio. Because each document's overall label is `"forged"` if **any** signature on it is forged, documents with multiple signature boxes are more likely to be labelled forged — even with a 50/50 signature pool. For a document with three signature boxes, the probability of all three being genuine is only 12.5%, so the dataset will have significantly more forged documents than genuine ones by default. + +To check the actual ratio after generation: + +```python +import pandas as pd +df = pd.read_csv("data/synthetic_dataset.csv") +print(df["label"].value_counts()) +``` + +--- + +## File 3: `generate_test_cases.py` + +This file generates a **structured 50-case test suite** for evaluating a signature verification system. Each case is saved to its own folder and includes a generated document image, reference signature images, and a `ground_truth.json` file. + +### Test Case Types + +| Type | Count | Description | Expected outcome | Rejection code | +|---|---|---|---|---| +| PASS | 20 | Correct person signs the correct field | ACCEPTED | — | +| NO_SIGNATURE | 5 | Signature fields left completely blank | REJECTED | `NO_SIGNATURE_FOUND` | +| WRONG_PERSON | 10 | An impostor's signature is pasted instead | REJECTED | `IDENTITY_MISMATCH` | +| WRONG_ROLE | 10 | Correct person but fields swapped | REJECTED | `WRONG_ROLE` | +| REQUIRED_PERSON_MISSING | 5 | One required field left blank on a multi-sig doc | REJECTED | `REQUIRED_SIGNATORY_MISSING` | + +### Persons + +Ten named persons are defined, each mapped to a SigNet writer ID (`001`–`010`). Each person has 2–3 reference signature images copied from their genuine SigNet folder into the case directory as `reference_1.png`, `reference_2.png`, etc. + +### Output Structure + +``` +data/test_cases/ + case_001/ + document.png ← generated document with signatures pasted + reference_1.png ← known-good reference signature + reference_2.png + reference_3.png + ground_truth.json ← case metadata and expected result + case_002/ + ... + test_cases_summary.csv ← one row per case, all cases +``` + +### ground_truth.json Format + +```json +{ + "case_id": "case_003", + "type": "WRONG_PERSON", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Jane Smith instead of John Doe.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": ["reference_1.png", "reference_2.png", "reference_3.png"] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Jane Smith", + "status": "filled_wrong_person" + }, + { + "role": "director_2", + "signed_by": "Jane Smith", + "status": "filled_wrong_person" + } + ] +} +``` + +### How Each Case Type is Generated + +**PASS** — loads the authorized person's genuine SigNet signatures and pastes one into each required field with augmentation applied. + +**NO_SIGNATURE** — loads the template but pastes nothing. All signature boxes are left as blank fields on the printed template. + +**WRONG_PERSON** — loads a different (unauthorized) person's genuine signatures and pastes them into all fields. The reference signatures in the folder still belong to the authorized person, making the mismatch detectable. + +**WRONG_ROLE** — loads the authorized person's genuine signatures but pastes them into the wrong fields by reversing the order of signature boxes. For example, the person who should sign the applicant box signs the officer box and vice versa. + +**REQUIRED_PERSON_MISSING** — fills only the first signature box correctly and leaves all remaining required boxes blank. Only used with document types that have two or more signature boxes. + +### Summary CSV + +`test_cases_summary.csv` contains one row per case with these columns: + +| Column | Description | +|---|---| +| `case_id` | e.g. `case_003` | +| `type` | One of the 5 scenario types | +| `document_type` | Which template was used | +| `expected_outcome` | `ACCEPTED` or `REJECTED` | +| `expected_rejection_code` | Rejection reason, or empty if accepted | +| `authorized_name` | Name of the authorized signatory | +| `authorized_role` | Their role on the document | +| `num_ref_signatures` | How many reference images are in the folder | +| `ref_paths` | Semicolon-separated list of reference filenames | +| `notes` | Human-readable description of what is wrong | +| `case_folder` | Relative path to the case folder | + +--- + +## Full Data Flow Summary + +``` +Raw datasets (disk) + CEDAR full_org / full_forg + SigNet train/ test/ per-writer folders + │ + ▼ + build_signature_pool() + Combined pool: {path, writer_id, label, source} + Everything in RAM — nothing saved yet + │ + ▼ (×200 documents) + For each document: + 1. Pick random doc type → load template PNG from disk + 2. For each signature box: + Pick random signature from pool + prepare_signature() + → remove_background() OpenCV threshold → transparent bg + → crop_to_content() tight crop around ink + → augment_signature() rotate / scale / noise + Convert BGRA → PIL RGBA + paste_signature() + → remove_white_background() PIL-based final bg removal + → thumbnail() resize to fit box + → paste() with alpha mask blend ink onto document + → GaussianBlur(0.3) soften ink into paper + 3. Label document: "forged" if any sig is forged + 4. doc_image.save() → data/synthetic/doc_NNN_…_label.png + 5. Append metadata row + │ + ▼ + write_dataset_csv() + → data/synthetic_dataset.csv +``` diff --git a/project_a_output_progress/synthetic/doc_001_chinese_employee_application_forged.png b/project_a_output_progress/synthetic/doc_001_chinese_employee_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..f454a6ac3b5d3b7e25e76de2607710cdcd3d39bd --- /dev/null +++ b/project_a_output_progress/synthetic/doc_001_chinese_employee_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7fd689bc1b068ccce404242b1a703b2c18bcd89f47625765a9c3a64deb9f2f +size 153129 diff --git a/project_a_output_progress/synthetic/doc_002_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_002_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..664f2bc5e55ef0ac9e424cdcffc672429e00d49f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_002_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4bf1c635c6c7a4bc396139956807de3dd5b9c12891c90f92a5fb5619d833047 +size 189473 diff --git a/project_a_output_progress/synthetic/doc_003_tamil_public_service_forged.png b/project_a_output_progress/synthetic/doc_003_tamil_public_service_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..6ed222a5fc6eb77ba32c7efb37d91e58f53ad9e3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_003_tamil_public_service_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcb5f433937513224f1fa05e8a5fcc1bf45eb06c11b7bf52d9092897f65b5f0 +size 328547 diff --git a/project_a_output_progress/synthetic/doc_004_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_004_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b7cd7b1e7ba9fd8c57d7532cb8d07d9b318ac1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_004_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a579c5d04adfc6a8f155271ea3c75346b31ba85a4ca7ee633a5568b814510c7d +size 190013 diff --git a/project_a_output_progress/synthetic/doc_005_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_005_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..0050639e7d77b6017aa8dd11ae3a4df9a0d9308b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_005_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8b0679f3a6fc8f82996bf3d1f59afad9f1cf7f32b9a8d2ec344af0d6c6dffb +size 324931 diff --git a/project_a_output_progress/synthetic/doc_006_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_006_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..fb994ff5700404b9a44af28cd42c1dc1b3fef963 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_006_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c93b3aa4bdf398b96cc9d123ee06004a396301f9763a06ab2870b4013da59d +size 319197 diff --git a/project_a_output_progress/synthetic/doc_007_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_007_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ab5c2c5c6f6365c075baca6e1eeb865a18ca28 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_007_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210c963738b3ab1932d5fa5112513758c445d8d488beb792d8dee2863a8b24be +size 216097 diff --git a/project_a_output_progress/synthetic/doc_008_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_008_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..f64c71fcf1d7a6d3ab0d36985f916bf28f2ca51f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_008_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7bb50a3777c87fea68134afc182c9342096e5be0878d97f74f2266779e6748 +size 173029 diff --git a/project_a_output_progress/synthetic/doc_009_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_009_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..3f991b3bf1da7c829bd3484ca36c343e69f90b90 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_009_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf5402771dbb3d92f5722a3a78bc6683c9660fddb50ad7c8b617e96e2c8494b +size 319697 diff --git a/project_a_output_progress/synthetic/doc_010_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_010_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..519ef92ff7320de0d061e72baa47f31d76a9131b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_010_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299b4d9ca0433bd75703cbd680fe39f16e72461be598a45824e3fe07823ffc3c +size 186127 diff --git a/project_a_output_progress/synthetic/doc_011_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_011_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1769cc17e2d56bf1d9de5c59f9faee0a5aba78a3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_011_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a722e8830a70fee57a8901845f070473007f02cbfec5b7f8331ea8c6c81d4a +size 219296 diff --git a/project_a_output_progress/synthetic/doc_012_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_012_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..752e3440264ab461d81175681c843735a6682992 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_012_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce096155d5f20ee378e7875a766d975fcd0b8506f5d36863cf676d4c4569b0f3 +size 247469 diff --git a/project_a_output_progress/synthetic/doc_013_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_013_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..33e59ae948e2533a6114595aaa106d07eaf24df5 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_013_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccfd123024d3c364deaa8966056a61b13da36000f236e394798bb4f33f9e9db +size 261574 diff --git a/project_a_output_progress/synthetic/doc_014_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_014_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..b20487d23cdea53269ac84b1c41e2be21deb5096 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_014_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff85e12ae40adbe8884b6439d2c8df88dac54fe866a614a8783225756bc1382f +size 198279 diff --git a/project_a_output_progress/synthetic/doc_015_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_015_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..6da8dc93186a6a018812d2c27661c29c7e2070e8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_015_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6696c7641be6314aee06426de1bd40450df71d5c56dfca7b6a6cdfa955026f5d +size 268253 diff --git a/project_a_output_progress/synthetic/doc_016_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_016_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..ee44bad6bb18c03ed8eed0f36b7b163c8e424b8b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_016_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47421e915f0feba2636e502d245a700c47138f5983d6c5936e4182a839da257 +size 76856 diff --git a/project_a_output_progress/synthetic/doc_017_wealth_management_genuine.png b/project_a_output_progress/synthetic/doc_017_wealth_management_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..a77df5b57f61715da45167e0c87c63ec4ee780dc --- /dev/null +++ b/project_a_output_progress/synthetic/doc_017_wealth_management_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2701242edf927a9c777387031658b282741d20137093596fef415763cb2621a +size 180131 diff --git a/project_a_output_progress/synthetic/doc_018_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_018_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd0a0c8d926678bc132be425197e13147bf57a3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_018_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126ab4d16b7e150b954fc93f6d721bf59268f6a1ca5146bf978833c79e33450e +size 77145 diff --git a/project_a_output_progress/synthetic/doc_019_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_019_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2d123cbab49ee656b33dd25ef2c343391af2ff --- /dev/null +++ b/project_a_output_progress/synthetic/doc_019_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ee9e4f87542693028d1837253415debf6902e40296d7d53d7b7aa825cc488c +size 250835 diff --git a/project_a_output_progress/synthetic/doc_020_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_020_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..04ab5d2ac2f394ed57d3d2c133f00b5e6a906751 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_020_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80e0851f813cee35cfdfa81163a574d5d9dfb192f34103fc1f6b1ee6eb12e8d +size 188795 diff --git a/project_a_output_progress/synthetic/doc_021_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_021_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..2ed2df1375326b400ce8b4b9b115f8cf6777d59a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_021_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03bc0e18ee4c0fa286e043a4af89f9e5e491f9d538fd6e89fb3877b644073558 +size 174260 diff --git a/project_a_output_progress/synthetic/doc_022_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_022_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ebf20dc925bc25f1fead9db1518abc0b94220d3d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_022_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b468786ff3a700c87ae4c56f166353f2823c00c1dd730064da8f4e6827e7f7 +size 82987 diff --git a/project_a_output_progress/synthetic/doc_023_chinese_employee_application_forged.png b/project_a_output_progress/synthetic/doc_023_chinese_employee_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..02bbf61956a0624a906afb37a69ddf76725c3a40 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_023_chinese_employee_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9a68c8f84237e96921a4041ac0b48a629ee6b7981ed1bda9d0210b30b93971 +size 155061 diff --git a/project_a_output_progress/synthetic/doc_024_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_024_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..8f4056ba016b5fa9f75b4a9ded2016e6fd603ded --- /dev/null +++ b/project_a_output_progress/synthetic/doc_024_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f7675fb90b201b3daec98af7c187472ac0920a89c6aba0c31aa94ad692269f +size 215205 diff --git a/project_a_output_progress/synthetic/doc_025_tamil_trade_license_genuine.png b/project_a_output_progress/synthetic/doc_025_tamil_trade_license_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..566ec3f73b112557450d15988b57c7194cbf1ce6 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_025_tamil_trade_license_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e56fb70b4200155c1e1929c5a627ad5c4cb7605dcfd4af6d49dbf72dba8b53 +size 246428 diff --git a/project_a_output_progress/synthetic/doc_026_shareholder_resolution_genuine.png b/project_a_output_progress/synthetic/doc_026_shareholder_resolution_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..34edadb0f9d1c534a3f51bf8b6112acd02ce4338 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_026_shareholder_resolution_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71449eaadb0cdf85ea139f73d4ae9294c1ccadd567c969fc802496d89da4c2f +size 184280 diff --git a/project_a_output_progress/synthetic/doc_027_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_027_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..0bda7fd0cb6412689582f34ff09c0333de9db0b0 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_027_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e1c57c4d5db091349546f786dfc9b93ffd4e287d33cd65fe09084ee8084ad9 +size 186788 diff --git a/project_a_output_progress/synthetic/doc_028_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_028_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..948fa7d16d014eec3bbb551820f105226ef77182 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_028_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20eaebc90188d15dc795093a984f4fe17e83b22a9dd62904df99a9a2291b9275 +size 218004 diff --git a/project_a_output_progress/synthetic/doc_029_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_029_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..66b8f0e9d6e1036a3d1c3ee305ac4a8b0efbde01 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_029_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8f5e4af224361cd34fe44cd7efc044cf26d440055bd8950634c89538b1d485 +size 220920 diff --git a/project_a_output_progress/synthetic/doc_030_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_030_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..6fe4ff433f68e790a8b675e1371ba55943b774b2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_030_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d3e76f34461ec1e20ff4a397a1783fafd6659af04f15b5230661dccd4ff88d +size 188976 diff --git a/project_a_output_progress/synthetic/doc_031_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_031_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..7c4380ad425bfe979669989bb23978240f7c8ce4 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_031_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141e20d695d4d2af74d03b7d509b567ef8510034606a4a9378dd4a80cefcabae +size 225266 diff --git a/project_a_output_progress/synthetic/doc_032_banking_authorization_genuine.png b/project_a_output_progress/synthetic/doc_032_banking_authorization_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..c0c93319076dc29f9a8076ccdb9bce839c354318 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_032_banking_authorization_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414cf7db515d95df7594c13bafa791da5df69377b89f8939032d10a806865c56 +size 217820 diff --git a/project_a_output_progress/synthetic/doc_033_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_033_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..8ad8d4f46e25fb5ade313798e0013519fcfe1cd4 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_033_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59277cdeb1aa0a7487728f90f8fe3a0f4e5d3ec78ce5b57cd0de1d11faf0032 +size 84861 diff --git a/project_a_output_progress/synthetic/doc_034_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_034_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..486ae4e332ceda7f660710e5db0735dabd28ebe2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_034_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34eb46b907ad8042f5ef5e1f9b96ee122874976de5447a2002a38a0f0dda1716 +size 318937 diff --git a/project_a_output_progress/synthetic/doc_035_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_035_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..5eccdb12c034a5c2c50a0b8d53809a4e47289939 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_035_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a3c5d140964f353c476873502e63075b99ea9190b8904320c1a5dbd9198fcf +size 252715 diff --git a/project_a_output_progress/synthetic/doc_036_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_036_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..e9f4044578cae6b6e4eb9ce40317eedef00e27ff --- /dev/null +++ b/project_a_output_progress/synthetic/doc_036_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363d02a87bd099257ef787627dd295b8e43942d007f98485b5e0c08fbb266055 +size 255713 diff --git a/project_a_output_progress/synthetic/doc_037_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_037_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4cae474f649d30e6359910a8dfb1de34379657 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_037_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec138b05c62a575d7554f774141778a03030fa331f5ad5e6c80216f947265a9 +size 87120 diff --git a/project_a_output_progress/synthetic/doc_038_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_038_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..12d7a1564ada6b38d28577762e4be5daaba81d80 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_038_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9606c9a3909f176f0b8a8cb6cf3466b688436da71fd10e4720f2d66faef15cc9 +size 240525 diff --git a/project_a_output_progress/synthetic/doc_039_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_039_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..30a64872ec482a8373c9ff5d84caf22e5ed446be --- /dev/null +++ b/project_a_output_progress/synthetic/doc_039_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93e681a31393203d323ea687413bd49ef923385ef9e5a765ea495b8dde17e3e +size 168823 diff --git a/project_a_output_progress/synthetic/doc_040_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_040_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..f79251cd880f6c9be1c4d91239101634288cf97a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_040_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09aa8ffa2320c60ae0b4a22395e7dadea4a559052df20f4427b307fde9af0741 +size 195594 diff --git a/project_a_output_progress/synthetic/doc_041_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_041_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..3669fdb40ca583af2d890593fcc969c5a0710a92 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_041_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fc2c4ed76100c27cd4502cb373ee496eaa13dae6a53c2b014b4017d94c015c +size 156484 diff --git a/project_a_output_progress/synthetic/doc_042_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_042_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..7cc4d9d72418df8f0104d37020088ae610f90c8a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_042_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ed69e8bc0bca8ade3cc0d0264abe8b97395464d437b9f55d19aa5612b3a6b4 +size 232450 diff --git a/project_a_output_progress/synthetic/doc_043_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_043_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..9609d596637f80e32c9c242cb2af714c056d548c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_043_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc1ea58f84712492d736528efda930516e471f39363de75d509661f990f39e3 +size 149979 diff --git a/project_a_output_progress/synthetic/doc_044_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_044_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1bd3111a207299113b86d7ee28085a475ff7057a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_044_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe3d635055256851df29e8b239a3a371ad3810d35d0ebeddb38ee720bca333a +size 243337 diff --git a/project_a_output_progress/synthetic/doc_045_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_045_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..150a104b3360c02339fee38c86bfe8ca499840bf --- /dev/null +++ b/project_a_output_progress/synthetic/doc_045_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6b8a5b5bc6e2aca8d0ea2d099a7ddffc80727ee661088ca6193cb019ffb7b8 +size 88356 diff --git a/project_a_output_progress/synthetic/doc_046_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_046_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..762b4b5a4288e844e1b9eb1f9c66861bbd9f523c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_046_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e525b0cf5df2bda6be772f1476e03d72bb74347dae187a821aaa429782d8a80f +size 126672 diff --git a/project_a_output_progress/synthetic/doc_047_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_047_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4274a2d294c2f04f773e002b53c62c174fbdfaeb --- /dev/null +++ b/project_a_output_progress/synthetic/doc_047_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2524868a546e2d80187b9d7e23fd9a198efefcc1b5cbaa87b51d223b5863f4c6 +size 249432 diff --git a/project_a_output_progress/synthetic/doc_048_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_048_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..9425138c601eac6a83dd4c35faec535561ae4ca9 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_048_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf268c18beae176b3fde025733b1769a3979c47d63f75794954abc71ebe48188 +size 317937 diff --git a/project_a_output_progress/synthetic/doc_049_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_049_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fb5f7d020bd84e053c1d9e1b5d7b0d5fbc9c6b90 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_049_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499c9aecf410b6c4e0429c69ebe22cfd30377695e98d39e022f1a26beeb7c4a +size 187899 diff --git a/project_a_output_progress/synthetic/doc_050_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_050_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..02da153028db8c376b818d59de0277c1980f312c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_050_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9fd23954bfa42bc8fb925499e00748175f0f9c36cf9bc4ace429cb2d3bc662 +size 246546 diff --git a/project_a_output_progress/synthetic/doc_051_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_051_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ea8c309cf1ed638baad583b71f120b3f15eb70 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_051_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689870fb37fbaf3848cc75d5ef7c45464cb12fa799e3da8b120e2354a48faea4 +size 77823 diff --git a/project_a_output_progress/synthetic/doc_052_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_052_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..1094e391327a4dcb9c12b8c897297904fd05b041 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_052_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64496e77beca7b1da35ff577d7bc27976822d3e97d47aa0718edc6226a02a3e4 +size 262018 diff --git a/project_a_output_progress/synthetic/doc_053_tamil_trade_license_genuine.png b/project_a_output_progress/synthetic/doc_053_tamil_trade_license_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..c93bfa08154b7234d0d4101ec09a85808a36e483 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_053_tamil_trade_license_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b63af183204a42c7c27e3f6a3cb7d60a538da720981ed04968a6d511127eeb1 +size 252322 diff --git a/project_a_output_progress/synthetic/doc_054_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_054_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..87cb34ef7fc713075355816afa7533dcd4048639 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_054_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd0825923a6c73cd021aff0544428518d3ab8266918258b196c00f0d397c070 +size 75791 diff --git a/project_a_output_progress/synthetic/doc_055_tamil_residence_assessment_genuine.png b/project_a_output_progress/synthetic/doc_055_tamil_residence_assessment_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..da4e7459ff43fdabf4ce12ccf9c76eb0576dd2f2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_055_tamil_residence_assessment_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbeeb8b299d66fcd3165cfd1c5f7623c74750f3e70ca4c47ca913ea62284eab +size 256538 diff --git a/project_a_output_progress/synthetic/doc_056_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_056_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..351a0565720cc8ae1a8f165b4d0bc2eac62ba1de --- /dev/null +++ b/project_a_output_progress/synthetic/doc_056_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27760d6f8afb6cb4ef6938e1ce8e135081236ace0ffffac77cc63c7bf0f7ce57 +size 234827 diff --git a/project_a_output_progress/synthetic/doc_057_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_057_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..4ab92b6ee60fc89ee12956fef63773af035d2d80 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_057_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081c6fc77b8534002db8410ac3c7c9d4d6b1eed3f779df38bdecfe82793b1b2b +size 320845 diff --git a/project_a_output_progress/synthetic/doc_058_chinese_employee_application_forged.png b/project_a_output_progress/synthetic/doc_058_chinese_employee_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf63023a9a1eb62eba62e143a7385aab3455229 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_058_chinese_employee_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89654136a8077c0d90748435fc07d68dc044ddf723d552de768dce10333ed839 +size 158574 diff --git a/project_a_output_progress/synthetic/doc_059_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_059_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fd3fa90a7165109039ec71e82917d5d40a5b18b6 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_059_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfa587e694d6f000fbb63086a4a4d5dc1bec3e6148946f4aa9971af3b24c861 +size 75542 diff --git a/project_a_output_progress/synthetic/doc_060_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_060_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fcab2e7270fb8538272489eab5951bf47c7593a8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_060_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac164f0d4182081ece886239a41d77f0610ccc892d5c09265d775cdbf51a1653 +size 192604 diff --git a/project_a_output_progress/synthetic/doc_061_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_061_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..24083dc8344620a39d7fe494299561c47f2ef978 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_061_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e6831e6b6f898a6e6690cde31b203d14c870fff0b5b9ac492abc1e21f103aa +size 79715 diff --git a/project_a_output_progress/synthetic/doc_062_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_062_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..dc227d82992f57842f0335b1a470145f072f4b40 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_062_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4e87ff5dc14af44bc0508b4e123b2b2a273e08feb28c7306d5d8c1f52b2371 +size 316950 diff --git a/project_a_output_progress/synthetic/doc_063_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_063_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..28ab4a4680f940ab710185c0b13f1567af954dd5 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_063_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b593363c3dc1a486c3f799cab522e7a0ddc008cb092dcf6e147868655ec785 +size 192115 diff --git a/project_a_output_progress/synthetic/doc_064_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_064_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ab61b2379b80346e4b338df7fb04a8f9ee47811e --- /dev/null +++ b/project_a_output_progress/synthetic/doc_064_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc369c15d58d17ddf82c7359c1f1dfda885160dcff7d956b8385d56698c7cf7d +size 192528 diff --git a/project_a_output_progress/synthetic/doc_065_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_065_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..5f98932889e809ff0a80774362e0ac8976d517f7 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_065_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adfcdf14e066133adf73ffe982230f093bd879b5e18fe59ff91cb1f89914be48 +size 156521 diff --git a/project_a_output_progress/synthetic/doc_066_tamil_residence_assessment_genuine.png b/project_a_output_progress/synthetic/doc_066_tamil_residence_assessment_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..5dfb43ee913d786a98451a91abb5230d9c6710ef --- /dev/null +++ b/project_a_output_progress/synthetic/doc_066_tamil_residence_assessment_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a9c9b06462da3bc80688511606e87a20be3cfbdcb7f25c7e7acb47095539f8 +size 253315 diff --git a/project_a_output_progress/synthetic/doc_067_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_067_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fdad4638c3a81ca6dffade22c73e2035fdd51305 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_067_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e7678ccbb680d3d4ddca08a1463c04628e85469cb95eb104de670325ffa4e8 +size 128020 diff --git a/project_a_output_progress/synthetic/doc_068_chinese_business_registration_genuine.png b/project_a_output_progress/synthetic/doc_068_chinese_business_registration_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..837881fffeb9e54f50b893fa032ba24fc8911dc1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_068_chinese_business_registration_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf0db45b6f83e074e3826ad7799d24540daba39a92ad45c889980c710104889 +size 119112 diff --git a/project_a_output_progress/synthetic/doc_069_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_069_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..278513d38fa52a48bbe4cae9ca40ce8c62afae84 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_069_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5176ec93327eb63150bee5ffdb6612132724a2aed02ee2a8b8da0a29167a6222 +size 188342 diff --git a/project_a_output_progress/synthetic/doc_070_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_070_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..a48233e43633a594ec6b871715a9bd4c6e0ee82f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_070_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b578453b16c1eb09857215cd091856fdd3c6f4b22fb5f02e9f8c71be240d9e9 +size 83408 diff --git a/project_a_output_progress/synthetic/doc_071_cheque_continental_trust_genuine.png b/project_a_output_progress/synthetic/doc_071_cheque_continental_trust_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..83c093b8d0f5cedd8f577234796d7b0bdc79e3ee --- /dev/null +++ b/project_a_output_progress/synthetic/doc_071_cheque_continental_trust_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f3a5f323113691523fc781eb4f2c5d0afb8e4d841801bd4694f4175da7cbba +size 80302 diff --git a/project_a_output_progress/synthetic/doc_072_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_072_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..7f495d275a5e52945c67ca48acd39026d9fee58d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_072_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd9794823af38b4659f0b5c4dfe825e2f9e3ddf90a346532dc1082af93920a2 +size 218938 diff --git a/project_a_output_progress/synthetic/doc_073_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_073_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..591a147e77d6ffc88834da8256c1b8d269f4c240 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_073_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65f08d1befc5831a97f6a97ccc99d398a3bfbf5eeab1ae7c36127d5a8b93343 +size 262532 diff --git a/project_a_output_progress/synthetic/doc_074_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_074_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..50993ee26d5dd3e40eeebf49a5db435da48ce42b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_074_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4513b7119e96c37d6e4986bf2ff6dcee071d3201213506302daf2465cbcfef1e +size 125571 diff --git a/project_a_output_progress/synthetic/doc_075_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_075_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..97c12a6750aa65ac52cce7b96e86264b69c613e3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_075_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28b719c83dfc7300b05174e3d45e3444cd120873ab77f806b7cab04e6939b95 +size 221349 diff --git a/project_a_output_progress/synthetic/doc_076_corporate_account_application_genuine.png b/project_a_output_progress/synthetic/doc_076_corporate_account_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..b41adb736786bd25fddacd6fe8beb3b1c8de6ce3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_076_corporate_account_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8decb144e7a0aff85d9664f17d1d87bd57e59de35edd335eca0649a3e4e0ba0b +size 219277 diff --git a/project_a_output_progress/synthetic/doc_077_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_077_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..a6da30b528cab019a4a8f6d4e6e879314bb70a35 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_077_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ed70fbe8f469f926ea62748169cf825e2ae97d203a524284198dab9c5d5a14 +size 190969 diff --git a/project_a_output_progress/synthetic/doc_078_chinese_business_registration_genuine.png b/project_a_output_progress/synthetic/doc_078_chinese_business_registration_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1a852e1fedb3a552b35ffa11761b3b703b3dc1d1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_078_chinese_business_registration_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b76f1ccefdcbdb1a375d0a6c7ad7373e2a952a9f5c8f2c5e3dc58da2c9013c +size 117523 diff --git a/project_a_output_progress/synthetic/doc_079_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_079_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..b372cc8b725eebb562cc8511867f19c2f54f3b0d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_079_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccca32e50024f910332728cb92b674d6620517583e1ab578c932d50739245cfb +size 261019 diff --git a/project_a_output_progress/synthetic/doc_080_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_080_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ef51111ab26cbf8f00e9e1e9328aaba4292a31c4 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_080_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6585e05473abb19030849a407c58c9bb6eda07dbde26d4f35cca870909dca16f +size 241961 diff --git a/project_a_output_progress/synthetic/doc_081_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_081_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..977c046fe7f3484f371a64ca9886606bef0a13a2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_081_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a409af754023f8337e2a8060f60b55ae8041aa8a5e143df8df4197e8fad15b +size 196397 diff --git a/project_a_output_progress/synthetic/doc_082_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_082_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..112e3295b6a3840be9e34bfc83559cbacb888e0a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_082_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c84cbb1356edc79934ae3706ecbc801a977efb4e5215f3e0da2eeb0084a6531 +size 194584 diff --git a/project_a_output_progress/synthetic/doc_083_banking_authorization_genuine.png b/project_a_output_progress/synthetic/doc_083_banking_authorization_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1c9a188ee58ac59ba920add8e811f19c04d7c42d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_083_banking_authorization_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed84a3bfd0e540fa0e1261bb771ff445af3ddb3b4cc85e9da1522e5b53ee470 +size 192483 diff --git a/project_a_output_progress/synthetic/doc_084_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_084_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..a30761c4260cd72ef986b7ae5bfc9a293c9c091e --- /dev/null +++ b/project_a_output_progress/synthetic/doc_084_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6cda923f0bfe8fa1f4aa3169bbf58ab681132250300bde94cef3f36fafb149c +size 78393 diff --git a/project_a_output_progress/synthetic/doc_085_chinese_employee_application_forged.png b/project_a_output_progress/synthetic/doc_085_chinese_employee_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..d91132b05928717361b5563d00ce5f42e1d7cfcc --- /dev/null +++ b/project_a_output_progress/synthetic/doc_085_chinese_employee_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20fbe96222efb6145c4f6163d96196790c65268d83e365fd6e9f391360f6460 +size 159600 diff --git a/project_a_output_progress/synthetic/doc_086_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_086_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..ebabac51e09c1f7d78376b66a91ab30751dcedee --- /dev/null +++ b/project_a_output_progress/synthetic/doc_086_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731f74a3e3e1ea3cff39479c74fe6606a3b0a15399a2b190f382d16049c8465f +size 248794 diff --git a/project_a_output_progress/synthetic/doc_087_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_087_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ad7b49e400f5f6f942988586e8b9b357c39161f1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_087_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce879220ecad7dbfa9666a9d764e0611968b5eb2022288cff9fe9a9709e238c2 +size 77038 diff --git a/project_a_output_progress/synthetic/doc_088_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_088_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aa9a0302a34b0391243d9a26c1918d0a8823f1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_088_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3913d1c8791ddc53b3e884a39c9fd067ca5ce2f13edb2ad79d953bc1a7973047 +size 248990 diff --git a/project_a_output_progress/synthetic/doc_089_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_089_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..590b87667d7213b859f0d340e531bd7e5852e722 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_089_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69786a9b044be11ebf26e44b78c75fccac7f98655903e49ebb23f1dc23d3b104 +size 216538 diff --git a/project_a_output_progress/synthetic/doc_090_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_090_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..46c7e31904d911d51cb214362aba14012a769285 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_090_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe4572b35f2779f113805c01b26fc16370cbe73afad52adad185f0e4952e296 +size 76900 diff --git a/project_a_output_progress/synthetic/doc_091_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_091_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ec242e508ab6c85191a8bdc768d8c3b564219444 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_091_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6c6cc941e736b081694759a0f90bdc4addc593fadb47f88d088f78a5d32202 +size 241510 diff --git a/project_a_output_progress/synthetic/doc_092_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_092_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..033d3b69df640d73d0bcbca72cf3a0847fdcc2f8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_092_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12c9da81ff6ef9a903e4490ef2f0e4d787d4138e5e654cebf7f7405e5209e24 +size 229144 diff --git a/project_a_output_progress/synthetic/doc_093_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_093_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..71a3d74267ffecb9e675c047e59b391f5fec10b3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_093_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7017df1dfadcaa22ba372394f395d62dc6b8434f6aed69bb49dac0bc1e087ece +size 260263 diff --git a/project_a_output_progress/synthetic/doc_094_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_094_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..59c716b6602fe2f4a94e136aa9019ead549decc1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_094_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1735ac85210e9957d1dae42381cf09271b494dec4df0902df119b7f0520277f2 +size 86218 diff --git a/project_a_output_progress/synthetic/doc_095_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_095_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..068da28fb0af578dd81d35701b1be5a4d4fe58ad --- /dev/null +++ b/project_a_output_progress/synthetic/doc_095_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d71ba6ac3fc80ddd747c0324f5fad98d6f9bd5d4f6253dab46810323214dbd +size 185443 diff --git a/project_a_output_progress/synthetic/doc_096_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_096_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..29b88d5c24232b33858b468d4a634aa374125f91 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_096_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54fe57337535d93394ed4f7ddcf987845c6cf07a9b95b144279ca7cc4c39249 +size 259143 diff --git a/project_a_output_progress/synthetic/doc_097_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_097_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..b2cb9a563a3b9b1d62868b785d8b59450a45c68a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_097_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3991e892e94dc5ac2f641485c349f852f746477b042eeb161dbc1c3c2f6f125b +size 84738 diff --git a/project_a_output_progress/synthetic/doc_098_shareholder_resolution_genuine.png b/project_a_output_progress/synthetic/doc_098_shareholder_resolution_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..a33cca5703f16a6a24585485d25a67832b33b709 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_098_shareholder_resolution_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac68e8bebefbb3e9b6c97c609903abd6ef939484a100c78541691a14d90d639 +size 166206 diff --git a/project_a_output_progress/synthetic/doc_099_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_099_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..05ef2a339ee36110b99b86770ca32aa3b71c1279 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_099_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623af1708957f004fbaea1cef069b997c8bd2f358d2748faf0a959b83aec293c +size 250655 diff --git a/project_a_output_progress/synthetic/doc_100_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_100_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..706dba4e5f8f54338c6a1ea8fe106824974a1d45 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_100_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72db4f4ce5524fb3cbf02f7c956f6a1870cefb7622c9647427e841328400bc3 +size 322381 diff --git a/project_a_output_progress/synthetic/doc_101_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_101_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..37cc0a0ff2f295ab2299e4daa618f937ee6008a5 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_101_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67642ff65561ae10009e62a116e5e59c796d9b30ddc1a0de4a5fb8201644efd8 +size 82778 diff --git a/project_a_output_progress/synthetic/doc_102_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_102_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..747a5e1831cbc4ac6b4bf2b19f8ad35863c280cb --- /dev/null +++ b/project_a_output_progress/synthetic/doc_102_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8498bfdb7e44814888e31f844fab5c1f8e2fea4f2997f7bd0a2dbb88818abb8 +size 217109 diff --git a/project_a_output_progress/synthetic/doc_103_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_103_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..b87dcc7be65173d15494c0509423c59c3224cfe8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_103_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f20b9eb4250a7a8a55c11c34bdb83f07466e1f7c152b4f61fab157542a2da18 +size 173703 diff --git a/project_a_output_progress/synthetic/doc_104_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_104_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..3ff6fdc37b0ee6a25f3e0c23058b83ecec2a8204 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_104_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0946af495852813d166183a0da8cdbbdf1503389cc701c1a657c4d55dd9e8ad +size 176811 diff --git a/project_a_output_progress/synthetic/doc_105_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_105_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ff02caab24ef635bae9802b8b7de64828404dee7 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_105_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d449a644b848f1c50255a073fbf3011eda05036179453cafa37507dde760a3 +size 180486 diff --git a/project_a_output_progress/synthetic/doc_106_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_106_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..20f33ee9f84ec8b0e907c35f17ec96e806b9ef60 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_106_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ce0103904a267942b05c87a779771ed37e2fa7d9cc385ddedd426e8a13736a +size 251256 diff --git a/project_a_output_progress/synthetic/doc_107_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_107_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..8a23155592b42c690383d8f07947f2b9a42ea622 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_107_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f57ccc33d516d6443b4c0e9bc1244fd1a6cabc492fc164113bb4caf9c15be1 +size 217334 diff --git a/project_a_output_progress/synthetic/doc_108_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_108_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..459bfa0c8c827f17e71a6962e5bba6ddf760a14c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_108_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f697d85ab2af8c5c2ce30a8a439feea7c0b9757ac854d630b8666018b3faa344 +size 199873 diff --git a/project_a_output_progress/synthetic/doc_109_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_109_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..d77b72dd7b87fe0505f5a9e064a3051de20ca7ba --- /dev/null +++ b/project_a_output_progress/synthetic/doc_109_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8d98c33ea3bfc03d62088d194f031b124fcadf80989f30c2f59146cc5ff72d +size 247320 diff --git a/project_a_output_progress/synthetic/doc_110_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_110_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4526f638b1e1bbc3ed0d5fb4f5ec00210a89d36b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_110_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d074ae22ce3f38352a326901c086cb80e815d35586abea6a291b26dd79c0f4 +size 122433 diff --git a/project_a_output_progress/synthetic/doc_111_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_111_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..3e100d5a0dce7b9585fff2d73974a6bb0045f58b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_111_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4969c4dee95684d8401a846dc6cfd6a89cffae25868ceb6c0abba21d8d35e8 +size 176060 diff --git a/project_a_output_progress/synthetic/doc_112_tamil_public_service_forged.png b/project_a_output_progress/synthetic/doc_112_tamil_public_service_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4d432137075271a6fcd233adbf4faf8d01e9d215 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_112_tamil_public_service_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75792b1856f7f9d635c25e9f2538459f874832a74a4dd95064366b174b32c491 +size 329901 diff --git a/project_a_output_progress/synthetic/doc_113_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_113_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..be8e954b538529ad3e37f24f5571b27c05380c58 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_113_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78cff077037019a98d63ddc09bc4a0631441409545b8bf239caac1654dea190a +size 90220 diff --git a/project_a_output_progress/synthetic/doc_114_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_114_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..2b90e23c704ff5f8a45273c9dea4f67cfbfa24cf --- /dev/null +++ b/project_a_output_progress/synthetic/doc_114_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59b7fe8a9f323463729f5a14279208cf3f16e12caf1a396ab3a216a539aa3a5 +size 258927 diff --git a/project_a_output_progress/synthetic/doc_115_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_115_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..ac778d3f9702a1af9520064462d822ac52415990 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_115_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd9a51b385f7c19005abe4327ba67a8be27e3979160f09a6d9c689fc2cbf65e +size 122164 diff --git a/project_a_output_progress/synthetic/doc_116_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_116_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..57aef391b7414445a26fd215be518613b45b5cf3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_116_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aca13ac9e38bc0d2fba6f504183c9f4dd10dcd23e762ef065487d18007e2b64 +size 182092 diff --git a/project_a_output_progress/synthetic/doc_117_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_117_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..d7bde61d339d8eb4c08185babec66019b55a3612 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_117_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0592a20e5f2384a4fea8cf7fe2f722e303c90c3bdde08fdc83e68d7ebfc3b3ff +size 88700 diff --git a/project_a_output_progress/synthetic/doc_118_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_118_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b95bd6f9004631020e45dd8f7d144633cf4997 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_118_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e3babf8043b50b576559e3b2511acf82e76d1834e5802765a6ba3ebad543a0 +size 253577 diff --git a/project_a_output_progress/synthetic/doc_119_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_119_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..3121e612b9282c00a226cafdd92c8fd5fc258ad1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_119_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531728f81c48cdf4fe191defe1bcf703fb68a4e3856a17d900edb7552cb71e38 +size 255769 diff --git a/project_a_output_progress/synthetic/doc_120_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_120_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..5d0d484e09eea3e63f611394c88ccc1e00f7b12f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_120_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7281ebec82d68c293e0611757162de2934b12d88d6f418192269c9ab9d285df +size 255297 diff --git a/project_a_output_progress/synthetic/doc_121_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_121_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4a020c5b7189a09d94c1548637cc31db2f303fd4 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_121_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8fc7ec456ff554ba01716d84b127775ec24864950e27eb356a558473db3c913 +size 180553 diff --git a/project_a_output_progress/synthetic/doc_122_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_122_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..0d14e85e38fe193750280761e047fe41f41ea93a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_122_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ae543ace0912fd44b32928d0bb4680565b2a744699e604c4bdf123a29badae +size 75777 diff --git a/project_a_output_progress/synthetic/doc_123_wealth_management_genuine.png b/project_a_output_progress/synthetic/doc_123_wealth_management_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..03f8bd65511d5a228a2b26feb3d2a93fb49df9da --- /dev/null +++ b/project_a_output_progress/synthetic/doc_123_wealth_management_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16f3f81c837107743918aae1c34997f3eff2273da959a5eb3681ceb7ea4fed37 +size 185399 diff --git a/project_a_output_progress/synthetic/doc_124_chinese_business_registration_forged.png b/project_a_output_progress/synthetic/doc_124_chinese_business_registration_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..40c08a11cf0461a711736054fc8e6470f9c42721 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_124_chinese_business_registration_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cccae562e873abc173d0eb625d7fd56b22fdb94da78b0e03b1764f68554dd45 +size 120612 diff --git a/project_a_output_progress/synthetic/doc_125_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_125_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e94496286304c5279a8dad611972fca524f521 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_125_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac5da10bde04a9d6eb183ebdd40158ccd2756c7b7d2ef860d9e3fab652b37c9 +size 250086 diff --git a/project_a_output_progress/synthetic/doc_126_cheque_continental_trust_genuine.png b/project_a_output_progress/synthetic/doc_126_cheque_continental_trust_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..062dd5f7123a4691220b51d60384e0ffb7f3c6cf --- /dev/null +++ b/project_a_output_progress/synthetic/doc_126_cheque_continental_trust_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3770c7677587ec5c6982bddb4e80de793d63a315e51740a64aa304145cc8e4 +size 89494 diff --git a/project_a_output_progress/synthetic/doc_127_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_127_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fb165bbb09f1199da9f14b2672d382454958ccd5 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_127_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca53d4ad9b09d7a6498a17d10c3d4e22d8b5e006cdd9519cb808ece7a61df08 +size 186447 diff --git a/project_a_output_progress/synthetic/doc_128_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_128_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..07f9d1781783bf2242257f2ddc63df4109d147b5 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_128_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8ba1a3475ed57cc21b25b3a2efb57d65184442541b606fdb7573180b8d0b3b +size 78053 diff --git a/project_a_output_progress/synthetic/doc_129_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_129_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..0bd414e8a3bafa8f997027391aa901c9a39c1f10 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_129_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd79dd765e1dbba8e0cd8a9d0e9755a30d7b59ae1d5d70673198d89d7858377 +size 192436 diff --git a/project_a_output_progress/synthetic/doc_130_cheque_continental_trust_genuine.png b/project_a_output_progress/synthetic/doc_130_cheque_continental_trust_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..b3ed6707041bb1ac0e11b3c8655f71526b4c8a44 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_130_cheque_continental_trust_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20adc63a664e9c3179364d4116994c909c84cb2b1267a99beba0f9ba4d7d8266 +size 76852 diff --git a/project_a_output_progress/synthetic/doc_131_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_131_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..5c393259d07dbc23b726f521076f6e01db9c7883 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_131_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817ed761d6ee739f6833802cbd7ee286dcc477e2844e59796e5ac385891371d6 +size 190608 diff --git a/project_a_output_progress/synthetic/doc_132_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_132_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..e6d6955bf32beff168c924f5144bfc744328c969 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_132_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94730a1e28bf26cd033bda181fe80ee4d5f9121915ce9bad60b13840eb27b68f +size 249989 diff --git a/project_a_output_progress/synthetic/doc_133_cheque_continental_trust_genuine.png b/project_a_output_progress/synthetic/doc_133_cheque_continental_trust_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..60706f3fd1b26109301eac02458cb0400863a97a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_133_cheque_continental_trust_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1684e4fc4c265a2206def74dde9e393463fe304a95f22c57dbde7d7f718d0a90 +size 74095 diff --git a/project_a_output_progress/synthetic/doc_134_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_134_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1958b37807d0e25ab57a19af9af61cb0009af91b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_134_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b02cebe5021d7d8dd6679cd6b80a4b08b0a868829579ba660bab8898ad2c36 +size 241924 diff --git a/project_a_output_progress/synthetic/doc_135_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_135_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..cde6678071f84b5d565015ee7b2ea24f42c5764c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_135_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126a9c7bc0a94f323dcfc2f93690231b391400df952aca909bf730233f8d8d04 +size 78879 diff --git a/project_a_output_progress/synthetic/doc_136_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_136_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..b241ab84624ba24a33432f90f4cdedd72e9e29af --- /dev/null +++ b/project_a_output_progress/synthetic/doc_136_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff4249d4a025b06fc34e1d38f7ebca9d0c6218b71b01587360b8e6710154a21 +size 253678 diff --git a/project_a_output_progress/synthetic/doc_137_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_137_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..3ae6cbda3853cf412b501a182884b47f12bb8115 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_137_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad49ec7226cd263777bda5e08b0e695ea7651ea34d6788b9ac429f6bc6537f9a +size 187942 diff --git a/project_a_output_progress/synthetic/doc_138_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_138_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..ef46b1b0b01232f5143f40ee15cd56c8344e08d3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_138_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f2e943d4336d08fba37a82d22fa0ac8d6fa89dc0351e2470f65f2d68696153 +size 153276 diff --git a/project_a_output_progress/synthetic/doc_139_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_139_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..33d2878dfdb27379950744707c81139fede89dee --- /dev/null +++ b/project_a_output_progress/synthetic/doc_139_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00ff70e633b45b74444a47060aca4400d4ac578045d0b44f59e11d048c3b5dc +size 83913 diff --git a/project_a_output_progress/synthetic/doc_140_chinese_business_registration_genuine.png b/project_a_output_progress/synthetic/doc_140_chinese_business_registration_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..7398990936b28deb5569db21727c3a79a1d097d0 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_140_chinese_business_registration_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7fb5ff9c5731324d24fef1e7e7ec97d328cbb56573a483be490b32aefbbeac +size 118589 diff --git a/project_a_output_progress/synthetic/doc_141_cheque_standard_clearing_genuine.png b/project_a_output_progress/synthetic/doc_141_cheque_standard_clearing_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..a3a7e941f3e5f7dfa9ceaf55ba343caa7f54823a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_141_cheque_standard_clearing_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53fe8dea96c93b79680b8f314ff3da7bcdbc2c7c1b02d2698a8635fdbe9ee0e +size 78151 diff --git a/project_a_output_progress/synthetic/doc_142_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_142_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0bd98e430ffcb32cd201e107f54e4162a7814f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_142_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50fb7bad27d3da1e1af09b9cd8405989f9a2888b5b3ab05ec097b9b96ac9429f +size 230554 diff --git a/project_a_output_progress/synthetic/doc_143_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_143_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..fe321e5b83fc046c85990f8fff514f391aedc0bc --- /dev/null +++ b/project_a_output_progress/synthetic/doc_143_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613c31fc8956e47480a78ba660661b5ecb784eaa3e44f2319bd4d75844d9ae8e +size 84338 diff --git a/project_a_output_progress/synthetic/doc_144_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_144_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..4ccd924b9726966d728bd3d8e8ce65b295647169 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_144_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e202dc1bcb38d5949d5672053519e1dad5ee4086a925ce5c03efebc71f5be9 +size 87558 diff --git a/project_a_output_progress/synthetic/doc_145_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_145_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..734f57bdfc9cf3c3c64150ad02d2d776dd51dbc1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_145_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e44159548d67160581e6015efdfac3d00ac18d05b71e2342552e2b5c20e471 +size 170066 diff --git a/project_a_output_progress/synthetic/doc_146_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_146_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..ce3daa3cf023eebf51e887be5c0e039693936924 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_146_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9b53d6b142d2beac9ee55f09d9edc67b3266e76c177b107c58f0f89e11dc32 +size 317034 diff --git a/project_a_output_progress/synthetic/doc_147_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_147_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..0eb4c84b1fbbbfca66eef6d6326ab090271833cf --- /dev/null +++ b/project_a_output_progress/synthetic/doc_147_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b6e523529767a3b2b78cb686d9ebda41078e82b3aed5cdd1367d550c990c2c +size 86296 diff --git a/project_a_output_progress/synthetic/doc_148_wealth_management_genuine.png b/project_a_output_progress/synthetic/doc_148_wealth_management_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..eecefb081e0f144a126dc9f07debefa7f5815144 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_148_wealth_management_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55fbc5834bb5b1a25fd1e5b7f871cd5f9d8736ad580efee22fec44e1ba245d78 +size 186789 diff --git a/project_a_output_progress/synthetic/doc_149_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_149_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8497450758422bb2ec6aa9046621425a8d9543 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_149_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6261eb0c716e26e2ac8a2bcf2768185bb2233dbb5c6befa8011d3ee9b23abc1 +size 244019 diff --git a/project_a_output_progress/synthetic/doc_150_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_150_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..59bd0f7f4a86872bdb95b4b4dbc094f9b4941967 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_150_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fbba08ec3e9fec790836186ed53d3bf2a7c271448cb4eb43f8d3806b702624 +size 180216 diff --git a/project_a_output_progress/synthetic/doc_151_tamil_public_service_genuine.png b/project_a_output_progress/synthetic/doc_151_tamil_public_service_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..fd5c7a1bddc9d8feb443472ddab3c2db2eb5fa98 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_151_tamil_public_service_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8a567d2f237baea59514cd3267dcf60d64c1b8f09445e8c64603080e13dee9 +size 324109 diff --git a/project_a_output_progress/synthetic/doc_152_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_152_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..82e1ada0986b0e71b3b6cf7075f8e5b783bb2e2c --- /dev/null +++ b/project_a_output_progress/synthetic/doc_152_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4e62413850eb6b9d0f04c460c5928ed6eee7f920ab5c3f3e5cd8632a350827 +size 220751 diff --git a/project_a_output_progress/synthetic/doc_153_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_153_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..351df4bc47eaddab95081c06ee423359b1e69a3d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_153_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175020b04258d6ce78ead391d2b76fda2ded1bec56f9c92c0cfcf34223ee864a +size 195283 diff --git a/project_a_output_progress/synthetic/doc_154_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_154_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..c910b8b3f8e058f5677e0f7c8a827dcad3918765 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_154_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88cff0b42b7d23dabd3f5703ccdd98d3478eb4284f687386bfdc1dbaf6beba9 +size 88577 diff --git a/project_a_output_progress/synthetic/doc_155_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_155_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..a785db5dd69d099d482afcb24d05ee5db3bb7813 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_155_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55cb7f1315dd2edf024cd99e440703d73dfd39d6af9b9fc2fe0c35cf59038775 +size 203374 diff --git a/project_a_output_progress/synthetic/doc_156_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_156_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d3501319007ffee64165a0731d641e5ce05cf3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_156_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7f7ce83cf9535ae03d7c50ac402d38e20e8756f0f74a858fe53efbe9dce27c +size 172991 diff --git a/project_a_output_progress/synthetic/doc_157_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_157_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..d98481d61784df90bf23a444feb03f342a4e406d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_157_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f33fa5712effe0e4959787cd01516a7557f97ab2fbbeee76bd375406d83e891 +size 244405 diff --git a/project_a_output_progress/synthetic/doc_158_tamil_public_service_forged.png b/project_a_output_progress/synthetic/doc_158_tamil_public_service_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf5009578439bf1167e487599c4b3b11c1968e1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_158_tamil_public_service_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e636e8272a0405408ccb5c86919bf287c38fd62ee086d63d3929950528d325c +size 318419 diff --git a/project_a_output_progress/synthetic/doc_159_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_159_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..529bab3000a1a58be3a1e671abf51d0c6fd6b19b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_159_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f7d1ff6bc2570cbfe851f1113f80385c90fd2c2970fbc97d88b5eb390a8826 +size 236831 diff --git a/project_a_output_progress/synthetic/doc_160_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_160_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..dae13d7655a809ecb667b03d2efd4ce460d40b17 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_160_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707fd7ea2c88bee6c8a3d363f9ce5f26dab22cc38017f8169eae919dcec39fe2 +size 82591 diff --git a/project_a_output_progress/synthetic/doc_161_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_161_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..098e3b5cf24bf703fad5cda921f66a8a8687a6be --- /dev/null +++ b/project_a_output_progress/synthetic/doc_161_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a811c2a8c58e0ffc277adef466927af67bc51b975fd8d674f9a5bd6441a8ea +size 93874 diff --git a/project_a_output_progress/synthetic/doc_162_board_resolution_genuine.png b/project_a_output_progress/synthetic/doc_162_board_resolution_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac9fc1ce9266a2d8dbdf1a929dd85c93a479aea --- /dev/null +++ b/project_a_output_progress/synthetic/doc_162_board_resolution_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3841fae22ee8ba426d6711effbc9651656d7b5fb52c2f20f4483776290557e8 +size 182284 diff --git a/project_a_output_progress/synthetic/doc_163_board_resolution_forged.png b/project_a_output_progress/synthetic/doc_163_board_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3e4bcfb0a3717c20eaecf2478ab2c13f52fca1 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_163_board_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e2e4cd5bed15e0a2574b989bb0277330afb526f302e2f61a6927cd40d4de5d +size 180265 diff --git a/project_a_output_progress/synthetic/doc_164_tamil_public_service_forged.png b/project_a_output_progress/synthetic/doc_164_tamil_public_service_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..806fc9903c1fd6ae7391fc8e721e44a1d83a0b36 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_164_tamil_public_service_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794701c6fb9555bb6c24f38aa34ab9287ad60d7a84f823a684e07c459dc41b87 +size 319042 diff --git a/project_a_output_progress/synthetic/doc_165_banking_authorization_genuine.png b/project_a_output_progress/synthetic/doc_165_banking_authorization_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..843592b500f4896859325cc7a119582408fa2eaf --- /dev/null +++ b/project_a_output_progress/synthetic/doc_165_banking_authorization_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ce162914b990a8f08dbd4501ba37cfad267b5bee3b9d5d00834dca215624be +size 196902 diff --git a/project_a_output_progress/synthetic/doc_166_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_166_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb909b383d3447ad28214f7e9daf66c4cc95c00 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_166_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584f46aa207280ee8efd0fc701ddb415b1940c9292e7b5344f5c23abd5a0586b +size 156459 diff --git a/project_a_output_progress/synthetic/doc_167_bank_account_opening_genuine.png b/project_a_output_progress/synthetic/doc_167_bank_account_opening_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..8a662d990781ce0489302bd76f95dbafc3963e6f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_167_bank_account_opening_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7462c4738e8597f2c8a410fd65ab9b099fcaca93ec0b62599b09ee68171c301 +size 249852 diff --git a/project_a_output_progress/synthetic/doc_168_tamil_residence_assessment_genuine.png b/project_a_output_progress/synthetic/doc_168_tamil_residence_assessment_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..1d7ceeed9331c3c7712b41afca4d4c9e11497228 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_168_tamil_residence_assessment_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ce8137b03e82aaa82192cbb69963c68adf40a1c70e5b88fa72fe5d850645c8 +size 255263 diff --git a/project_a_output_progress/synthetic/doc_169_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_169_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..49670f3d0cfbc9da5345bc7fd1f6b04a7a71b22e --- /dev/null +++ b/project_a_output_progress/synthetic/doc_169_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c19d360e866a27364150a98e3201db36cf5a7f2e5b8e1b28499f737c4e5d9b4 +size 185649 diff --git a/project_a_output_progress/synthetic/doc_170_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_170_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..232e88d592285ff2b9fa9edf45453e3d98edcd61 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_170_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87dc6dc74d0dbbf260701107b991ee68051ba8fb2b30cee61134b18abf7af7bb +size 205580 diff --git a/project_a_output_progress/synthetic/doc_171_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_171_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..7790dca0fb7d3b9fe6083e57607af676b0d5dfeb --- /dev/null +++ b/project_a_output_progress/synthetic/doc_171_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b159c64695e783ac96d1b12a7d1d27f3b1ca9595e8c732a4c0d68292e745ca +size 219378 diff --git a/project_a_output_progress/synthetic/doc_172_cheque_continental_trust_forged.png b/project_a_output_progress/synthetic/doc_172_cheque_continental_trust_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..c3a88dd9070697e80ce3eeb6dbebf09aef0f0701 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_172_cheque_continental_trust_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75635b9b6f5a3862d08b686693ceb0d2d2fbbf4a9013edbf11b73d916924593 +size 78737 diff --git a/project_a_output_progress/synthetic/doc_173_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_173_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..edef93c98ffac6b909b1efd08bbd613231b12803 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_173_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f99ae6d534619bbb33dc378f5ea22a22ffb69130478b9fa29727685baec3f6 +size 76171 diff --git a/project_a_output_progress/synthetic/doc_174_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_174_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..5562db0dfef28de2b858046b2c8048b1dc5d94d8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_174_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3d15f2e6cf6798d3b9241aa5376520261485d1437ae1cde9f6adf67d42d63c +size 254409 diff --git a/project_a_output_progress/synthetic/doc_175_tamil_residence_assessment_genuine.png b/project_a_output_progress/synthetic/doc_175_tamil_residence_assessment_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..baf9260d4a31abbebc387d74a96e4b8ddacec01e --- /dev/null +++ b/project_a_output_progress/synthetic/doc_175_tamil_residence_assessment_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c569995a6486a49528a0c161399f78d08c12aba4b0206894cc4cf9e799aae82a +size 256233 diff --git a/project_a_output_progress/synthetic/doc_176_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_176_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..02b5e19052e8d72ba966f9f96d099ed28ee204c2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_176_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711c2d2e9466cfb5e92775be5d92960e6d691e154dcd56cd1779f2cb56c54b71 +size 179626 diff --git a/project_a_output_progress/synthetic/doc_177_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_177_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2a017f2eff17d550e36aa8100bd1b3e27331bb --- /dev/null +++ b/project_a_output_progress/synthetic/doc_177_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28831f3102825d7e2a9825f6f600035795376d8ce581266f25a968ae0f5dcbb3 +size 200119 diff --git a/project_a_output_progress/synthetic/doc_178_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_178_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..a7c7aec1ee9ebabf9a8d5c648baf59b08ff4bc7a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_178_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7782289c87fb57bbe73c3685d980ccf4850810b813b9c876c6f87c4d2be3eaea +size 204033 diff --git a/project_a_output_progress/synthetic/doc_179_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_179_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..2157e57597084122f193b1da697dff825443418b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_179_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b031566795d216c126823a1dd65505672394036057b5e72e835f2d1a3b878e +size 252433 diff --git a/project_a_output_progress/synthetic/doc_180_bank_account_opening_forged.png b/project_a_output_progress/synthetic/doc_180_bank_account_opening_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..45910fa657504f030e2280e7a6d2d6f135f7d2cc --- /dev/null +++ b/project_a_output_progress/synthetic/doc_180_bank_account_opening_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b4faefc9debdc1e1918430c4448a36703e1bf7c3258a17b33a040a263a98d4 +size 261354 diff --git a/project_a_output_progress/synthetic/doc_181_tamil_residence_assessment_genuine.png b/project_a_output_progress/synthetic/doc_181_tamil_residence_assessment_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..dacddcd8af03db19db3720ac41740decf88a3be2 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_181_tamil_residence_assessment_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb51538d486ea8033e06a0878b6f8fb8a23b1e8f7e656dc2e3b4200d50ea0c6 +size 257665 diff --git a/project_a_output_progress/synthetic/doc_182_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_182_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..ce20ec376b0ccccb2e2096b1d345418d3af98cb6 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_182_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b666be64191e268a4883e9f48227c87743659f151da57228e1489cafcf61ffb0 +size 156939 diff --git a/project_a_output_progress/synthetic/doc_183_cheque_global_merchant_genuine.png b/project_a_output_progress/synthetic/doc_183_cheque_global_merchant_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..2a65b6a254d6a9b25a7e7ee2a1c268e65eb287f8 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_183_cheque_global_merchant_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc86cca5437fbd0732ba929430261f56e8b2ad47da530187fb88f3318b44f2f +size 86326 diff --git a/project_a_output_progress/synthetic/doc_184_chinese_service_application_genuine.png b/project_a_output_progress/synthetic/doc_184_chinese_service_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..17c1564e66a1efbc068946017afaceb7e8fd6653 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_184_chinese_service_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fda78a9ea8a09dc8f5d9f5bcb3dcf3dc05672f735f22d877e005732d638634 +size 189664 diff --git a/project_a_output_progress/synthetic/doc_185_tamil_trade_license_genuine.png b/project_a_output_progress/synthetic/doc_185_tamil_trade_license_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5d77cd3f8452979347328456736a53ad770003 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_185_tamil_trade_license_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c075b97c8b442d3d477c60c336e125843004be7ed24b47a3b1648b10740d3e34 +size 245511 diff --git a/project_a_output_progress/synthetic/doc_186_chinese_service_application_forged.png b/project_a_output_progress/synthetic/doc_186_chinese_service_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..28483e71f484538704ba19cc569acabfb3eb359d --- /dev/null +++ b/project_a_output_progress/synthetic/doc_186_chinese_service_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7887b7effd6d05543164e76bfcfd349a24289ec13ff5d0fbec82a4413e4c4f +size 194269 diff --git a/project_a_output_progress/synthetic/doc_187_cheque_global_merchant_forged.png b/project_a_output_progress/synthetic/doc_187_cheque_global_merchant_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..5fe18bc6d5d00f7172f9589c4fba8929df2698e3 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_187_cheque_global_merchant_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b0079539d2e316d5955e812d5f28f061cb441a7fe74dd983f06514ca4c5f6e +size 84127 diff --git a/project_a_output_progress/synthetic/doc_188_wealth_management_forged.png b/project_a_output_progress/synthetic/doc_188_wealth_management_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..c94e0e2d36ef449f348e46b7099c6319cd354f63 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_188_wealth_management_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698adb80a8b31d4775fdcb9fe46017df3a31aee3059cfe95d0354b605c3c0866 +size 178758 diff --git a/project_a_output_progress/synthetic/doc_189_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_189_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c4923c112906c3c45045bc7aba563b507050cd --- /dev/null +++ b/project_a_output_progress/synthetic/doc_189_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6345e98f3c2d7788bd97e5f8a781d72aa2b37357cfb1895af9c36a5eedd6340c +size 227814 diff --git a/project_a_output_progress/synthetic/doc_190_shareholder_resolution_forged.png b/project_a_output_progress/synthetic/doc_190_shareholder_resolution_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..61f4aea1e9dede487d894e64c97adf8e72096d1a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_190_shareholder_resolution_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862081a86361d30df3dc0b1ee262f345f56e197dad1f94725cf819ba75f50d9b +size 174206 diff --git a/project_a_output_progress/synthetic/doc_191_corporate_account_application_forged.png b/project_a_output_progress/synthetic/doc_191_corporate_account_application_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..50559f044334e95950d6f59ffc357a1185b1f17f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_191_corporate_account_application_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56f86c6d64b84ab93ca24e9190da65cb3b5e3f21877cb394967b4e12f2bb05c +size 219085 diff --git a/project_a_output_progress/synthetic/doc_192_tamil_public_service_forged.png b/project_a_output_progress/synthetic/doc_192_tamil_public_service_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..9655291639737a630ed193cfc5acbfcbcec396dd --- /dev/null +++ b/project_a_output_progress/synthetic/doc_192_tamil_public_service_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4335954141d6cf9a473bff397d878ac84b5ef95fd4c1671c0466f1be7abbdfef +size 329268 diff --git a/project_a_output_progress/synthetic/doc_193_board_resolution_genuine.png b/project_a_output_progress/synthetic/doc_193_board_resolution_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..bc190b07b813675a09173196c56f9d23f26a0f9a --- /dev/null +++ b/project_a_output_progress/synthetic/doc_193_board_resolution_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809e09e96ad011adb37d5d8e4d5e253250268e29a5d861016f1e9a8884d6feb6 +size 175092 diff --git a/project_a_output_progress/synthetic/doc_194_cheque_standard_clearing_forged.png b/project_a_output_progress/synthetic/doc_194_cheque_standard_clearing_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..460bf71df484350f35629fee394ca3852ba0a6d6 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_194_cheque_standard_clearing_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f050a2618729a720b1c86334fc175c93ce18b1d067741c5a4d72f05aa639843 +size 76559 diff --git a/project_a_output_progress/synthetic/doc_195_tamil_trade_license_genuine.png b/project_a_output_progress/synthetic/doc_195_tamil_trade_license_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..b2800e350e472ab52e88fbb8bd4a2de945bbe50f --- /dev/null +++ b/project_a_output_progress/synthetic/doc_195_tamil_trade_license_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402be28166eb2dc65abc0dd5e8f9f232611cc17949c4194ada24c9f56ac25af5 +size 257090 diff --git a/project_a_output_progress/synthetic/doc_196_banking_authorization_forged.png b/project_a_output_progress/synthetic/doc_196_banking_authorization_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..8cd1ab65e74f2277e680be29be4c1427ae3c3b56 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_196_banking_authorization_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae44f2c3a310fddca207c1f375a6a97dfb53cdf9cddf90f4362ebe9bca991e1 +size 228257 diff --git a/project_a_output_progress/synthetic/doc_197_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_197_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..5d531bb5b7eade202a3dd1f071459bc263a65380 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_197_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11b1e3628f1e425794241b0ffd471f1f1eaa5645e06a43738f6072690da957c +size 246596 diff --git a/project_a_output_progress/synthetic/doc_198_tamil_residence_assessment_forged.png b/project_a_output_progress/synthetic/doc_198_tamil_residence_assessment_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..97cb8b3f3c5a37ad93b669aba878d8df62e98a44 --- /dev/null +++ b/project_a_output_progress/synthetic/doc_198_tamil_residence_assessment_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0060769ace605574b139e63ec0e71536d6afdab8facff48103c33056ab7ec843 +size 254491 diff --git a/project_a_output_progress/synthetic/doc_199_chinese_employee_application_genuine.png b/project_a_output_progress/synthetic/doc_199_chinese_employee_application_genuine.png new file mode 100644 index 0000000000000000000000000000000000000000..01a35a30e2cc7434f4047730e58b4eb7ac45a0bc --- /dev/null +++ b/project_a_output_progress/synthetic/doc_199_chinese_employee_application_genuine.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94f7f4478ba90263a0523588f858f96c560fe123104a4dfce9e056a19bc022c +size 151571 diff --git a/project_a_output_progress/synthetic/doc_200_tamil_trade_license_forged.png b/project_a_output_progress/synthetic/doc_200_tamil_trade_license_forged.png new file mode 100644 index 0000000000000000000000000000000000000000..fb6fe241a07a89831470a0112b237bc1399ffb3b --- /dev/null +++ b/project_a_output_progress/synthetic/doc_200_tamil_trade_license_forged.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d5fa63bd023cc993207c0aa41cb7edf73e8f070c4f4bf31ddf733259ed449c +size 248329 diff --git a/project_a_output_progress/templates/bank_account_opening.png b/project_a_output_progress/templates/bank_account_opening.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7a8c8fcd320d4bf8555c4b07d2596c5261b821 --- /dev/null +++ b/project_a_output_progress/templates/bank_account_opening.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373629de504735546d1b48f8bf7ab57beff20c68c3660ee61e007f5165889372 +size 150088 diff --git a/project_a_output_progress/templates/banking_authorization.png b/project_a_output_progress/templates/banking_authorization.png new file mode 100644 index 0000000000000000000000000000000000000000..cd8b43f314550d34a0cbaee76ee238e8d51fabb8 --- /dev/null +++ b/project_a_output_progress/templates/banking_authorization.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a37c8110f666e17bf0630c0499575845bde3b3972e12fb1ecb07ce141c6566 +size 120299 diff --git a/project_a_output_progress/templates/board_resolution.png b/project_a_output_progress/templates/board_resolution.png new file mode 100644 index 0000000000000000000000000000000000000000..f69b38d40b37b2f64718b0bddae57d57a939f80d --- /dev/null +++ b/project_a_output_progress/templates/board_resolution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e26f1bd162fe8da393dcf9a407698fca49c0bf4dd7564f99034e75c4c994eb +size 102344 diff --git a/project_a_output_progress/templates/cheque_continental_trust.png b/project_a_output_progress/templates/cheque_continental_trust.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6dfedeafd6260c8d7c7469b42e137324f84f02 --- /dev/null +++ b/project_a_output_progress/templates/cheque_continental_trust.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023c3e7a5137f5538cc232afa5723ad79bd9850e8ae2c66528108c44b69c574a +size 51773 diff --git a/project_a_output_progress/templates/cheque_global_merchant.png b/project_a_output_progress/templates/cheque_global_merchant.png new file mode 100644 index 0000000000000000000000000000000000000000..1197e2b0cbc10bfb8eb7e7c2afade13bf5d8b008 --- /dev/null +++ b/project_a_output_progress/templates/cheque_global_merchant.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32de57a9555797368f85efbe350c842a6b6c39575b6329260c3374484346496e +size 56492 diff --git a/project_a_output_progress/templates/cheque_standard_clearing.png b/project_a_output_progress/templates/cheque_standard_clearing.png new file mode 100644 index 0000000000000000000000000000000000000000..9e37974436524179203a103e6d49373c8553a1a6 --- /dev/null +++ b/project_a_output_progress/templates/cheque_standard_clearing.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035ab6ca4ef3841804ebef05b920def11cc85319245767a8c7274cc184c326e7 +size 52520 diff --git a/project_a_output_progress/templates/chinese_business_registration.png b/project_a_output_progress/templates/chinese_business_registration.png new file mode 100644 index 0000000000000000000000000000000000000000..7d933a269cbc65fa89bf76dd0c18294bb5f353ad --- /dev/null +++ b/project_a_output_progress/templates/chinese_business_registration.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c15a7e78ef85856514d8dc720ed7f20466cfa8c4412baf559f16783c341d86f6 +size 85064 diff --git a/project_a_output_progress/templates/chinese_employee_application.png b/project_a_output_progress/templates/chinese_employee_application.png new file mode 100644 index 0000000000000000000000000000000000000000..7ab95028fb802517a13d2b422e5640fe393741e2 --- /dev/null +++ b/project_a_output_progress/templates/chinese_employee_application.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1038a2601a31669482b2a97751af818d3c91c656bf1a160eaa27db445dff4d3f +size 110234 diff --git a/project_a_output_progress/templates/chinese_service_application.png b/project_a_output_progress/templates/chinese_service_application.png new file mode 100644 index 0000000000000000000000000000000000000000..c052f59e01277be884b3953e9a42174817e7a50f --- /dev/null +++ b/project_a_output_progress/templates/chinese_service_application.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb8b4609013e6ef1a378f667a5b45995d9e2b5b5e17924aaa61fd45038c700ed +size 141536 diff --git a/project_a_output_progress/templates/corporate_account_application.png b/project_a_output_progress/templates/corporate_account_application.png new file mode 100644 index 0000000000000000000000000000000000000000..f20ea31dfc0e3444de75d628b8e010f28cfeb554 --- /dev/null +++ b/project_a_output_progress/templates/corporate_account_application.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cfc892f038834297fc051c13f02645f083b7de45a5087a5ef85fdb9f10b1a7 +size 148348 diff --git a/project_a_output_progress/templates/shareholder_resolution.png b/project_a_output_progress/templates/shareholder_resolution.png new file mode 100644 index 0000000000000000000000000000000000000000..7db78fbe8d3e28c5bbcd03e4f7c89bc9937985db --- /dev/null +++ b/project_a_output_progress/templates/shareholder_resolution.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2fe632e92b61a71b2defc0a299d6841d3247d0a6d63d96d0b93b1e23c3166c +size 104237 diff --git a/project_a_output_progress/templates/tamil_public_service.png b/project_a_output_progress/templates/tamil_public_service.png new file mode 100644 index 0000000000000000000000000000000000000000..467303453fe2ac6407a912ece0250ba6741b3057 --- /dev/null +++ b/project_a_output_progress/templates/tamil_public_service.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1070f88fd74c403bc14c622780538f16945684250f443e16a7ba4f208ab7d01 +size 225750 diff --git a/project_a_output_progress/templates/tamil_residence_assessment.png b/project_a_output_progress/templates/tamil_residence_assessment.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8d7b8a2f303e5826e65caad0262a5011c5b792 --- /dev/null +++ b/project_a_output_progress/templates/tamil_residence_assessment.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64746ed1cd18b31d128ad29700a9c202eb3840d9ab6370105d18e71c4f1be648 +size 173717 diff --git a/project_a_output_progress/templates/tamil_trade_license.png b/project_a_output_progress/templates/tamil_trade_license.png new file mode 100644 index 0000000000000000000000000000000000000000..b963dc162dd40cca5ba7a302067115cb06041088 --- /dev/null +++ b/project_a_output_progress/templates/tamil_trade_license.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053c3fe2c1ce328bebccc80ce6e7ec443567aeff40e972065b953805373060ac +size 153407 diff --git a/project_a_output_progress/templates/wealth_management.png b/project_a_output_progress/templates/wealth_management.png new file mode 100644 index 0000000000000000000000000000000000000000..315e1d5708da5e5974fb7f15df4e2d8a31a65465 --- /dev/null +++ b/project_a_output_progress/templates/wealth_management.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035a69cb369bf660f9026ee669e8d4ffcea537e7b142974c04ab8f33f1fab0af +size 108522 diff --git a/project_a_output_progress/test_cases/case_001/document.png b/project_a_output_progress/test_cases/case_001/document.png new file mode 100644 index 0000000000000000000000000000000000000000..889b24b299d4bd15cccbc6790c4e37aaa0249003 --- /dev/null +++ b/project_a_output_progress/test_cases/case_001/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a401dd8a02ccf106ca9011e674522c524efdbf14362f2c2152c5cc3728b63abd +size 255639 diff --git a/project_a_output_progress/test_cases/case_001/ground_truth.json b/project_a_output_progress/test_cases/case_001/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..53f4b0a9ca84f2047c56f97c614f2911ef02e6b4 --- /dev/null +++ b/project_a_output_progress/test_cases/case_001/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_001", + "type": "PASS", + "document_type": "bank_account_opening", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "David Chen", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "David Chen", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "David Chen", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_001/reference_1.png b/project_a_output_progress/test_cases/case_001/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f7025eafc1abab9395974a28bc340dbb33876 --- /dev/null +++ b/project_a_output_progress/test_cases/case_001/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92ff183e93f2ec946d9a73e755853407533e5c28f014f2a9b0b8eed5728276 +size 142323 diff --git a/project_a_output_progress/test_cases/case_001/reference_2.png b/project_a_output_progress/test_cases/case_001/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7473333f78c98320252651e9c06fb66f16d6570d --- /dev/null +++ b/project_a_output_progress/test_cases/case_001/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0316cf06a7f4f333d2339897998467695bdabee0c12b0d8cd8ab132236bc5e +size 123944 diff --git a/project_a_output_progress/test_cases/case_001/reference_3.png b/project_a_output_progress/test_cases/case_001/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a272e5607184c2d84d35362b0a89af07fef4529d --- /dev/null +++ b/project_a_output_progress/test_cases/case_001/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27452e76c97a9b5bcd78db4fb80a0bfd7f3e0b9f47dbdc2ffc20084f346db9c +size 120370 diff --git a/project_a_output_progress/test_cases/case_002/document.png b/project_a_output_progress/test_cases/case_002/document.png new file mode 100644 index 0000000000000000000000000000000000000000..cc13ab7801647d5b5e95a68ff3b24022f912a904 --- /dev/null +++ b/project_a_output_progress/test_cases/case_002/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395a64cb9403b8f657544dc55c41a258b1babb99d165e085624a0eb0b4c95c53 +size 246366 diff --git a/project_a_output_progress/test_cases/case_002/ground_truth.json b/project_a_output_progress/test_cases/case_002/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..a770c1d5e00c24fc1ff352a07f3071e41dc419f0 --- /dev/null +++ b/project_a_output_progress/test_cases/case_002/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_002", + "type": "PASS", + "document_type": "tamil_trade_license", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Bob Lim", + "role": "officer", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "Bob Lim", + "status": "filled" + }, + { + "role": "licensing_officer", + "signed_by": "Bob Lim", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_002/reference_1.png b/project_a_output_progress/test_cases/case_002/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089695c84da82aa86220b4addf7c816f9fec57b --- /dev/null +++ b/project_a_output_progress/test_cases/case_002/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeffed978059f4f038dac50d3147dddd43c07f2e874628d3c74dc8aa3ff8026e +size 53486 diff --git a/project_a_output_progress/test_cases/case_002/reference_2.png b/project_a_output_progress/test_cases/case_002/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d7f2bd400b72d81a70be1ce4df13946fd864e --- /dev/null +++ b/project_a_output_progress/test_cases/case_002/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c513990020a7ffb5337263f5fcb8d3a6f94ff679afc1482fc57ff2bc9428db7 +size 38858 diff --git a/project_a_output_progress/test_cases/case_002/reference_3.png b/project_a_output_progress/test_cases/case_002/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac22fc748524741d48960ad5d85ba2ae301049d7 --- /dev/null +++ b/project_a_output_progress/test_cases/case_002/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20a0eba54a3236d10e4b7e66123d6e8b8948c2e5125e8b9e8c2f436c4d83cf +size 52456 diff --git a/project_a_output_progress/test_cases/case_003/document.png b/project_a_output_progress/test_cases/case_003/document.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9c9a1d31829f1ba7f8b5e816cc6bbfbc52ee09 --- /dev/null +++ b/project_a_output_progress/test_cases/case_003/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88cc6dd9abe299f1cc748e9ba91123f1f55616fea7a802c77da45abd6a34a6e +size 203849 diff --git a/project_a_output_progress/test_cases/case_003/ground_truth.json b/project_a_output_progress/test_cases/case_003/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..9ce50191b8581843b21b9bc452247374f4b7f342 --- /dev/null +++ b/project_a_output_progress/test_cases/case_003/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_003", + "type": "PASS", + "document_type": "shareholder_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Alice Tan", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "Alice Tan", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": "Alice Tan", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_003/reference_1.png b/project_a_output_progress/test_cases/case_003/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4f7ee59f24067fdfc1c8ca8c5a110284f5cac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_003/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b115e61d94324efa2d536edb5ed8f257e3ebcf8e8a348e0093cb21d86b932c31 +size 101272 diff --git a/project_a_output_progress/test_cases/case_003/reference_2.png b/project_a_output_progress/test_cases/case_003/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2b566b3c7463e42fe71f546d92bd0f5568248b --- /dev/null +++ b/project_a_output_progress/test_cases/case_003/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1016a61701bbf1ff01064554387d69a325cd07b6f7b089708ea5edb1970e73 +size 83209 diff --git a/project_a_output_progress/test_cases/case_003/reference_3.png b/project_a_output_progress/test_cases/case_003/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b633a1b22a838cd10dbde50fad6f64aa4cda3f9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_003/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc00daa73c4e0c7f0a81bba1707e97b9399df9f9ebb827fd2492dbfc7ce77c4 +size 67937 diff --git a/project_a_output_progress/test_cases/case_004/document.png b/project_a_output_progress/test_cases/case_004/document.png new file mode 100644 index 0000000000000000000000000000000000000000..3405b1b39001c892cdd78156fa4b228a25c6832b --- /dev/null +++ b/project_a_output_progress/test_cases/case_004/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237289364dd9c4b161cf2aa4d61610cb86e5f4a24523c915753f425ed237ff1a +size 106341 diff --git a/project_a_output_progress/test_cases/case_004/ground_truth.json b/project_a_output_progress/test_cases/case_004/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..088450a50569cb90229e3c6b2d874f3400892794 --- /dev/null +++ b/project_a_output_progress/test_cases/case_004/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_004", + "type": "PASS", + "document_type": "shareholder_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Carol Wong", + "role": "majority_shareholder", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "Carol Wong", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": "Carol Wong", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_005/document.png b/project_a_output_progress/test_cases/case_005/document.png new file mode 100644 index 0000000000000000000000000000000000000000..34fcce5a8cf3ca3ab33a45174024264dc2f54b90 --- /dev/null +++ b/project_a_output_progress/test_cases/case_005/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe4b2672c7b48fe65e1cf83d9adcae6301e2a6083e166e75a1b963f59ac3f23 +size 181451 diff --git a/project_a_output_progress/test_cases/case_005/ground_truth.json b/project_a_output_progress/test_cases/case_005/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..4699e3ba124878b813d19cddd874a3bd37e24744 --- /dev/null +++ b/project_a_output_progress/test_cases/case_005/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_005", + "type": "PASS", + "document_type": "shareholder_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Grace Lee", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "Grace Lee", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": "Grace Lee", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_005/reference_1.png b/project_a_output_progress/test_cases/case_005/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7291cc73a608eb10a3bc41e87ab7bdc88b13ac4e --- /dev/null +++ b/project_a_output_progress/test_cases/case_005/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ce2f5b02b1e8142d2ca6eaa2daf02e703983a8bcebafaf9a9f2e485f62fa +size 143735 diff --git a/project_a_output_progress/test_cases/case_005/reference_2.png b/project_a_output_progress/test_cases/case_005/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9171728f32e6e6a0ca3d443b21b211d8971fafe2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_005/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1494f5cf117ea500d625850462118a8eb9567e341fa38aad9f3925ec411be7 +size 135116 diff --git a/project_a_output_progress/test_cases/case_005/reference_3.png b/project_a_output_progress/test_cases/case_005/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a69512cf2c5fdb36641c6cb673ee961377ab5b6 --- /dev/null +++ b/project_a_output_progress/test_cases/case_005/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbc1a593e3795d531d01de284d02221b71ecdbcf7417763d5b27240b01169d +size 102333 diff --git a/project_a_output_progress/test_cases/case_006/document.png b/project_a_output_progress/test_cases/case_006/document.png new file mode 100644 index 0000000000000000000000000000000000000000..46e1cdb48a4215d646a55dbb6deabb9d5815131d --- /dev/null +++ b/project_a_output_progress/test_cases/case_006/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a0bc386752d10a5a16e12a72e592c7ffa4da875d1ce440fdc8a1b3265686c06 +size 247531 diff --git a/project_a_output_progress/test_cases/case_006/ground_truth.json b/project_a_output_progress/test_cases/case_006/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..4e26ef990612ca23e2181196da90361fce9fe491 --- /dev/null +++ b/project_a_output_progress/test_cases/case_006/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_006", + "type": "PASS", + "document_type": "tamil_trade_license", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "John Doe", + "status": "filled" + }, + { + "role": "licensing_officer", + "signed_by": "John Doe", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_006/reference_1.png b/project_a_output_progress/test_cases/case_006/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f277476ed65a5b3afb8936eb89e9b449b378781 --- /dev/null +++ b/project_a_output_progress/test_cases/case_006/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec07c2f9d2c1d4b018ee5d662f7a92724d435a3674559f0d26864c9d14abb0 +size 155932 diff --git a/project_a_output_progress/test_cases/case_006/reference_2.png b/project_a_output_progress/test_cases/case_006/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3880f5f40b1989d7ce9765db73723328b97b1501 --- /dev/null +++ b/project_a_output_progress/test_cases/case_006/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77261e6eadbc754c81658b5a0714831883c42eec26c3a983ddcea993cce13fb +size 146949 diff --git a/project_a_output_progress/test_cases/case_006/reference_3.png b/project_a_output_progress/test_cases/case_006/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eedcaf3ac150eefa7bce2424f4d0ebda0708e792 --- /dev/null +++ b/project_a_output_progress/test_cases/case_006/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc958bdccbcb1f0f9fe463b0e941b7e08d25ea9f2f32a856a8bf2e2b05567d92 +size 154309 diff --git a/project_a_output_progress/test_cases/case_007/document.png b/project_a_output_progress/test_cases/case_007/document.png new file mode 100644 index 0000000000000000000000000000000000000000..16723c6da2408812b459dc32f88655e2133de63a --- /dev/null +++ b/project_a_output_progress/test_cases/case_007/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ab9b1fa42367a6c922b9be3853fc2e8522a09bbefdd9087a219c1d60490fd6 +size 255746 diff --git a/project_a_output_progress/test_cases/case_007/ground_truth.json b/project_a_output_progress/test_cases/case_007/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..ecae8acae21ac777fe802b874fe2078cfb8c37a2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_007/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_007", + "type": "PASS", + "document_type": "bank_account_opening", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Jane Smith", + "role": "secretary", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Jane Smith", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "Jane Smith", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_007/reference_1.png b/project_a_output_progress/test_cases/case_007/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9d23ed7e10bea3b10a8897412eadb1af0369f --- /dev/null +++ b/project_a_output_progress/test_cases/case_007/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcc102011c3d37ebfd7867a4d8f0d82dd28503c160e054acec518e9540c5b51 +size 64989 diff --git a/project_a_output_progress/test_cases/case_007/reference_2.png b/project_a_output_progress/test_cases/case_007/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..37d85fb8b9dba12985498b076ee957a4673f225b --- /dev/null +++ b/project_a_output_progress/test_cases/case_007/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f72dec46027a202ac0f6fca028d06f45224b27150b3eb1723276449d841685 +size 52525 diff --git a/project_a_output_progress/test_cases/case_007/reference_3.png b/project_a_output_progress/test_cases/case_007/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6569c333de6e3c36de11f1f98185e7251b7e3097 --- /dev/null +++ b/project_a_output_progress/test_cases/case_007/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bf5b03899d49411191a1858f3504a67a5bb6a379a3d38b536a4133fe5a8031 +size 49994 diff --git a/project_a_output_progress/test_cases/case_008/document.png b/project_a_output_progress/test_cases/case_008/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_008/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_008/ground_truth.json b/project_a_output_progress/test_cases/case_008/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..67b397faa8edbb801df7ece1400226c9f6e55715 --- /dev/null +++ b/project_a_output_progress/test_cases/case_008/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_008", + "type": "PASS", + "document_type": "tamil_trade_license", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Frank Ng", + "role": "scrutineer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "Frank Ng", + "status": "filled" + }, + { + "role": "licensing_officer", + "signed_by": "Frank Ng", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_009/document.png b/project_a_output_progress/test_cases/case_009/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_009/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_009/ground_truth.json b/project_a_output_progress/test_cases/case_009/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..24abdeff7f86369e0fdc6f547ac523a948ea5ea8 --- /dev/null +++ b/project_a_output_progress/test_cases/case_009/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_009", + "type": "PASS", + "document_type": "tamil_trade_license", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Henry Ooi", + "role": "officer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "Henry Ooi", + "status": "filled" + }, + { + "role": "licensing_officer", + "signed_by": "Henry Ooi", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_010/document.png b/project_a_output_progress/test_cases/case_010/document.png new file mode 100644 index 0000000000000000000000000000000000000000..3405b1b39001c892cdd78156fa4b228a25c6832b --- /dev/null +++ b/project_a_output_progress/test_cases/case_010/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237289364dd9c4b161cf2aa4d61610cb86e5f4a24523c915753f425ed237ff1a +size 106341 diff --git a/project_a_output_progress/test_cases/case_010/ground_truth.json b/project_a_output_progress/test_cases/case_010/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..9b3d9fdf6f0c30c6eca55ab8be3de129d15e27cb --- /dev/null +++ b/project_a_output_progress/test_cases/case_010/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_010", + "type": "PASS", + "document_type": "shareholder_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Emily Raj", + "role": "legal_representative", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "Emily Raj", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": "Emily Raj", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_011/document.png b/project_a_output_progress/test_cases/case_011/document.png new file mode 100644 index 0000000000000000000000000000000000000000..5be987b896f28a9ec44876b025aee8f929697e5c --- /dev/null +++ b/project_a_output_progress/test_cases/case_011/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fdba169c9660009af07b2dc9edcd551281b82905de210cd496398f47816e0f +size 198947 diff --git a/project_a_output_progress/test_cases/case_011/ground_truth.json b/project_a_output_progress/test_cases/case_011/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..56d730cf45881c8bab6f502e6f1abdf0a0b60ed5 --- /dev/null +++ b/project_a_output_progress/test_cases/case_011/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_011", + "type": "PASS", + "document_type": "board_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "David Chen", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "David Chen", + "status": "filled" + }, + { + "role": "director_2", + "signed_by": "David Chen", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_011/reference_1.png b/project_a_output_progress/test_cases/case_011/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f7025eafc1abab9395974a28bc340dbb33876 --- /dev/null +++ b/project_a_output_progress/test_cases/case_011/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92ff183e93f2ec946d9a73e755853407533e5c28f014f2a9b0b8eed5728276 +size 142323 diff --git a/project_a_output_progress/test_cases/case_011/reference_2.png b/project_a_output_progress/test_cases/case_011/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7473333f78c98320252651e9c06fb66f16d6570d --- /dev/null +++ b/project_a_output_progress/test_cases/case_011/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0316cf06a7f4f333d2339897998467695bdabee0c12b0d8cd8ab132236bc5e +size 123944 diff --git a/project_a_output_progress/test_cases/case_011/reference_3.png b/project_a_output_progress/test_cases/case_011/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a272e5607184c2d84d35362b0a89af07fef4529d --- /dev/null +++ b/project_a_output_progress/test_cases/case_011/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27452e76c97a9b5bcd78db4fb80a0bfd7f3e0b9f47dbdc2ffc20084f346db9c +size 120370 diff --git a/project_a_output_progress/test_cases/case_012/document.png b/project_a_output_progress/test_cases/case_012/document.png new file mode 100644 index 0000000000000000000000000000000000000000..88f5503f63519b1f2c32f97857860abfa3eda050 --- /dev/null +++ b/project_a_output_progress/test_cases/case_012/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e652ffe9b0d5343e09418514c63fef1552ba9dcb7d8269078542c30700203523 +size 243908 diff --git a/project_a_output_progress/test_cases/case_012/ground_truth.json b/project_a_output_progress/test_cases/case_012/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..80c30946a74024ae6150b84a324847cc5a0a6ee4 --- /dev/null +++ b/project_a_output_progress/test_cases/case_012/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_012", + "type": "PASS", + "document_type": "bank_account_opening", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Bob Lim", + "role": "officer", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Bob Lim", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "Bob Lim", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_012/reference_1.png b/project_a_output_progress/test_cases/case_012/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089695c84da82aa86220b4addf7c816f9fec57b --- /dev/null +++ b/project_a_output_progress/test_cases/case_012/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeffed978059f4f038dac50d3147dddd43c07f2e874628d3c74dc8aa3ff8026e +size 53486 diff --git a/project_a_output_progress/test_cases/case_012/reference_2.png b/project_a_output_progress/test_cases/case_012/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d7f2bd400b72d81a70be1ce4df13946fd864e --- /dev/null +++ b/project_a_output_progress/test_cases/case_012/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c513990020a7ffb5337263f5fcb8d3a6f94ff679afc1482fc57ff2bc9428db7 +size 38858 diff --git a/project_a_output_progress/test_cases/case_012/reference_3.png b/project_a_output_progress/test_cases/case_012/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac22fc748524741d48960ad5d85ba2ae301049d7 --- /dev/null +++ b/project_a_output_progress/test_cases/case_012/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20a0eba54a3236d10e4b7e66123d6e8b8948c2e5125e8b9e8c2f436c4d83cf +size 52456 diff --git a/project_a_output_progress/test_cases/case_013/document.png b/project_a_output_progress/test_cases/case_013/document.png new file mode 100644 index 0000000000000000000000000000000000000000..35fbf53ecef07aa6071b3f459dce3bc65e7294ab --- /dev/null +++ b/project_a_output_progress/test_cases/case_013/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b882736ecc5b263125806e13eb7fcb9e84f2a09624b74ab2e610a3e943da0b0 +size 222926 diff --git a/project_a_output_progress/test_cases/case_013/ground_truth.json b/project_a_output_progress/test_cases/case_013/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..6e3f2c497f80bb504afe925562830d3e59a0dc01 --- /dev/null +++ b/project_a_output_progress/test_cases/case_013/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_013", + "type": "PASS", + "document_type": "wealth_management", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Alice Tan", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Alice Tan", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "Alice Tan", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_013/reference_1.png b/project_a_output_progress/test_cases/case_013/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4f7ee59f24067fdfc1c8ca8c5a110284f5cac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_013/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b115e61d94324efa2d536edb5ed8f257e3ebcf8e8a348e0093cb21d86b932c31 +size 101272 diff --git a/project_a_output_progress/test_cases/case_013/reference_2.png b/project_a_output_progress/test_cases/case_013/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2b566b3c7463e42fe71f546d92bd0f5568248b --- /dev/null +++ b/project_a_output_progress/test_cases/case_013/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1016a61701bbf1ff01064554387d69a325cd07b6f7b089708ea5edb1970e73 +size 83209 diff --git a/project_a_output_progress/test_cases/case_013/reference_3.png b/project_a_output_progress/test_cases/case_013/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b633a1b22a838cd10dbde50fad6f64aa4cda3f9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_013/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc00daa73c4e0c7f0a81bba1707e97b9399df9f9ebb827fd2492dbfc7ce77c4 +size 67937 diff --git a/project_a_output_progress/test_cases/case_014/document.png b/project_a_output_progress/test_cases/case_014/document.png new file mode 100644 index 0000000000000000000000000000000000000000..02a29c362249817fa9079fe4038601c89e1aa528 --- /dev/null +++ b/project_a_output_progress/test_cases/case_014/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e8f57a7bd2e1f26979095e62ab650b77ae982eaf2612a0f149fe528bde4ff0 +size 104801 diff --git a/project_a_output_progress/test_cases/case_014/ground_truth.json b/project_a_output_progress/test_cases/case_014/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..99df2d219732028943482387ae328b1c4d1c39df --- /dev/null +++ b/project_a_output_progress/test_cases/case_014/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_014", + "type": "PASS", + "document_type": "board_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Carol Wong", + "role": "majority_shareholder", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Carol Wong", + "status": "filled" + }, + { + "role": "director_2", + "signed_by": "Carol Wong", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_015/document.png b/project_a_output_progress/test_cases/case_015/document.png new file mode 100644 index 0000000000000000000000000000000000000000..1aac4fe93c1c30ac53fbb63dfea939c6a4759e6c --- /dev/null +++ b/project_a_output_progress/test_cases/case_015/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15439c80d2382624c7a22eb5f7c5bae8c9055d3656320a320c98f4766c70124c +size 184939 diff --git a/project_a_output_progress/test_cases/case_015/ground_truth.json b/project_a_output_progress/test_cases/case_015/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..00c6e493b708590e20cda3627f65ccb02baa077f --- /dev/null +++ b/project_a_output_progress/test_cases/case_015/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_015", + "type": "PASS", + "document_type": "board_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Grace Lee", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Grace Lee", + "status": "filled" + }, + { + "role": "director_2", + "signed_by": "Grace Lee", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_015/reference_1.png b/project_a_output_progress/test_cases/case_015/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7291cc73a608eb10a3bc41e87ab7bdc88b13ac4e --- /dev/null +++ b/project_a_output_progress/test_cases/case_015/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ce2f5b02b1e8142d2ca6eaa2daf02e703983a8bcebafaf9a9f2e485f62fa +size 143735 diff --git a/project_a_output_progress/test_cases/case_015/reference_2.png b/project_a_output_progress/test_cases/case_015/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9171728f32e6e6a0ca3d443b21b211d8971fafe2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_015/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1494f5cf117ea500d625850462118a8eb9567e341fa38aad9f3925ec411be7 +size 135116 diff --git a/project_a_output_progress/test_cases/case_015/reference_3.png b/project_a_output_progress/test_cases/case_015/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a69512cf2c5fdb36641c6cb673ee961377ab5b6 --- /dev/null +++ b/project_a_output_progress/test_cases/case_015/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbc1a593e3795d531d01de284d02221b71ecdbcf7417763d5b27240b01169d +size 102333 diff --git a/project_a_output_progress/test_cases/case_016/document.png b/project_a_output_progress/test_cases/case_016/document.png new file mode 100644 index 0000000000000000000000000000000000000000..d759ef918a66c1409759ce14e62abc2ea381bd41 --- /dev/null +++ b/project_a_output_progress/test_cases/case_016/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb8ae26fb3bd2f850076ac7d3c7e96651696862023a2822aa166fc1ab03fc02 +size 171464 diff --git a/project_a_output_progress/test_cases/case_016/ground_truth.json b/project_a_output_progress/test_cases/case_016/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..50122ef2764b10a62c885a1b020d412f3c02b782 --- /dev/null +++ b/project_a_output_progress/test_cases/case_016/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_016", + "type": "PASS", + "document_type": "shareholder_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "John Doe", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": "John Doe", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_016/reference_1.png b/project_a_output_progress/test_cases/case_016/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f277476ed65a5b3afb8936eb89e9b449b378781 --- /dev/null +++ b/project_a_output_progress/test_cases/case_016/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec07c2f9d2c1d4b018ee5d662f7a92724d435a3674559f0d26864c9d14abb0 +size 155932 diff --git a/project_a_output_progress/test_cases/case_016/reference_2.png b/project_a_output_progress/test_cases/case_016/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3880f5f40b1989d7ce9765db73723328b97b1501 --- /dev/null +++ b/project_a_output_progress/test_cases/case_016/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77261e6eadbc754c81658b5a0714831883c42eec26c3a983ddcea993cce13fb +size 146949 diff --git a/project_a_output_progress/test_cases/case_016/reference_3.png b/project_a_output_progress/test_cases/case_016/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eedcaf3ac150eefa7bce2424f4d0ebda0708e792 --- /dev/null +++ b/project_a_output_progress/test_cases/case_016/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc958bdccbcb1f0f9fe463b0e941b7e08d25ea9f2f32a856a8bf2e2b05567d92 +size 154309 diff --git a/project_a_output_progress/test_cases/case_017/document.png b/project_a_output_progress/test_cases/case_017/document.png new file mode 100644 index 0000000000000000000000000000000000000000..e911c8a75bba1fe7d9006cfe3de6f59c05213b94 --- /dev/null +++ b/project_a_output_progress/test_cases/case_017/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5b1f7da58aed7eedc7bc8b67b9a15e7ce198978df9b83aa466d0b34ff830f8 +size 195174 diff --git a/project_a_output_progress/test_cases/case_017/ground_truth.json b/project_a_output_progress/test_cases/case_017/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..5285d62e0e6cbbdeb25a9ac13c7685fa70c76141 --- /dev/null +++ b/project_a_output_progress/test_cases/case_017/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_017", + "type": "PASS", + "document_type": "wealth_management", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Jane Smith", + "role": "secretary", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Jane Smith", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "Jane Smith", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_017/reference_1.png b/project_a_output_progress/test_cases/case_017/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9d23ed7e10bea3b10a8897412eadb1af0369f --- /dev/null +++ b/project_a_output_progress/test_cases/case_017/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcc102011c3d37ebfd7867a4d8f0d82dd28503c160e054acec518e9540c5b51 +size 64989 diff --git a/project_a_output_progress/test_cases/case_017/reference_2.png b/project_a_output_progress/test_cases/case_017/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..37d85fb8b9dba12985498b076ee957a4673f225b --- /dev/null +++ b/project_a_output_progress/test_cases/case_017/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f72dec46027a202ac0f6fca028d06f45224b27150b3eb1723276449d841685 +size 52525 diff --git a/project_a_output_progress/test_cases/case_017/reference_3.png b/project_a_output_progress/test_cases/case_017/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6569c333de6e3c36de11f1f98185e7251b7e3097 --- /dev/null +++ b/project_a_output_progress/test_cases/case_017/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bf5b03899d49411191a1858f3504a67a5bb6a379a3d38b536a4133fe5a8031 +size 49994 diff --git a/project_a_output_progress/test_cases/case_018/document.png b/project_a_output_progress/test_cases/case_018/document.png new file mode 100644 index 0000000000000000000000000000000000000000..02a29c362249817fa9079fe4038601c89e1aa528 --- /dev/null +++ b/project_a_output_progress/test_cases/case_018/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e8f57a7bd2e1f26979095e62ab650b77ae982eaf2612a0f149fe528bde4ff0 +size 104801 diff --git a/project_a_output_progress/test_cases/case_018/ground_truth.json b/project_a_output_progress/test_cases/case_018/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..af5c3129864fb5d9039eb309d6e3b5217f07249a --- /dev/null +++ b/project_a_output_progress/test_cases/case_018/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_018", + "type": "PASS", + "document_type": "board_resolution", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Frank Ng", + "role": "scrutineer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Frank Ng", + "status": "filled" + }, + { + "role": "director_2", + "signed_by": "Frank Ng", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_019/document.png b/project_a_output_progress/test_cases/case_019/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_019/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_019/ground_truth.json b/project_a_output_progress/test_cases/case_019/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..a99dfbf330f015b41be1a1edb0ec26cdbb12f1b5 --- /dev/null +++ b/project_a_output_progress/test_cases/case_019/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_019", + "type": "PASS", + "document_type": "tamil_trade_license", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Henry Ooi", + "role": "officer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "Henry Ooi", + "status": "filled" + }, + { + "role": "licensing_officer", + "signed_by": "Henry Ooi", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_020/document.png b/project_a_output_progress/test_cases/case_020/document.png new file mode 100644 index 0000000000000000000000000000000000000000..7557944324aaae31ded58cbe67cac81ff8b0f02d --- /dev/null +++ b/project_a_output_progress/test_cases/case_020/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448a78a0a37635df6cb41c607de87d8b8ca7b7025b1ebea4fd35dd2c4a60bb3c +size 110331 diff --git a/project_a_output_progress/test_cases/case_020/ground_truth.json b/project_a_output_progress/test_cases/case_020/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..f7fef8ea83fe04be059374ece471156a8978adbc --- /dev/null +++ b/project_a_output_progress/test_cases/case_020/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_020", + "type": "PASS", + "document_type": "wealth_management", + "expected_outcome": "ACCEPTED", + "expected_rejection_code": null, + "notes": "All fields signed by the authorized person.", + "authorized_signatory": { + "name": "Emily Raj", + "role": "legal_representative", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Emily Raj", + "status": "filled" + }, + { + "role": "officer", + "signed_by": "Emily Raj", + "status": "filled" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_021/document.png b/project_a_output_progress/test_cases/case_021/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_021/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_021/ground_truth.json b/project_a_output_progress/test_cases/case_021/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..1c53a8f19e9e68ca1412946bc67fef0bc6bfe316 --- /dev/null +++ b/project_a_output_progress/test_cases/case_021/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_021", + "type": "NO_SIGNATURE", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "NO_SIGNATURE_FOUND", + "notes": "Signature field(s) left blank.", + "authorized_signatory": { + "name": "David Chen", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": null, + "status": "blank" + }, + { + "role": "licensing_officer", + "signed_by": null, + "status": "blank" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_021/reference_1.png b/project_a_output_progress/test_cases/case_021/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f7025eafc1abab9395974a28bc340dbb33876 --- /dev/null +++ b/project_a_output_progress/test_cases/case_021/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92ff183e93f2ec946d9a73e755853407533e5c28f014f2a9b0b8eed5728276 +size 142323 diff --git a/project_a_output_progress/test_cases/case_021/reference_2.png b/project_a_output_progress/test_cases/case_021/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7473333f78c98320252651e9c06fb66f16d6570d --- /dev/null +++ b/project_a_output_progress/test_cases/case_021/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0316cf06a7f4f333d2339897998467695bdabee0c12b0d8cd8ab132236bc5e +size 123944 diff --git a/project_a_output_progress/test_cases/case_021/reference_3.png b/project_a_output_progress/test_cases/case_021/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a272e5607184c2d84d35362b0a89af07fef4529d --- /dev/null +++ b/project_a_output_progress/test_cases/case_021/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27452e76c97a9b5bcd78db4fb80a0bfd7f3e0b9f47dbdc2ffc20084f346db9c +size 120370 diff --git a/project_a_output_progress/test_cases/case_022/document.png b/project_a_output_progress/test_cases/case_022/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_022/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_022/ground_truth.json b/project_a_output_progress/test_cases/case_022/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..7770bf79c53de817f552dc2a7c3074008bae0ae5 --- /dev/null +++ b/project_a_output_progress/test_cases/case_022/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_022", + "type": "NO_SIGNATURE", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "NO_SIGNATURE_FOUND", + "notes": "Signature field(s) left blank.", + "authorized_signatory": { + "name": "Bob Lim", + "role": "officer", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": null, + "status": "blank" + }, + { + "role": "licensing_officer", + "signed_by": null, + "status": "blank" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_022/reference_1.png b/project_a_output_progress/test_cases/case_022/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089695c84da82aa86220b4addf7c816f9fec57b --- /dev/null +++ b/project_a_output_progress/test_cases/case_022/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeffed978059f4f038dac50d3147dddd43c07f2e874628d3c74dc8aa3ff8026e +size 53486 diff --git a/project_a_output_progress/test_cases/case_022/reference_2.png b/project_a_output_progress/test_cases/case_022/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d7f2bd400b72d81a70be1ce4df13946fd864e --- /dev/null +++ b/project_a_output_progress/test_cases/case_022/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c513990020a7ffb5337263f5fcb8d3a6f94ff679afc1482fc57ff2bc9428db7 +size 38858 diff --git a/project_a_output_progress/test_cases/case_022/reference_3.png b/project_a_output_progress/test_cases/case_022/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac22fc748524741d48960ad5d85ba2ae301049d7 --- /dev/null +++ b/project_a_output_progress/test_cases/case_022/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20a0eba54a3236d10e4b7e66123d6e8b8948c2e5125e8b9e8c2f436c4d83cf +size 52456 diff --git a/project_a_output_progress/test_cases/case_023/document.png b/project_a_output_progress/test_cases/case_023/document.png new file mode 100644 index 0000000000000000000000000000000000000000..02a29c362249817fa9079fe4038601c89e1aa528 --- /dev/null +++ b/project_a_output_progress/test_cases/case_023/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e8f57a7bd2e1f26979095e62ab650b77ae982eaf2612a0f149fe528bde4ff0 +size 104801 diff --git a/project_a_output_progress/test_cases/case_023/ground_truth.json b/project_a_output_progress/test_cases/case_023/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..9421e2bba637c006097bcdcf0ad76dc3c151e007 --- /dev/null +++ b/project_a_output_progress/test_cases/case_023/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_023", + "type": "NO_SIGNATURE", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "NO_SIGNATURE_FOUND", + "notes": "Signature field(s) left blank.", + "authorized_signatory": { + "name": "Alice Tan", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": null, + "status": "blank" + }, + { + "role": "director_2", + "signed_by": null, + "status": "blank" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_023/reference_1.png b/project_a_output_progress/test_cases/case_023/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4f7ee59f24067fdfc1c8ca8c5a110284f5cac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_023/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b115e61d94324efa2d536edb5ed8f257e3ebcf8e8a348e0093cb21d86b932c31 +size 101272 diff --git a/project_a_output_progress/test_cases/case_023/reference_2.png b/project_a_output_progress/test_cases/case_023/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2b566b3c7463e42fe71f546d92bd0f5568248b --- /dev/null +++ b/project_a_output_progress/test_cases/case_023/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1016a61701bbf1ff01064554387d69a325cd07b6f7b089708ea5edb1970e73 +size 83209 diff --git a/project_a_output_progress/test_cases/case_023/reference_3.png b/project_a_output_progress/test_cases/case_023/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b633a1b22a838cd10dbde50fad6f64aa4cda3f9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_023/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc00daa73c4e0c7f0a81bba1707e97b9399df9f9ebb827fd2492dbfc7ce77c4 +size 67937 diff --git a/project_a_output_progress/test_cases/case_024/document.png b/project_a_output_progress/test_cases/case_024/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_024/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_024/ground_truth.json b/project_a_output_progress/test_cases/case_024/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..35fcdaee7e8a20a2c9c4f927d681a6243fac535a --- /dev/null +++ b/project_a_output_progress/test_cases/case_024/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_024", + "type": "NO_SIGNATURE", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "NO_SIGNATURE_FOUND", + "notes": "Signature field(s) left blank.", + "authorized_signatory": { + "name": "Carol Wong", + "role": "majority_shareholder", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": null, + "status": "blank" + }, + { + "role": "licensing_officer", + "signed_by": null, + "status": "blank" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_025/document.png b/project_a_output_progress/test_cases/case_025/document.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee290b98c3c4e99e8b2f9cd94e103921914de0b --- /dev/null +++ b/project_a_output_progress/test_cases/case_025/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60defa96e78835257a17898c9c08c8c7688bb2a0c670d9427cd7ceb39375e6dc +size 152320 diff --git a/project_a_output_progress/test_cases/case_025/ground_truth.json b/project_a_output_progress/test_cases/case_025/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..c0972cf1066b4ea9e2a439f9118fe9db4a16376c --- /dev/null +++ b/project_a_output_progress/test_cases/case_025/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_025", + "type": "NO_SIGNATURE", + "document_type": "bank_account_opening", + "expected_outcome": "REJECTED", + "expected_rejection_code": "NO_SIGNATURE_FOUND", + "notes": "Signature field(s) left blank.", + "authorized_signatory": { + "name": "Grace Lee", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": null, + "status": "blank" + }, + { + "role": "officer", + "signed_by": null, + "status": "blank" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_025/reference_1.png b/project_a_output_progress/test_cases/case_025/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7291cc73a608eb10a3bc41e87ab7bdc88b13ac4e --- /dev/null +++ b/project_a_output_progress/test_cases/case_025/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ce2f5b02b1e8142d2ca6eaa2daf02e703983a8bcebafaf9a9f2e485f62fa +size 143735 diff --git a/project_a_output_progress/test_cases/case_025/reference_2.png b/project_a_output_progress/test_cases/case_025/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9171728f32e6e6a0ca3d443b21b211d8971fafe2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_025/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1494f5cf117ea500d625850462118a8eb9567e341fa38aad9f3925ec411be7 +size 135116 diff --git a/project_a_output_progress/test_cases/case_025/reference_3.png b/project_a_output_progress/test_cases/case_025/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a69512cf2c5fdb36641c6cb673ee961377ab5b6 --- /dev/null +++ b/project_a_output_progress/test_cases/case_025/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbc1a593e3795d531d01de284d02221b71ecdbcf7417763d5b27240b01169d +size 102333 diff --git a/project_a_output_progress/test_cases/case_026/document.png b/project_a_output_progress/test_cases/case_026/document.png new file mode 100644 index 0000000000000000000000000000000000000000..40c15392e8fa4f9334fd5dd8587db07f7450ca09 --- /dev/null +++ b/project_a_output_progress/test_cases/case_026/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2dfbaed557aec12e8a5631a7110a334d7d00d5a5a357f9250049bda6b7eeee +size 191108 diff --git a/project_a_output_progress/test_cases/case_026/ground_truth.json b/project_a_output_progress/test_cases/case_026/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..ed7446605c547727b69da4986535e14057b5757b --- /dev/null +++ b/project_a_output_progress/test_cases/case_026/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_026", + "type": "WRONG_PERSON", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Grace Lee instead of John Doe.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Grace Lee", + "status": "filled_wrong_person" + }, + { + "role": "director_2", + "signed_by": "Grace Lee", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_026/reference_1.png b/project_a_output_progress/test_cases/case_026/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f277476ed65a5b3afb8936eb89e9b449b378781 --- /dev/null +++ b/project_a_output_progress/test_cases/case_026/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec07c2f9d2c1d4b018ee5d662f7a92724d435a3674559f0d26864c9d14abb0 +size 155932 diff --git a/project_a_output_progress/test_cases/case_026/reference_2.png b/project_a_output_progress/test_cases/case_026/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3880f5f40b1989d7ce9765db73723328b97b1501 --- /dev/null +++ b/project_a_output_progress/test_cases/case_026/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77261e6eadbc754c81658b5a0714831883c42eec26c3a983ddcea993cce13fb +size 146949 diff --git a/project_a_output_progress/test_cases/case_026/reference_3.png b/project_a_output_progress/test_cases/case_026/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eedcaf3ac150eefa7bce2424f4d0ebda0708e792 --- /dev/null +++ b/project_a_output_progress/test_cases/case_026/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc958bdccbcb1f0f9fe463b0e941b7e08d25ea9f2f32a856a8bf2e2b05567d92 +size 154309 diff --git a/project_a_output_progress/test_cases/case_027/document.png b/project_a_output_progress/test_cases/case_027/document.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee290b98c3c4e99e8b2f9cd94e103921914de0b --- /dev/null +++ b/project_a_output_progress/test_cases/case_027/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60defa96e78835257a17898c9c08c8c7688bb2a0c670d9427cd7ceb39375e6dc +size 152320 diff --git a/project_a_output_progress/test_cases/case_027/ground_truth.json b/project_a_output_progress/test_cases/case_027/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce90ba4750aaa7be7067f6742a1bd2bad4560ed --- /dev/null +++ b/project_a_output_progress/test_cases/case_027/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_027", + "type": "WRONG_PERSON", + "document_type": "bank_account_opening", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Henry Ooi instead of Jane Smith.", + "authorized_signatory": { + "name": "Jane Smith", + "role": "secretary", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Henry Ooi", + "status": "filled_wrong_person" + }, + { + "role": "officer", + "signed_by": "Henry Ooi", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_027/reference_1.png b/project_a_output_progress/test_cases/case_027/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9d23ed7e10bea3b10a8897412eadb1af0369f --- /dev/null +++ b/project_a_output_progress/test_cases/case_027/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcc102011c3d37ebfd7867a4d8f0d82dd28503c160e054acec518e9540c5b51 +size 64989 diff --git a/project_a_output_progress/test_cases/case_027/reference_2.png b/project_a_output_progress/test_cases/case_027/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..37d85fb8b9dba12985498b076ee957a4673f225b --- /dev/null +++ b/project_a_output_progress/test_cases/case_027/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f72dec46027a202ac0f6fca028d06f45224b27150b3eb1723276449d841685 +size 52525 diff --git a/project_a_output_progress/test_cases/case_027/reference_3.png b/project_a_output_progress/test_cases/case_027/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6569c333de6e3c36de11f1f98185e7251b7e3097 --- /dev/null +++ b/project_a_output_progress/test_cases/case_027/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bf5b03899d49411191a1858f3504a67a5bb6a379a3d38b536a4133fe5a8031 +size 49994 diff --git a/project_a_output_progress/test_cases/case_028/document.png b/project_a_output_progress/test_cases/case_028/document.png new file mode 100644 index 0000000000000000000000000000000000000000..02a29c362249817fa9079fe4038601c89e1aa528 --- /dev/null +++ b/project_a_output_progress/test_cases/case_028/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e8f57a7bd2e1f26979095e62ab650b77ae982eaf2612a0f149fe528bde4ff0 +size 104801 diff --git a/project_a_output_progress/test_cases/case_028/ground_truth.json b/project_a_output_progress/test_cases/case_028/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..a73158d84427b29bed6b175cdb35e2d00648d281 --- /dev/null +++ b/project_a_output_progress/test_cases/case_028/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_028", + "type": "WRONG_PERSON", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Henry Ooi instead of Frank Ng.", + "authorized_signatory": { + "name": "Frank Ng", + "role": "scrutineer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_by": "Henry Ooi", + "status": "filled_wrong_person" + }, + { + "role": "director_2", + "signed_by": "Henry Ooi", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_029/document.png b/project_a_output_progress/test_cases/case_029/document.png new file mode 100644 index 0000000000000000000000000000000000000000..8236bbda1b0de8cd321a6069db4ca086868b5a42 --- /dev/null +++ b/project_a_output_progress/test_cases/case_029/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6602291432dd9056092a84e1cbf6be3e782ec96d75e6ec9fe0672b2e1a99c6d1 +size 182068 diff --git a/project_a_output_progress/test_cases/case_029/ground_truth.json b/project_a_output_progress/test_cases/case_029/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..4b383b4b84bb40907fd3753450b338152d3f645d --- /dev/null +++ b/project_a_output_progress/test_cases/case_029/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_029", + "type": "WRONG_PERSON", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Bob Lim instead of Henry Ooi.", + "authorized_signatory": { + "name": "Henry Ooi", + "role": "officer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Bob Lim", + "status": "filled_wrong_person" + }, + { + "role": "officer", + "signed_by": "Bob Lim", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_030/document.png b/project_a_output_progress/test_cases/case_030/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_030/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_030/ground_truth.json b/project_a_output_progress/test_cases/case_030/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..df005786ccef49145e6a8d72434c8c83ea96ca01 --- /dev/null +++ b/project_a_output_progress/test_cases/case_030/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_030", + "type": "WRONG_PERSON", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Carol Wong instead of Emily Raj.", + "authorized_signatory": { + "name": "Emily Raj", + "role": "legal_representative", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": "Carol Wong", + "status": "filled_wrong_person" + }, + { + "role": "licensing_officer", + "signed_by": "Carol Wong", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_031/document.png b/project_a_output_progress/test_cases/case_031/document.png new file mode 100644 index 0000000000000000000000000000000000000000..7557944324aaae31ded58cbe67cac81ff8b0f02d --- /dev/null +++ b/project_a_output_progress/test_cases/case_031/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448a78a0a37635df6cb41c607de87d8b8ca7b7025b1ebea4fd35dd2c4a60bb3c +size 110331 diff --git a/project_a_output_progress/test_cases/case_031/ground_truth.json b/project_a_output_progress/test_cases/case_031/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..e601c3ce1907388fbd3f3e688898ae2cfd5fb75d --- /dev/null +++ b/project_a_output_progress/test_cases/case_031/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_031", + "type": "WRONG_PERSON", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Emily Raj instead of David Chen.", + "authorized_signatory": { + "name": "David Chen", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Emily Raj", + "status": "filled_wrong_person" + }, + { + "role": "officer", + "signed_by": "Emily Raj", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_031/reference_1.png b/project_a_output_progress/test_cases/case_031/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f7025eafc1abab9395974a28bc340dbb33876 --- /dev/null +++ b/project_a_output_progress/test_cases/case_031/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92ff183e93f2ec946d9a73e755853407533e5c28f014f2a9b0b8eed5728276 +size 142323 diff --git a/project_a_output_progress/test_cases/case_031/reference_2.png b/project_a_output_progress/test_cases/case_031/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7473333f78c98320252651e9c06fb66f16d6570d --- /dev/null +++ b/project_a_output_progress/test_cases/case_031/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0316cf06a7f4f333d2339897998467695bdabee0c12b0d8cd8ab132236bc5e +size 123944 diff --git a/project_a_output_progress/test_cases/case_031/reference_3.png b/project_a_output_progress/test_cases/case_031/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a272e5607184c2d84d35362b0a89af07fef4529d --- /dev/null +++ b/project_a_output_progress/test_cases/case_031/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27452e76c97a9b5bcd78db4fb80a0bfd7f3e0b9f47dbdc2ffc20084f346db9c +size 120370 diff --git a/project_a_output_progress/test_cases/case_032/document.png b/project_a_output_progress/test_cases/case_032/document.png new file mode 100644 index 0000000000000000000000000000000000000000..2c07fd63ecde08a81174c09428d2cd0dd27ff63b --- /dev/null +++ b/project_a_output_progress/test_cases/case_032/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5febb5c9ad273ac5fdc651c82fdec4c50c0be300ef896b6f683d0243f2441a +size 169861 diff --git a/project_a_output_progress/test_cases/case_032/ground_truth.json b/project_a_output_progress/test_cases/case_032/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..c06be5cc8ea26bbbe1e360c5bf7cbd4a763272b4 --- /dev/null +++ b/project_a_output_progress/test_cases/case_032/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_032", + "type": "WRONG_PERSON", + "document_type": "shareholder_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by John Doe instead of Bob Lim.", + "authorized_signatory": { + "name": "Bob Lim", + "role": "officer", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "John Doe", + "status": "filled_wrong_person" + }, + { + "role": "scrutineer", + "signed_by": "John Doe", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_032/reference_1.png b/project_a_output_progress/test_cases/case_032/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089695c84da82aa86220b4addf7c816f9fec57b --- /dev/null +++ b/project_a_output_progress/test_cases/case_032/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeffed978059f4f038dac50d3147dddd43c07f2e874628d3c74dc8aa3ff8026e +size 53486 diff --git a/project_a_output_progress/test_cases/case_032/reference_2.png b/project_a_output_progress/test_cases/case_032/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d7f2bd400b72d81a70be1ce4df13946fd864e --- /dev/null +++ b/project_a_output_progress/test_cases/case_032/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c513990020a7ffb5337263f5fcb8d3a6f94ff679afc1482fc57ff2bc9428db7 +size 38858 diff --git a/project_a_output_progress/test_cases/case_032/reference_3.png b/project_a_output_progress/test_cases/case_032/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac22fc748524741d48960ad5d85ba2ae301049d7 --- /dev/null +++ b/project_a_output_progress/test_cases/case_032/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20a0eba54a3236d10e4b7e66123d6e8b8948c2e5125e8b9e8c2f436c4d83cf +size 52456 diff --git a/project_a_output_progress/test_cases/case_033/document.png b/project_a_output_progress/test_cases/case_033/document.png new file mode 100644 index 0000000000000000000000000000000000000000..439ccce85e5a968a5922d81d90f96ae428ec4fe8 --- /dev/null +++ b/project_a_output_progress/test_cases/case_033/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7679e9551962eb62be8560f1b7ea510faa5066cedf4820a92f9c46b81dab87f8 +size 186272 diff --git a/project_a_output_progress/test_cases/case_033/ground_truth.json b/project_a_output_progress/test_cases/case_033/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..6ccc6d06800aa7823b88a7e19327c9017255493f --- /dev/null +++ b/project_a_output_progress/test_cases/case_033/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_033", + "type": "WRONG_PERSON", + "document_type": "shareholder_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by David Chen instead of Alice Tan.", + "authorized_signatory": { + "name": "Alice Tan", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "David Chen", + "status": "filled_wrong_person" + }, + { + "role": "scrutineer", + "signed_by": "David Chen", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_033/reference_1.png b/project_a_output_progress/test_cases/case_033/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4f7ee59f24067fdfc1c8ca8c5a110284f5cac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_033/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b115e61d94324efa2d536edb5ed8f257e3ebcf8e8a348e0093cb21d86b932c31 +size 101272 diff --git a/project_a_output_progress/test_cases/case_033/reference_2.png b/project_a_output_progress/test_cases/case_033/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2b566b3c7463e42fe71f546d92bd0f5568248b --- /dev/null +++ b/project_a_output_progress/test_cases/case_033/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1016a61701bbf1ff01064554387d69a325cd07b6f7b089708ea5edb1970e73 +size 83209 diff --git a/project_a_output_progress/test_cases/case_033/reference_3.png b/project_a_output_progress/test_cases/case_033/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b633a1b22a838cd10dbde50fad6f64aa4cda3f9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_033/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc00daa73c4e0c7f0a81bba1707e97b9399df9f9ebb827fd2492dbfc7ce77c4 +size 67937 diff --git a/project_a_output_progress/test_cases/case_034/document.png b/project_a_output_progress/test_cases/case_034/document.png new file mode 100644 index 0000000000000000000000000000000000000000..907d2a4d9e89874d45564d55df179d3d78bc2637 --- /dev/null +++ b/project_a_output_progress/test_cases/case_034/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd482737d180d172e690a4801b38bd065e23c41273bf43b94603d5a72821f53 +size 224042 diff --git a/project_a_output_progress/test_cases/case_034/ground_truth.json b/project_a_output_progress/test_cases/case_034/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..6d94b4f04ce6c1e24d68a42e67f72569acb28431 --- /dev/null +++ b/project_a_output_progress/test_cases/case_034/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_034", + "type": "WRONG_PERSON", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Alice Tan instead of Carol Wong.", + "authorized_signatory": { + "name": "Carol Wong", + "role": "majority_shareholder", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Alice Tan", + "status": "filled_wrong_person" + }, + { + "role": "officer", + "signed_by": "Alice Tan", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_035/document.png b/project_a_output_progress/test_cases/case_035/document.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f361f94818e55eae5769bba65fb1f53897cc8a --- /dev/null +++ b/project_a_output_progress/test_cases/case_035/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b80cc08ef5f089c28fb86bd433443d82bb6e8b40c3331ed88e82289b4f5bf2 +size 239081 diff --git a/project_a_output_progress/test_cases/case_035/ground_truth.json b/project_a_output_progress/test_cases/case_035/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..b838e470b42c0e9180867caf391302b26352932c --- /dev/null +++ b/project_a_output_progress/test_cases/case_035/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_035", + "type": "WRONG_PERSON", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "IDENTITY_MISMATCH", + "notes": "Signed by Alice Tan instead of Grace Lee.", + "authorized_signatory": { + "name": "Grace Lee", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Alice Tan", + "status": "filled_wrong_person" + }, + { + "role": "officer", + "signed_by": "Alice Tan", + "status": "filled_wrong_person" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_035/reference_1.png b/project_a_output_progress/test_cases/case_035/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7291cc73a608eb10a3bc41e87ab7bdc88b13ac4e --- /dev/null +++ b/project_a_output_progress/test_cases/case_035/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ce2f5b02b1e8142d2ca6eaa2daf02e703983a8bcebafaf9a9f2e485f62fa +size 143735 diff --git a/project_a_output_progress/test_cases/case_035/reference_2.png b/project_a_output_progress/test_cases/case_035/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9171728f32e6e6a0ca3d443b21b211d8971fafe2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_035/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1494f5cf117ea500d625850462118a8eb9567e341fa38aad9f3925ec411be7 +size 135116 diff --git a/project_a_output_progress/test_cases/case_035/reference_3.png b/project_a_output_progress/test_cases/case_035/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a69512cf2c5fdb36641c6cb673ee961377ab5b6 --- /dev/null +++ b/project_a_output_progress/test_cases/case_035/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbc1a593e3795d531d01de284d02221b71ecdbcf7417763d5b27240b01169d +size 102333 diff --git a/project_a_output_progress/test_cases/case_036/document.png b/project_a_output_progress/test_cases/case_036/document.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad9883f045bfffce29acbd141cf76f280304344 --- /dev/null +++ b/project_a_output_progress/test_cases/case_036/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ff478e4529b1824b9c88add1868c35fc67d236c94af9a393d396e9e02d8368d +size 177275 diff --git a/project_a_output_progress/test_cases/case_036/ground_truth.json b/project_a_output_progress/test_cases/case_036/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..e95756c304799b210324c526223e232109e4c87a --- /dev/null +++ b/project_a_output_progress/test_cases/case_036/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_036", + "type": "WRONG_ROLE", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "John Doe signed in the wrong role field.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_in_field": "director_2", + "signed_by": "John Doe", + "status": "filled_wrong_role" + }, + { + "role": "director_2", + "signed_in_field": "director_1", + "signed_by": "John Doe", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_036/reference_1.png b/project_a_output_progress/test_cases/case_036/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f277476ed65a5b3afb8936eb89e9b449b378781 --- /dev/null +++ b/project_a_output_progress/test_cases/case_036/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec07c2f9d2c1d4b018ee5d662f7a92724d435a3674559f0d26864c9d14abb0 +size 155932 diff --git a/project_a_output_progress/test_cases/case_036/reference_2.png b/project_a_output_progress/test_cases/case_036/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3880f5f40b1989d7ce9765db73723328b97b1501 --- /dev/null +++ b/project_a_output_progress/test_cases/case_036/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77261e6eadbc754c81658b5a0714831883c42eec26c3a983ddcea993cce13fb +size 146949 diff --git a/project_a_output_progress/test_cases/case_036/reference_3.png b/project_a_output_progress/test_cases/case_036/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eedcaf3ac150eefa7bce2424f4d0ebda0708e792 --- /dev/null +++ b/project_a_output_progress/test_cases/case_036/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc958bdccbcb1f0f9fe463b0e941b7e08d25ea9f2f32a856a8bf2e2b05567d92 +size 154309 diff --git a/project_a_output_progress/test_cases/case_037/document.png b/project_a_output_progress/test_cases/case_037/document.png new file mode 100644 index 0000000000000000000000000000000000000000..390ad27e88c268d6ffb1233c05cf4fb6fbafc749 --- /dev/null +++ b/project_a_output_progress/test_cases/case_037/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41bddff823b5cbff7ef0bc835635ee2c5886c7261d6076f87d66efe8633116b1 +size 195553 diff --git a/project_a_output_progress/test_cases/case_037/ground_truth.json b/project_a_output_progress/test_cases/case_037/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..39a7747063e78ecc6caaf8ff81f5affcee085f79 --- /dev/null +++ b/project_a_output_progress/test_cases/case_037/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_037", + "type": "WRONG_ROLE", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Jane Smith signed in the wrong role field.", + "authorized_signatory": { + "name": "Jane Smith", + "role": "secretary", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_in_field": "director_2", + "signed_by": "Jane Smith", + "status": "filled_wrong_role" + }, + { + "role": "director_2", + "signed_in_field": "director_1", + "signed_by": "Jane Smith", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_037/reference_1.png b/project_a_output_progress/test_cases/case_037/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9d23ed7e10bea3b10a8897412eadb1af0369f --- /dev/null +++ b/project_a_output_progress/test_cases/case_037/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcc102011c3d37ebfd7867a4d8f0d82dd28503c160e054acec518e9540c5b51 +size 64989 diff --git a/project_a_output_progress/test_cases/case_037/reference_2.png b/project_a_output_progress/test_cases/case_037/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..37d85fb8b9dba12985498b076ee957a4673f225b --- /dev/null +++ b/project_a_output_progress/test_cases/case_037/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f72dec46027a202ac0f6fca028d06f45224b27150b3eb1723276449d841685 +size 52525 diff --git a/project_a_output_progress/test_cases/case_037/reference_3.png b/project_a_output_progress/test_cases/case_037/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6569c333de6e3c36de11f1f98185e7251b7e3097 --- /dev/null +++ b/project_a_output_progress/test_cases/case_037/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bf5b03899d49411191a1858f3504a67a5bb6a379a3d38b536a4133fe5a8031 +size 49994 diff --git a/project_a_output_progress/test_cases/case_038/document.png b/project_a_output_progress/test_cases/case_038/document.png new file mode 100644 index 0000000000000000000000000000000000000000..3405b1b39001c892cdd78156fa4b228a25c6832b --- /dev/null +++ b/project_a_output_progress/test_cases/case_038/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237289364dd9c4b161cf2aa4d61610cb86e5f4a24523c915753f425ed237ff1a +size 106341 diff --git a/project_a_output_progress/test_cases/case_038/ground_truth.json b/project_a_output_progress/test_cases/case_038/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..f9bca861d1a66be7c25d11cff45960d86190c505 --- /dev/null +++ b/project_a_output_progress/test_cases/case_038/ground_truth.json @@ -0,0 +1,27 @@ +{ + "case_id": "case_038", + "type": "WRONG_ROLE", + "document_type": "shareholder_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Frank Ng signed in the wrong role field.", + "authorized_signatory": { + "name": "Frank Ng", + "role": "scrutineer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_in_field": "scrutineer", + "signed_by": "Frank Ng", + "status": "filled_wrong_role" + }, + { + "role": "scrutineer", + "signed_in_field": "majority_shareholder", + "signed_by": "Frank Ng", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_039/document.png b/project_a_output_progress/test_cases/case_039/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_039/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_039/ground_truth.json b/project_a_output_progress/test_cases/case_039/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..bf9608fb8dde3157dea49847f30012cf7e80432d --- /dev/null +++ b/project_a_output_progress/test_cases/case_039/ground_truth.json @@ -0,0 +1,27 @@ +{ + "case_id": "case_039", + "type": "WRONG_ROLE", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Henry Ooi signed in the wrong role field.", + "authorized_signatory": { + "name": "Henry Ooi", + "role": "officer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_in_field": "licensing_officer", + "signed_by": "Henry Ooi", + "status": "filled_wrong_role" + }, + { + "role": "licensing_officer", + "signed_in_field": "owner", + "signed_by": "Henry Ooi", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_040/document.png b/project_a_output_progress/test_cases/case_040/document.png new file mode 100644 index 0000000000000000000000000000000000000000..3405b1b39001c892cdd78156fa4b228a25c6832b --- /dev/null +++ b/project_a_output_progress/test_cases/case_040/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237289364dd9c4b161cf2aa4d61610cb86e5f4a24523c915753f425ed237ff1a +size 106341 diff --git a/project_a_output_progress/test_cases/case_040/ground_truth.json b/project_a_output_progress/test_cases/case_040/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..333be931edcc8021f728e062d96653ba54db5a3f --- /dev/null +++ b/project_a_output_progress/test_cases/case_040/ground_truth.json @@ -0,0 +1,27 @@ +{ + "case_id": "case_040", + "type": "WRONG_ROLE", + "document_type": "shareholder_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Emily Raj signed in the wrong role field.", + "authorized_signatory": { + "name": "Emily Raj", + "role": "legal_representative", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_in_field": "scrutineer", + "signed_by": "Emily Raj", + "status": "filled_wrong_role" + }, + { + "role": "scrutineer", + "signed_in_field": "majority_shareholder", + "signed_by": "Emily Raj", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_041/document.png b/project_a_output_progress/test_cases/case_041/document.png new file mode 100644 index 0000000000000000000000000000000000000000..3b16c1573da88fddcd878591f9fe1e5f7bf90040 --- /dev/null +++ b/project_a_output_progress/test_cases/case_041/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc19934c7a0ca0475b19d91175ed9a1bbd798cf015bbd364f5b7217830860e8 +size 196736 diff --git a/project_a_output_progress/test_cases/case_041/ground_truth.json b/project_a_output_progress/test_cases/case_041/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..da2d3b7655277e888449caa3c46007b7e034e551 --- /dev/null +++ b/project_a_output_progress/test_cases/case_041/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_041", + "type": "WRONG_ROLE", + "document_type": "board_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "David Chen signed in the wrong role field.", + "authorized_signatory": { + "name": "David Chen", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "director_1", + "signed_in_field": "director_2", + "signed_by": "David Chen", + "status": "filled_wrong_role" + }, + { + "role": "director_2", + "signed_in_field": "director_1", + "signed_by": "David Chen", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_041/reference_1.png b/project_a_output_progress/test_cases/case_041/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..f63f7025eafc1abab9395974a28bc340dbb33876 --- /dev/null +++ b/project_a_output_progress/test_cases/case_041/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce92ff183e93f2ec946d9a73e755853407533e5c28f014f2a9b0b8eed5728276 +size 142323 diff --git a/project_a_output_progress/test_cases/case_041/reference_2.png b/project_a_output_progress/test_cases/case_041/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..7473333f78c98320252651e9c06fb66f16d6570d --- /dev/null +++ b/project_a_output_progress/test_cases/case_041/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0316cf06a7f4f333d2339897998467695bdabee0c12b0d8cd8ab132236bc5e +size 123944 diff --git a/project_a_output_progress/test_cases/case_041/reference_3.png b/project_a_output_progress/test_cases/case_041/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..a272e5607184c2d84d35362b0a89af07fef4529d --- /dev/null +++ b/project_a_output_progress/test_cases/case_041/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27452e76c97a9b5bcd78db4fb80a0bfd7f3e0b9f47dbdc2ffc20084f346db9c +size 120370 diff --git a/project_a_output_progress/test_cases/case_042/document.png b/project_a_output_progress/test_cases/case_042/document.png new file mode 100644 index 0000000000000000000000000000000000000000..ae146c3d2f7aa563c4ec88026450e2c10d0a9ac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_042/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df98d8717842ad4c8dd4b93505a1f1b21867682afad0cca7ee81deef1306987 +size 181193 diff --git a/project_a_output_progress/test_cases/case_042/ground_truth.json b/project_a_output_progress/test_cases/case_042/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..769fe14e52e9bf51ab02e866bf2847d5ddcc7e9d --- /dev/null +++ b/project_a_output_progress/test_cases/case_042/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_042", + "type": "WRONG_ROLE", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Bob Lim signed in the wrong role field.", + "authorized_signatory": { + "name": "Bob Lim", + "role": "officer", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_in_field": "officer", + "signed_by": "Bob Lim", + "status": "filled_wrong_role" + }, + { + "role": "officer", + "signed_in_field": "applicant", + "signed_by": "Bob Lim", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_042/reference_1.png b/project_a_output_progress/test_cases/case_042/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..6089695c84da82aa86220b4addf7c816f9fec57b --- /dev/null +++ b/project_a_output_progress/test_cases/case_042/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeffed978059f4f038dac50d3147dddd43c07f2e874628d3c74dc8aa3ff8026e +size 53486 diff --git a/project_a_output_progress/test_cases/case_042/reference_2.png b/project_a_output_progress/test_cases/case_042/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b72d7f2bd400b72d81a70be1ce4df13946fd864e --- /dev/null +++ b/project_a_output_progress/test_cases/case_042/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c513990020a7ffb5337263f5fcb8d3a6f94ff679afc1482fc57ff2bc9428db7 +size 38858 diff --git a/project_a_output_progress/test_cases/case_042/reference_3.png b/project_a_output_progress/test_cases/case_042/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..ac22fc748524741d48960ad5d85ba2ae301049d7 --- /dev/null +++ b/project_a_output_progress/test_cases/case_042/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e20a0eba54a3236d10e4b7e66123d6e8b8948c2e5125e8b9e8c2f436c4d83cf +size 52456 diff --git a/project_a_output_progress/test_cases/case_043/document.png b/project_a_output_progress/test_cases/case_043/document.png new file mode 100644 index 0000000000000000000000000000000000000000..11b117a402ed0ef28fef41b7b7114892b7cbf622 --- /dev/null +++ b/project_a_output_progress/test_cases/case_043/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a533cb4326bba695d8e3955849ae62881a42c176a2dfd6e374d71defb966d3e +size 292751 diff --git a/project_a_output_progress/test_cases/case_043/ground_truth.json b/project_a_output_progress/test_cases/case_043/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..6bef688aeeb8b9d5efc27a8150d6dd6490e49fb1 --- /dev/null +++ b/project_a_output_progress/test_cases/case_043/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_043", + "type": "WRONG_ROLE", + "document_type": "bank_account_opening", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Alice Tan signed in the wrong role field.", + "authorized_signatory": { + "name": "Alice Tan", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_in_field": "officer", + "signed_by": "Alice Tan", + "status": "filled_wrong_role" + }, + { + "role": "officer", + "signed_in_field": "applicant", + "signed_by": "Alice Tan", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_043/reference_1.png b/project_a_output_progress/test_cases/case_043/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc4f7ee59f24067fdfc1c8ca8c5a110284f5cac3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_043/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b115e61d94324efa2d536edb5ed8f257e3ebcf8e8a348e0093cb21d86b932c31 +size 101272 diff --git a/project_a_output_progress/test_cases/case_043/reference_2.png b/project_a_output_progress/test_cases/case_043/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..cf2b566b3c7463e42fe71f546d92bd0f5568248b --- /dev/null +++ b/project_a_output_progress/test_cases/case_043/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1016a61701bbf1ff01064554387d69a325cd07b6f7b089708ea5edb1970e73 +size 83209 diff --git a/project_a_output_progress/test_cases/case_043/reference_3.png b/project_a_output_progress/test_cases/case_043/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..b633a1b22a838cd10dbde50fad6f64aa4cda3f9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_043/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc00daa73c4e0c7f0a81bba1707e97b9399df9f9ebb827fd2492dbfc7ce77c4 +size 67937 diff --git a/project_a_output_progress/test_cases/case_044/document.png b/project_a_output_progress/test_cases/case_044/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_044/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_044/ground_truth.json b/project_a_output_progress/test_cases/case_044/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..453b9a6793497aa2be6077b9b69e2d777f36dd13 --- /dev/null +++ b/project_a_output_progress/test_cases/case_044/ground_truth.json @@ -0,0 +1,27 @@ +{ + "case_id": "case_044", + "type": "WRONG_ROLE", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Carol Wong signed in the wrong role field.", + "authorized_signatory": { + "name": "Carol Wong", + "role": "majority_shareholder", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_in_field": "licensing_officer", + "signed_by": "Carol Wong", + "status": "filled_wrong_role" + }, + { + "role": "licensing_officer", + "signed_in_field": "owner", + "signed_by": "Carol Wong", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_045/document.png b/project_a_output_progress/test_cases/case_045/document.png new file mode 100644 index 0000000000000000000000000000000000000000..eead2b4469178e83988478aedf5a4f435a0d4d64 --- /dev/null +++ b/project_a_output_progress/test_cases/case_045/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f0148e91677c36e2dd1cebce3b42027d48345211ead68c31b1ccacc50eb1c6 +size 188118 diff --git a/project_a_output_progress/test_cases/case_045/ground_truth.json b/project_a_output_progress/test_cases/case_045/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..d37fe0b81d1f1e7649f6d69827d8881583675f0d --- /dev/null +++ b/project_a_output_progress/test_cases/case_045/ground_truth.json @@ -0,0 +1,31 @@ +{ + "case_id": "case_045", + "type": "WRONG_ROLE", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "WRONG_ROLE", + "notes": "Grace Lee signed in the wrong role field.", + "authorized_signatory": { + "name": "Grace Lee", + "role": "applicant", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_in_field": "officer", + "signed_by": "Grace Lee", + "status": "filled_wrong_role" + }, + { + "role": "officer", + "signed_in_field": "applicant", + "signed_by": "Grace Lee", + "status": "filled_wrong_role" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_045/reference_1.png b/project_a_output_progress/test_cases/case_045/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7291cc73a608eb10a3bc41e87ab7bdc88b13ac4e --- /dev/null +++ b/project_a_output_progress/test_cases/case_045/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ce2f5b02b1e8142d2ca6eaa2daf02e703983a8bcebafaf9a9f2e485f62fa +size 143735 diff --git a/project_a_output_progress/test_cases/case_045/reference_2.png b/project_a_output_progress/test_cases/case_045/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..9171728f32e6e6a0ca3d443b21b211d8971fafe2 --- /dev/null +++ b/project_a_output_progress/test_cases/case_045/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1494f5cf117ea500d625850462118a8eb9567e341fa38aad9f3925ec411be7 +size 135116 diff --git a/project_a_output_progress/test_cases/case_045/reference_3.png b/project_a_output_progress/test_cases/case_045/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a69512cf2c5fdb36641c6cb673ee961377ab5b6 --- /dev/null +++ b/project_a_output_progress/test_cases/case_045/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5bbc1a593e3795d531d01de284d02221b71ecdbcf7417763d5b27240b01169d +size 102333 diff --git a/project_a_output_progress/test_cases/case_046/document.png b/project_a_output_progress/test_cases/case_046/document.png new file mode 100644 index 0000000000000000000000000000000000000000..2993bdbe8add8c08e4876b30d8376b7b3f6e1f28 --- /dev/null +++ b/project_a_output_progress/test_cases/case_046/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b479594386278f1feb78137962694ca7d6602f00a680e78f9fa74e0a8450cb61 +size 151450 diff --git a/project_a_output_progress/test_cases/case_046/ground_truth.json b/project_a_output_progress/test_cases/case_046/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..ce884bb0801d4640e417fcfa02e53c02d2b30471 --- /dev/null +++ b/project_a_output_progress/test_cases/case_046/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_046", + "type": "REQUIRED_PERSON_MISSING", + "document_type": "shareholder_resolution", + "expected_outcome": "REJECTED", + "expected_rejection_code": "REQUIRED_SIGNATORY_MISSING", + "notes": "Only first field signed. Remaining 1 required field(s) blank.", + "authorized_signatory": { + "name": "John Doe", + "role": "director", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "majority_shareholder", + "signed_by": "John Doe", + "status": "filled" + }, + { + "role": "scrutineer", + "signed_by": null, + "status": "blank_required" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_046/reference_1.png b/project_a_output_progress/test_cases/case_046/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f277476ed65a5b3afb8936eb89e9b449b378781 --- /dev/null +++ b/project_a_output_progress/test_cases/case_046/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec07c2f9d2c1d4b018ee5d662f7a92724d435a3674559f0d26864c9d14abb0 +size 155932 diff --git a/project_a_output_progress/test_cases/case_046/reference_2.png b/project_a_output_progress/test_cases/case_046/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..3880f5f40b1989d7ce9765db73723328b97b1501 --- /dev/null +++ b/project_a_output_progress/test_cases/case_046/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77261e6eadbc754c81658b5a0714831883c42eec26c3a983ddcea993cce13fb +size 146949 diff --git a/project_a_output_progress/test_cases/case_046/reference_3.png b/project_a_output_progress/test_cases/case_046/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..eedcaf3ac150eefa7bce2424f4d0ebda0708e792 --- /dev/null +++ b/project_a_output_progress/test_cases/case_046/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc958bdccbcb1f0f9fe463b0e941b7e08d25ea9f2f32a856a8bf2e2b05567d92 +size 154309 diff --git a/project_a_output_progress/test_cases/case_047/document.png b/project_a_output_progress/test_cases/case_047/document.png new file mode 100644 index 0000000000000000000000000000000000000000..d36f1c17240588887a9de30a8ca70dc66de43463 --- /dev/null +++ b/project_a_output_progress/test_cases/case_047/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33caf0507a64c0ed876de8b43b4e1a62e545869cad078f78301fce0d8eb42c9c +size 166847 diff --git a/project_a_output_progress/test_cases/case_047/ground_truth.json b/project_a_output_progress/test_cases/case_047/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..b4b96581ec2d8f42ebf0dc604dc428d27fa753a1 --- /dev/null +++ b/project_a_output_progress/test_cases/case_047/ground_truth.json @@ -0,0 +1,29 @@ +{ + "case_id": "case_047", + "type": "REQUIRED_PERSON_MISSING", + "document_type": "wealth_management", + "expected_outcome": "REJECTED", + "expected_rejection_code": "REQUIRED_SIGNATORY_MISSING", + "notes": "Only first field signed. Remaining 1 required field(s) blank.", + "authorized_signatory": { + "name": "Jane Smith", + "role": "secretary", + "ref_paths": [ + "reference_1.png", + "reference_2.png", + "reference_3.png" + ] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": "Jane Smith", + "status": "filled" + }, + { + "role": "officer", + "signed_by": null, + "status": "blank_required" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_047/reference_1.png b/project_a_output_progress/test_cases/case_047/reference_1.png new file mode 100644 index 0000000000000000000000000000000000000000..63f9d23ed7e10bea3b10a8897412eadb1af0369f --- /dev/null +++ b/project_a_output_progress/test_cases/case_047/reference_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efcc102011c3d37ebfd7867a4d8f0d82dd28503c160e054acec518e9540c5b51 +size 64989 diff --git a/project_a_output_progress/test_cases/case_047/reference_2.png b/project_a_output_progress/test_cases/case_047/reference_2.png new file mode 100644 index 0000000000000000000000000000000000000000..37d85fb8b9dba12985498b076ee957a4673f225b --- /dev/null +++ b/project_a_output_progress/test_cases/case_047/reference_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f72dec46027a202ac0f6fca028d06f45224b27150b3eb1723276449d841685 +size 52525 diff --git a/project_a_output_progress/test_cases/case_047/reference_3.png b/project_a_output_progress/test_cases/case_047/reference_3.png new file mode 100644 index 0000000000000000000000000000000000000000..6569c333de6e3c36de11f1f98185e7251b7e3097 --- /dev/null +++ b/project_a_output_progress/test_cases/case_047/reference_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bf5b03899d49411191a1858f3504a67a5bb6a379a3d38b536a4133fe5a8031 +size 49994 diff --git a/project_a_output_progress/test_cases/case_048/document.png b/project_a_output_progress/test_cases/case_048/document.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1f3f0fcfebc525b57b6a363a1e350a962fda9e --- /dev/null +++ b/project_a_output_progress/test_cases/case_048/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13826e5039c7726176e2c53979349c809a588c38d1b681e19b5a1469f1fa5c1b +size 155619 diff --git a/project_a_output_progress/test_cases/case_048/ground_truth.json b/project_a_output_progress/test_cases/case_048/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..b3e222a2b25f3745772707a9f2bab200c10c80b3 --- /dev/null +++ b/project_a_output_progress/test_cases/case_048/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_048", + "type": "REQUIRED_PERSON_MISSING", + "document_type": "tamil_trade_license", + "expected_outcome": "REJECTED", + "expected_rejection_code": "REQUIRED_SIGNATORY_MISSING", + "notes": "Only first field signed. Remaining 1 required field(s) blank.", + "authorized_signatory": { + "name": "Frank Ng", + "role": "scrutineer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "owner", + "signed_by": null, + "status": "blank_required" + }, + { + "role": "licensing_officer", + "signed_by": null, + "status": "blank_required" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_049/document.png b/project_a_output_progress/test_cases/case_049/document.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee290b98c3c4e99e8b2f9cd94e103921914de0b --- /dev/null +++ b/project_a_output_progress/test_cases/case_049/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60defa96e78835257a17898c9c08c8c7688bb2a0c670d9427cd7ceb39375e6dc +size 152320 diff --git a/project_a_output_progress/test_cases/case_049/ground_truth.json b/project_a_output_progress/test_cases/case_049/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..7ed19fde28ba584645c31bf2e55bbd0b7012500e --- /dev/null +++ b/project_a_output_progress/test_cases/case_049/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_049", + "type": "REQUIRED_PERSON_MISSING", + "document_type": "bank_account_opening", + "expected_outcome": "REJECTED", + "expected_rejection_code": "REQUIRED_SIGNATORY_MISSING", + "notes": "Only first field signed. Remaining 1 required field(s) blank.", + "authorized_signatory": { + "name": "Henry Ooi", + "role": "officer", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": null, + "status": "blank_required" + }, + { + "role": "officer", + "signed_by": null, + "status": "blank_required" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/case_050/document.png b/project_a_output_progress/test_cases/case_050/document.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee290b98c3c4e99e8b2f9cd94e103921914de0b --- /dev/null +++ b/project_a_output_progress/test_cases/case_050/document.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60defa96e78835257a17898c9c08c8c7688bb2a0c670d9427cd7ceb39375e6dc +size 152320 diff --git a/project_a_output_progress/test_cases/case_050/ground_truth.json b/project_a_output_progress/test_cases/case_050/ground_truth.json new file mode 100644 index 0000000000000000000000000000000000000000..2ab5a84d7c0ad8a6ea8fb16f497e4cd00863054f --- /dev/null +++ b/project_a_output_progress/test_cases/case_050/ground_truth.json @@ -0,0 +1,25 @@ +{ + "case_id": "case_050", + "type": "REQUIRED_PERSON_MISSING", + "document_type": "bank_account_opening", + "expected_outcome": "REJECTED", + "expected_rejection_code": "REQUIRED_SIGNATORY_MISSING", + "notes": "Only first field signed. Remaining 1 required field(s) blank.", + "authorized_signatory": { + "name": "Emily Raj", + "role": "legal_representative", + "ref_paths": [] + }, + "signed_roles": [ + { + "role": "applicant", + "signed_by": null, + "status": "blank_required" + }, + { + "role": "officer", + "signed_by": null, + "status": "blank_required" + } + ] +} \ No newline at end of file diff --git a/project_a_output_progress/test_cases/test_cases_summary.csv b/project_a_output_progress/test_cases/test_cases_summary.csv new file mode 100644 index 0000000000000000000000000000000000000000..a9581ce5da2d3773833a73e8a32b85884a90de66 --- /dev/null +++ b/project_a_output_progress/test_cases/test_cases_summary.csv @@ -0,0 +1,51 @@ +case_id,type,document_type,expected_outcome,expected_rejection_code,authorized_name,authorized_role,num_ref_signatures,ref_paths,notes,case_folder +case_001,PASS,bank_account_opening,ACCEPTED,,David Chen,director,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_001 +case_002,PASS,tamil_trade_license,ACCEPTED,,Bob Lim,officer,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_002 +case_003,PASS,shareholder_resolution,ACCEPTED,,Alice Tan,applicant,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_003 +case_004,PASS,shareholder_resolution,ACCEPTED,,Carol Wong,majority_shareholder,0,,All fields signed by the authorized person.,data\test_cases\case_004 +case_005,PASS,shareholder_resolution,ACCEPTED,,Grace Lee,applicant,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_005 +case_006,PASS,tamil_trade_license,ACCEPTED,,John Doe,director,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_006 +case_007,PASS,bank_account_opening,ACCEPTED,,Jane Smith,secretary,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_007 +case_008,PASS,tamil_trade_license,ACCEPTED,,Frank Ng,scrutineer,0,,All fields signed by the authorized person.,data\test_cases\case_008 +case_009,PASS,tamil_trade_license,ACCEPTED,,Henry Ooi,officer,0,,All fields signed by the authorized person.,data\test_cases\case_009 +case_010,PASS,shareholder_resolution,ACCEPTED,,Emily Raj,legal_representative,0,,All fields signed by the authorized person.,data\test_cases\case_010 +case_011,PASS,board_resolution,ACCEPTED,,David Chen,director,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_011 +case_012,PASS,bank_account_opening,ACCEPTED,,Bob Lim,officer,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_012 +case_013,PASS,wealth_management,ACCEPTED,,Alice Tan,applicant,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_013 +case_014,PASS,board_resolution,ACCEPTED,,Carol Wong,majority_shareholder,0,,All fields signed by the authorized person.,data\test_cases\case_014 +case_015,PASS,board_resolution,ACCEPTED,,Grace Lee,applicant,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_015 +case_016,PASS,shareholder_resolution,ACCEPTED,,John Doe,director,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_016 +case_017,PASS,wealth_management,ACCEPTED,,Jane Smith,secretary,3,reference_1.png; reference_2.png; reference_3.png,All fields signed by the authorized person.,data\test_cases\case_017 +case_018,PASS,board_resolution,ACCEPTED,,Frank Ng,scrutineer,0,,All fields signed by the authorized person.,data\test_cases\case_018 +case_019,PASS,tamil_trade_license,ACCEPTED,,Henry Ooi,officer,0,,All fields signed by the authorized person.,data\test_cases\case_019 +case_020,PASS,wealth_management,ACCEPTED,,Emily Raj,legal_representative,0,,All fields signed by the authorized person.,data\test_cases\case_020 +case_021,NO_SIGNATURE,tamil_trade_license,REJECTED,NO_SIGNATURE_FOUND,David Chen,director,3,reference_1.png; reference_2.png; reference_3.png,Signature field(s) left blank.,data\test_cases\case_021 +case_022,NO_SIGNATURE,tamil_trade_license,REJECTED,NO_SIGNATURE_FOUND,Bob Lim,officer,3,reference_1.png; reference_2.png; reference_3.png,Signature field(s) left blank.,data\test_cases\case_022 +case_023,NO_SIGNATURE,board_resolution,REJECTED,NO_SIGNATURE_FOUND,Alice Tan,applicant,3,reference_1.png; reference_2.png; reference_3.png,Signature field(s) left blank.,data\test_cases\case_023 +case_024,NO_SIGNATURE,tamil_trade_license,REJECTED,NO_SIGNATURE_FOUND,Carol Wong,majority_shareholder,0,,Signature field(s) left blank.,data\test_cases\case_024 +case_025,NO_SIGNATURE,bank_account_opening,REJECTED,NO_SIGNATURE_FOUND,Grace Lee,applicant,3,reference_1.png; reference_2.png; reference_3.png,Signature field(s) left blank.,data\test_cases\case_025 +case_026,WRONG_PERSON,board_resolution,REJECTED,IDENTITY_MISMATCH,John Doe,director,3,reference_1.png; reference_2.png; reference_3.png,Signed by Grace Lee instead of John Doe.,data\test_cases\case_026 +case_027,WRONG_PERSON,bank_account_opening,REJECTED,IDENTITY_MISMATCH,Jane Smith,secretary,3,reference_1.png; reference_2.png; reference_3.png,Signed by Henry Ooi instead of Jane Smith.,data\test_cases\case_027 +case_028,WRONG_PERSON,board_resolution,REJECTED,IDENTITY_MISMATCH,Frank Ng,scrutineer,0,,Signed by Henry Ooi instead of Frank Ng.,data\test_cases\case_028 +case_029,WRONG_PERSON,wealth_management,REJECTED,IDENTITY_MISMATCH,Henry Ooi,officer,0,,Signed by Bob Lim instead of Henry Ooi.,data\test_cases\case_029 +case_030,WRONG_PERSON,tamil_trade_license,REJECTED,IDENTITY_MISMATCH,Emily Raj,legal_representative,0,,Signed by Carol Wong instead of Emily Raj.,data\test_cases\case_030 +case_031,WRONG_PERSON,wealth_management,REJECTED,IDENTITY_MISMATCH,David Chen,director,3,reference_1.png; reference_2.png; reference_3.png,Signed by Emily Raj instead of David Chen.,data\test_cases\case_031 +case_032,WRONG_PERSON,shareholder_resolution,REJECTED,IDENTITY_MISMATCH,Bob Lim,officer,3,reference_1.png; reference_2.png; reference_3.png,Signed by John Doe instead of Bob Lim.,data\test_cases\case_032 +case_033,WRONG_PERSON,shareholder_resolution,REJECTED,IDENTITY_MISMATCH,Alice Tan,applicant,3,reference_1.png; reference_2.png; reference_3.png,Signed by David Chen instead of Alice Tan.,data\test_cases\case_033 +case_034,WRONG_PERSON,wealth_management,REJECTED,IDENTITY_MISMATCH,Carol Wong,majority_shareholder,0,,Signed by Alice Tan instead of Carol Wong.,data\test_cases\case_034 +case_035,WRONG_PERSON,wealth_management,REJECTED,IDENTITY_MISMATCH,Grace Lee,applicant,3,reference_1.png; reference_2.png; reference_3.png,Signed by Alice Tan instead of Grace Lee.,data\test_cases\case_035 +case_036,WRONG_ROLE,board_resolution,REJECTED,WRONG_ROLE,John Doe,director,3,reference_1.png; reference_2.png; reference_3.png,John Doe signed in the wrong role field.,data\test_cases\case_036 +case_037,WRONG_ROLE,board_resolution,REJECTED,WRONG_ROLE,Jane Smith,secretary,3,reference_1.png; reference_2.png; reference_3.png,Jane Smith signed in the wrong role field.,data\test_cases\case_037 +case_038,WRONG_ROLE,shareholder_resolution,REJECTED,WRONG_ROLE,Frank Ng,scrutineer,0,,Frank Ng signed in the wrong role field.,data\test_cases\case_038 +case_039,WRONG_ROLE,tamil_trade_license,REJECTED,WRONG_ROLE,Henry Ooi,officer,0,,Henry Ooi signed in the wrong role field.,data\test_cases\case_039 +case_040,WRONG_ROLE,shareholder_resolution,REJECTED,WRONG_ROLE,Emily Raj,legal_representative,0,,Emily Raj signed in the wrong role field.,data\test_cases\case_040 +case_041,WRONG_ROLE,board_resolution,REJECTED,WRONG_ROLE,David Chen,director,3,reference_1.png; reference_2.png; reference_3.png,David Chen signed in the wrong role field.,data\test_cases\case_041 +case_042,WRONG_ROLE,wealth_management,REJECTED,WRONG_ROLE,Bob Lim,officer,3,reference_1.png; reference_2.png; reference_3.png,Bob Lim signed in the wrong role field.,data\test_cases\case_042 +case_043,WRONG_ROLE,bank_account_opening,REJECTED,WRONG_ROLE,Alice Tan,applicant,3,reference_1.png; reference_2.png; reference_3.png,Alice Tan signed in the wrong role field.,data\test_cases\case_043 +case_044,WRONG_ROLE,tamil_trade_license,REJECTED,WRONG_ROLE,Carol Wong,majority_shareholder,0,,Carol Wong signed in the wrong role field.,data\test_cases\case_044 +case_045,WRONG_ROLE,wealth_management,REJECTED,WRONG_ROLE,Grace Lee,applicant,3,reference_1.png; reference_2.png; reference_3.png,Grace Lee signed in the wrong role field.,data\test_cases\case_045 +case_046,REQUIRED_PERSON_MISSING,shareholder_resolution,REJECTED,REQUIRED_SIGNATORY_MISSING,John Doe,director,3,reference_1.png; reference_2.png; reference_3.png,Only first field signed. Remaining 1 required field(s) blank.,data\test_cases\case_046 +case_047,REQUIRED_PERSON_MISSING,wealth_management,REJECTED,REQUIRED_SIGNATORY_MISSING,Jane Smith,secretary,3,reference_1.png; reference_2.png; reference_3.png,Only first field signed. Remaining 1 required field(s) blank.,data\test_cases\case_047 +case_048,REQUIRED_PERSON_MISSING,tamil_trade_license,REJECTED,REQUIRED_SIGNATORY_MISSING,Frank Ng,scrutineer,0,,Only first field signed. Remaining 1 required field(s) blank.,data\test_cases\case_048 +case_049,REQUIRED_PERSON_MISSING,bank_account_opening,REJECTED,REQUIRED_SIGNATORY_MISSING,Henry Ooi,officer,0,,Only first field signed. Remaining 1 required field(s) blank.,data\test_cases\case_049 +case_050,REQUIRED_PERSON_MISSING,bank_account_opening,REJECTED,REQUIRED_SIGNATORY_MISSING,Emily Raj,legal_representative,0,,Only first field signed. Remaining 1 required field(s) blank.,data\test_cases\case_050 diff --git a/project_a_output_progress/validation_overlays/bank_account_opening_overlay.png b/project_a_output_progress/validation_overlays/bank_account_opening_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..06323aa57eafb2d40d1a39bb9265b4a7600c2e44 --- /dev/null +++ b/project_a_output_progress/validation_overlays/bank_account_opening_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa5ee17b00b71e47f39442f97b5a83a67a48d7e8739a8423b2ab2dddd1c8765 +size 343515 diff --git a/project_a_output_progress/validation_overlays/banking_authorization_overlay.png b/project_a_output_progress/validation_overlays/banking_authorization_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..30f92cd1e338de9b9b03f54e1e8fb5847868553c --- /dev/null +++ b/project_a_output_progress/validation_overlays/banking_authorization_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11661da00e94072dbf197f4ee10ff6ae1e2346e2c91498e83e452fe78e8f2d91 +size 280007 diff --git a/project_a_output_progress/validation_overlays/board_resolution_overlay.png b/project_a_output_progress/validation_overlays/board_resolution_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..650dc57bb2bd219709a379d0946e07d74a14f6ed --- /dev/null +++ b/project_a_output_progress/validation_overlays/board_resolution_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f2cc296d48615e78e6f254cd1da91932b04176a59cb9c854667b21c4498070 +size 226713 diff --git a/project_a_output_progress/validation_overlays/cheque_continental_trust_overlay.png b/project_a_output_progress/validation_overlays/cheque_continental_trust_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2937a1b34d1047eda32b8add3e7df2c04ff03189 --- /dev/null +++ b/project_a_output_progress/validation_overlays/cheque_continental_trust_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63baedfb4f4f67f74236dd535f28c16a9bedf5d12ab45c392bfea81f89d3be07 +size 109659 diff --git a/project_a_output_progress/validation_overlays/cheque_global_merchant_overlay.png b/project_a_output_progress/validation_overlays/cheque_global_merchant_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..bd299e1422c7ce81cd6e1e54f8d22a12ec0675e5 --- /dev/null +++ b/project_a_output_progress/validation_overlays/cheque_global_merchant_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527acac22292aab498bb4e6c67b94b47a2bdce77e6ba37ad9e922fae90eb8676 +size 112670 diff --git a/project_a_output_progress/validation_overlays/cheque_standard_clearing_overlay.png b/project_a_output_progress/validation_overlays/cheque_standard_clearing_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..cbd1b265cf1693617f6388611c9f37e11c2a7617 --- /dev/null +++ b/project_a_output_progress/validation_overlays/cheque_standard_clearing_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabc9a6adc5eda31bca7f83d787838d1423e8170d5e1f1fef2ad84cde8c3ff67 +size 101998 diff --git a/project_a_output_progress/validation_overlays/chinese_business_registration_overlay.png b/project_a_output_progress/validation_overlays/chinese_business_registration_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..40073e40c8df9875bb87b61f2fd6137808daf191 --- /dev/null +++ b/project_a_output_progress/validation_overlays/chinese_business_registration_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a681416267b7825a11fac69f1f0a2b9ff0353e752ea7876ffa556b2b878a7a +size 120718 diff --git a/project_a_output_progress/validation_overlays/chinese_employee_application_overlay.png b/project_a_output_progress/validation_overlays/chinese_employee_application_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..1d97ddd3932f9b0df7005c1427ece04b08a263bc --- /dev/null +++ b/project_a_output_progress/validation_overlays/chinese_employee_application_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98f4f3c0e59dee3c6e14f1aba65547b74055ba4d4d42bb26bfaa49e7091e243 +size 164609 diff --git a/project_a_output_progress/validation_overlays/chinese_service_application_overlay.png b/project_a_output_progress/validation_overlays/chinese_service_application_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..c2b032ac49f7cd2b5bd9589b8cd78ae3390ab075 --- /dev/null +++ b/project_a_output_progress/validation_overlays/chinese_service_application_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc73438c6dc02667c459cb264ba4346a03555109b205dfb0302bfa71c7bb1d0e +size 204561 diff --git a/project_a_output_progress/validation_overlays/corporate_account_application_overlay.png b/project_a_output_progress/validation_overlays/corporate_account_application_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..3d88e99043ceb9fe66d8e249dc471a5bd64247cb --- /dev/null +++ b/project_a_output_progress/validation_overlays/corporate_account_application_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd4befa190b09f1bb4b00174fbdfee1cecf1afb4dcac0390d47df0f8d8c8414 +size 346946 diff --git a/project_a_output_progress/validation_overlays/shareholder_resolution_overlay.png b/project_a_output_progress/validation_overlays/shareholder_resolution_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6402c678876d3cfbbea0fe31142a7f6895522df8 --- /dev/null +++ b/project_a_output_progress/validation_overlays/shareholder_resolution_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31817495db1ca2261a656eb3c2a84c0cbee2104a4f13fe522301139561ef98f +size 232431 diff --git a/project_a_output_progress/validation_overlays/tamil_public_service_overlay.png b/project_a_output_progress/validation_overlays/tamil_public_service_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..2be73535089ae8fa0cb635ac91403b7badc9fa79 --- /dev/null +++ b/project_a_output_progress/validation_overlays/tamil_public_service_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c311828e7113ecef49470312dc979d5b8360381dc3a68c1a4b9bc50d7895c5d +size 443225 diff --git a/project_a_output_progress/validation_overlays/tamil_residence_assessment_overlay.png b/project_a_output_progress/validation_overlays/tamil_residence_assessment_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..6345c0cd1ca09989c8be365e60f1759d449df839 --- /dev/null +++ b/project_a_output_progress/validation_overlays/tamil_residence_assessment_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d40746435b004cb763db0886b63f53071fb80944dfd564fa47185efeaecedbb +size 340862 diff --git a/project_a_output_progress/validation_overlays/tamil_trade_license_overlay.png b/project_a_output_progress/validation_overlays/tamil_trade_license_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..a1deade5301931c88ff056b09f460d9ea2d0d712 --- /dev/null +++ b/project_a_output_progress/validation_overlays/tamil_trade_license_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846f3fb784b85dbc229395db778958c333b9ffbb637d73124fcd021c598d54b1 +size 309556 diff --git a/project_a_output_progress/validation_overlays/wealth_management_overlay.png b/project_a_output_progress/validation_overlays/wealth_management_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..ea782dcada7042afbbd271afe3bb725a679cea30 --- /dev/null +++ b/project_a_output_progress/validation_overlays/wealth_management_overlay.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae266e2c7b6b27a5e89e18ad4863bdcf288340c9ea618c5cea2b7a99b508503e +size 245293