diff --git a/block.py b/block.py index 4421479..af1a222 100644 --- a/block.py +++ b/block.py @@ -1,5 +1,9 @@ import logging -import random # <-- import random to pick a number +from typing import Dict +from pre_processing import pre_processing +from processing import processing +from post_processing import post_processing +from parse_report import extract_model_variables # Configure logging logging.basicConfig( @@ -8,11 +12,58 @@ logging.basicConfig( ) logger = logging.getLogger(__name__) -def __main__(application_id: str, tu_credit_report: dict) -> dict: - # Randomly pick an integer between 800 and 1400 - hd_score_m1 = random.randint(800, 1400) - - return { - "application_id": application_id, - "hd_score_m1": hd_score_m1 + +def __main__(application_id: str, creditBureau: dict) -> Dict: + """ + Process a single application record via the scoring pipeline. + Accepts extra keys; only required features are used and others ignored. + + Returns: + A dict containing: + - prediction: float + - grade: str + - reason_description: str or None + """ + # whitelist of required feature keys (lowercase) + required_keys = { + 'application_id', + 'evtg04','eads66','s004s','utlmag02','cv13','rev231','rev14','g106s','ct320', + 'mt34s','trv01','g250a','g960s','re36s','rev232','bc102s','utlmag04','re102s', + 'agg911','p02h','g051s','g417s','bc20s','rev225','duemag01','fi21s','us21s', + 'us34s','at36s','g102s','bkc14','balmag04','bkc323','bkc84','rev202','cta20', + 'cta21','agg902','utlmag03','rev84','mt20s','bc21s','st32s','fi34s','rev201', + 'bc97a','balmag01','g232s','balmag02','index02','bc28s','at28a','rev322','bkc322', + 'g201a','g416s','walshr02','fi35s','rle904','re28s','rev233','rev224','rev252', + 'rev253','cv21','rev321','index01','bkc328','br20s','pb34s','g403s','ct319','at28b', + 'mnpmag03','utlmag01','bc36s','bkc321','agg908','cv25','bc107s','bkc327','g990s', + 'pb28s','g411s','g221d','bc104s','g405s','p02d','ret12','bc98a','trv02','rev54', + 'bkc324','s114s','paymnt08','g105s','rev223','rev12','rev13','all231','agg901', + 'g408s','rev203','rvlr75','rvlr77','cv17','cta11','g242b' } + + record = extract_model_variables(creditBureau) + + processed = pre_processing(record) + + out = processing(processed) + + final = post_processing(out) + + final_result = { + 'application_id': application_id, + 'prediction': out['prediction'], + 'grade': final['grade'], + 'reason_description': final['reason_description'], + # 'tu_credit_report': record, + # 'pre_processed_output': processed + } + + logger.info(f"final_result: {final_result}") + + return final_result + +if __name__ == "__main__": + import json, sys + with open(sys.argv[1]) as f: + data = json.load(f) + __main__(application_id=data["application_id"], creditBureau=data) \ No newline at end of file diff --git a/parse_report.py b/parse_report.py new file mode 100644 index 0000000..809d195 --- /dev/null +++ b/parse_report.py @@ -0,0 +1,184 @@ +import json +import sys + +VARIABLE_TO_CODE_MAP = { + "agg901": "00H86", + "agg902": "00H86", + "agg908": "00H86", + "agg911": "00H86", + "all231": "00ASH", + "at28a": "00WR3", + "at28b": "00WR3", + "at36s": "00WR3", + "balmag01": "00H88", + "balmag02": "00H88", + "balmag04": "00AI5", + "bc102s": "00WR3", + "bc104s": "00WR3", + "bc107s": "00WR3", + "bc20s": "00WR3", + "bc21s": "00WR3", + "bc28s": "00WR3", + "bc36s": "00WR3", + "bc97a": "00WR3", + "bc98a": "00WR3", + "bkc14": "00ASF", + "bkc321": "00ASI", + "bkc322": "00ASI", + "bkc323": "00ASI", + "bkc324": "00ASI", + "bkc327": "00ASI", + "bkc328": "00ASI", + "bkc84": "00ASF", + "br20s": "00WR3", + "ct319": "00AI9", + "ct320": "00AI9", + "cta11": "00AI9", + "cta20": "00AI9", + "cta21": "00AI9", + "cv13": "00V26", + "cv17": "00V26", + "cv21": "00V26", + "cv25": "00V26", + "duemag01": "00AI5", + "fi21s": "00WR3", + "fi34s": "00WR3", + "fi35s": "00WR3", + "g051s": "00WR3", + "g102s": "00WR3", + "g105s": "00WR3", + "g106s": "00WR3", + "g201a": "00WR3", + "g221d": "00WR3", + "g232s": "00WR3", + "g242b": "00WR3", + "g250a": "00WR3", + "g403s": "00WR3", + "g405s": "00WR3", + "g408s": "00WR3", + "g411s": "00WR3", + "g416s": "00WR3", + "g417s": "00WR3", + "g960s": "00WR3", + "g990s": "00WR3", + "index01": "00V53", + "index02": "00V53", + "mnpmag03": "00AI5", + "mt20s": "00WR3", + "mt34s": "00WR3", + "p02d": "00WBO", + "p02h": "00WBO", + "paymnt08": "00H91", + "pb28s": "00WR3", + "pb34s": "00WR3", + "re102s": "00WR3", + "re28s": "00WR3", + "re36s": "00WR3", + "ret12": "00ASF", + "rev12": "00ASF", + "rev13": "00ASF", + "rev14": "00ASF", + "rev201": "00ASG", + "rev202": "00ASG", + "rev203": "00ASG", + "rev223": "00ASG", + "rev224": "00ASG", + "rev225": "00ASG", + "rev231": "00ASH", + "rev232": "00ASH", + "rev233": "00ASH", + "rev252": "00ASH", + "rev253": "00ASH", + "rev321": "00ASI", + "rev322": "00ASI", + "rev54": "00ASF", + "rev84": "00ASF", + "rle904": "00ASJ", + "rvlr75": "00WP4", + "rvlr77": "00WP4", + "s004s": "00WR3", + "s114s": "00WR3", + "st32s": "00WR3", + "trv01": "00H87", + "trv02": "00H87", + "us21s": "00WR3", + "us34s": "00WR3", + "utlmag01": "00AI5", + "utlmag02": "00AI5", + "utlmag03": "00AI5", + "utlmag04": "00AI5", + "walshr02": "00H90", +} + +SCORE_TO_CODE_MAP = { + "evtg04": "001NN", + "eads66": "00WDC" +} + + +def safe_get(d, *keys): + """Attempts both snake_case and camelCase keys.""" + for key in keys: + if key in d: + return d[key] + return {} + + +def extract_model_variables(creditBureau: dict) -> dict: + variable_code_map = VARIABLE_TO_CODE_MAP + score_code_map = SCORE_TO_CODE_MAP + # Step 0: Extract application_id + extracted = {} + + # Step 1: Locate add-on products with fallback casing + credit_bureau = safe_get(creditBureau, "creditBureau", "credit_bureau") + + subject_node = safe_get( + safe_get( + safe_get(credit_bureau, "product"), + "subject" + ), + "subject_record", "subjectRecord" + ) + + add_ons = safe_get(subject_node, "add_on_product", "addOnProduct") + value_map = {} + + + # Step 2: Flatten values + for product in add_ons: + code = product.get("code") + score_model = safe_get(product, "score_model", "scoreModel") + + # 2a. Flatten characteristics (already done) + characteristics = score_model.get("characteristic", []) + for char in characteristics: + if isinstance(char, dict) and "id" in char and "value" in char: + key = char["id"].lower() + value_map[(code, key)] = char["value"] + + # 2b. Also capture score result if present + score = safe_get(score_model, "score") + if score and "results" in score: + value_map[(code, "score")] = score["results"] + + # Step 3.a: Use variable_to_code_map to fetch final vars + for var, code in variable_code_map.items(): + extracted[var] = value_map.get((code, var)) + + # Step 3.b: Use score_to_code_map to fetch score vars + for key, code in SCORE_TO_CODE_MAP.items(): + value = value_map.get((code, "score")) + if value: + extracted[key] = value.lstrip("+") + + return extracted + +if __name__ == "__main__": + for filename in sys.argv[1:]: + with open(filename) as f: + data = json.load(f) + print(f"\n--- Extracting from: {filename} ---") + result = extract_model_variables(data) + for k, v in result.items(): + print(f"{k}: {v}") diff --git a/post_processing.py b/post_processing.py new file mode 100644 index 0000000..180d4e9 --- /dev/null +++ b/post_processing.py @@ -0,0 +1,61 @@ +import math + +def post_processing(processing_output): + prediction = processing_output["prediction"] + shape_reasoncode = processing_output["shape_reasoncode"] + + # grade mapping: [0.00,0.01]→M1, (0.01,0.02]→M2, … cap at M14 + if prediction < 0: + grade = "M14" + else: + m = math.ceil(prediction / 0.01) + m = max(m, 1) + m = min(m, 14) + grade = f"M{m}" + + # if prediction ≤ 0.04, not declined + if prediction <= 0.04: + return { + "grade": grade, + "reason_description": None + } + + conditions = { + 'evtg04': lambda x: x < 700, + 'eads66': lambda x: x < 700, + 's004s': lambda x: x < 12, + 'mt34s': lambda x: x > 95, + 'ct320': lambda x: x <= 3, + 'us21s': lambda x: x <= 3, + 'utlmag02': lambda x: x > 300, + 'trv01': lambda x: x > 3, + 'us34s': lambda x: x > 90 + } + + reason_map = { + 'evtg04': "System Generated", + 'eads66': "System Generated", + 's004s': "Length of time on file is too short", + 'mt34s': "Too high open mortgage credit utilization recently", + 'ct320': "Insufficient payment activity", + 'us21s': "Length of time since most recent installment account has been established is too short", + 'utlmag02': "Too high revolving credit utilization over the last 24 months", + 'trv01': "Recency of a balance overlimit on a bankcard account", + 'us34s': "Too high open unsecured installment credit utilization recently" + } + + for item in shape_reasoncode: + feat = item["feature"] + val = item["value"] + cond = conditions.get(feat) + if cond and cond(val): + return { + "grade": grade, + "reason_description": reason_map[feat] + } + + return { + "grade": grade, + "reason_description": None + } + diff --git a/pre_processing.py b/pre_processing.py new file mode 100644 index 0000000..8e29740 --- /dev/null +++ b/pre_processing.py @@ -0,0 +1,360 @@ +import math + + +lookup_dict = { + "balmag04": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 427.0 + }, + "utlmag01": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 446.0 + }, + "utlmag02": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 486.0 + }, + "utlmag03": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 492.0 + }, + "utlmag04": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 414.0 + }, + "mnpmag03": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 494.0 + }, + "duemag01": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 488.0 + }, + "trv01": { + "data_type": "int", "valid_min": 1.0, "valid_max": 24.0, "default_treatment_type": "unk", "observed_cap_min_value": 1.0, "observed_cap_max_value": 24.0 + }, + "trv02": { + "data_type": "int", "valid_min": 0.0, "valid_max": 12.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 12.0 + }, + "index01": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 999.0 + }, + "index02": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 999.0 + }, + "rvlr75": { + "data_type": "float", "valid_min": 0.0, "valid_max": 5.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 5.0 + }, + "rvlr77": { + "data_type": "float", "valid_min": 0.0, "valid_max": 5.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 5.0 + }, + "rev12": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 109.0 + }, + "rev13": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 82.0 + }, + "rev14": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 56.0 + }, + "rev54": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 9.0 + }, + "rev84": { + "data_type": "int", "valid_min": 0.0, "valid_max": 23.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "bkc14": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 47.0 + }, + "bkc84": { + "data_type": "int", "valid_min": 0.0, "valid_max": 23.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "ret12": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 42.0 + }, + "evtg04": { + "data_type": "int", "valid_min": 300.0, "valid_max": 850.0, "default_treatment_type": "unk", "observed_cap_min_value": 300.0, "observed_cap_max_value": 845.0 + }, + "rev201": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "rev202": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "rev203": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "rev223": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 49.0 + }, + "rev224": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 47.0 + }, + "rev225": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 45.0 + }, + "walshr02": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 2.0 + }, + "rev231": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 18101.0 + }, + "rev232": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 38963.0 + }, + "rev233": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 68709.0 + }, + "rev252": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 13988.0 + }, + "rev253": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 12347.0 + }, + "all231": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 38949.0 + }, + "at28a": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 1330166.0 + }, + "at28b": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 351273.0 + }, + "at36s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 999.0 + }, + "bc20s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 510.0 + }, + "bc21s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 190.0 + }, + "bc28s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 205768.0 + }, + "bc36s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 999.0 + }, + "bc97a": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 184747.0 + }, + "bc98a": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 186395.0 + }, + "bc102s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 31000.0 + }, + "bc104s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 99.0 + }, + "bc107s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 15.0 + }, + "br20s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 495.0 + }, + "fi21s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 162.0 + }, + "fi34s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 100.0 + }, + "fi35s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 70016.0 + }, + "g051s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "g102s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "g105s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "g201a": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 255142.0 + }, + "g221d": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 1.0 + }, + "g232s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 21.0 + }, + "g250a": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 13.0 + }, + "g960s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 17.0 + }, + "g990s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 10.0 + }, + "mt20s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 261.0 + }, + "mt34s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 101.0 + }, + "pb28s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 192100.0 + }, + "pb34s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 100.0 + }, + "re28s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 311518.0 + }, + "re36s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 999.0 + }, + "re102s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 41750.0 + }, + "s004s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 179.0 + }, + "s114s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 5.0 + }, + "st32s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 221686.0 + }, + "g106s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 590.0 + }, + "g242b": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "us21s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 153.0 + }, + "us34s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 101.0 + }, + "g403s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 5.0 + }, + "g405s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "g408s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "g411s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 8.0 + }, + "g416s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "g417s": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 23.0 + }, + "agg901": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "agg902": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "agg908": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 69376.0 + }, + "agg911": { + "data_type": "float", "valid_min": 0.0, "valid_max": 10000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 107.0 + }, + "rle904": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 309634.0 + }, + "p02d": { + "data_type": "int", "valid_min": 0.0, "valid_max": 99.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 3.0 + }, + "p02h": { + "data_type": "int", "valid_min": 0.0, "valid_max": 99.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 7.0 + }, + "balmag01": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 474.0 + }, + "balmag02": { + "data_type": "int", "valid_min": 0.0, "valid_max": 600.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 516.0 + }, + "cv13": { + "data_type": "int", "valid_min": 0.0, "valid_max": 100.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "cv17": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 9.0 + }, + "cv21": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 171153.0 + }, + "cv25": { + "data_type": "int", "valid_min": 0.0, "valid_max": 100.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 33.0 + }, + "ct319": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 98.0 + }, + "ct320": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 52.0 + }, + "cta11": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 71.0 + }, + "cta20": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 45.0 + }, + "cta21": { + "data_type": "int", "valid_min": 0.0, "valid_max": 999.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 148.0 + }, + "paymnt08": { + "data_type": "float", "valid_min": 0.0, "valid_max": 50.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 50.0 + }, + "rev321": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 234408.0 + }, + "rev322": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 219698.0 + }, + "bkc321": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 171024.0 + }, + "bkc322": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 162590.0 + }, + "bkc323": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 152068.0 + }, + "bkc324": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 136763.0 + }, + "bkc327": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 171143.0 + }, + "bkc328": { + "data_type": "int", "valid_min": 0.0, "valid_max": 1000000000.0, "default_treatment_type": "unk", "observed_cap_min_value": 0.0, "observed_cap_max_value": 164352.0 + }, + "eads66": { + "data_type": "float", "valid_min": 300.0, "valid_max": 850.0, "default_treatment_type": "unk", "observed_cap_min_value": 300.0, "observed_cap_max_value": 820.0 + } +} + + +# 1. Pre-processing: type casting and variable treatment +def pre_processing(input_dict): + processed = {} + for var, cfg in lookup_dict.items(): + val = input_dict.get(var) + # Cast to required type + try: + if cfg.get("data_type") == "int": + val = int(val) + elif cfg.get("data_type") == "float": + val = float(val) + except (ValueError, TypeError): + val = None + # Variable treatment + vmin = cfg.get("valid_min") + vmax = cfg.get("valid_max") + if val is not None and not (math.isnan(vmin) or math.isnan(vmax)): + if cfg.get("default_treatment_type") == "unk": + if val < vmin or val > vmax: + val = float("nan") + cmin = cfg.get("observed_cap_min_value") + cmax = cfg.get("observed_cap_max_value") + if not math.isnan(val): + if cmin is not None and vmin <= val < cmin: + val = cmin + if cmax is not None and cmax < val <= vmax: + val = cmax + processed[var] = val + return processed \ No newline at end of file diff --git a/processing.py b/processing.py new file mode 100644 index 0000000..105b2a7 --- /dev/null +++ b/processing.py @@ -0,0 +1,39 @@ +import joblib +import xgboost as xgb +import shap + +def processing(processed_dict): + # model_path = r"C:\Users\abinisha\citrus\centurion-dataform-mcard\flowx\model_1\artifacts\xgboost_model_v2.joblib" + model_path = "./xgboost_model.joblib" + model = joblib.load(model_path) + explainer = shap.TreeExplainer(model) + feature_names = model.feature_names + + # build and score + X = [processed_dict[f] for f in feature_names] + dmatrix = xgb.DMatrix([X], feature_names=feature_names) + pred = float(model.predict(dmatrix)[0]) + + # get SHAP values as 1×n_features + shap_matrix = explainer.shap_values(dmatrix) + shap_vals = shap_matrix[0] if getattr(shap_matrix, "ndim", 1) > 1 else shap_matrix + + # rank & sort features by descending SHAP impact + ranked = sorted(zip(feature_names, shap_vals), + key=lambda fv: fv[1], + reverse=True) + + # build a *list* of pre-sorted reason-codes + shape_reasoncode = [ + { + "feature": feat, + "value": processed_dict[feat], + "shap_rank": i+1 + } + for i, (feat, _) in enumerate(ranked) + ] + + return { + "prediction": pred, + "shape_reasoncode": shape_reasoncode + } \ No newline at end of file diff --git a/request_schema.json b/request_schema.json index 180d1b3..52aa1ec 100644 --- a/request_schema.json +++ b/request_schema.json @@ -6,16 +6,12 @@ "type": ["string", "null"], "description": "Unique identifier for the application." }, - "tu_credit_report": { + "evtg04": { "type": ["object", "null"], - "description": "User Credit report", - "properties": { - "creditBureau": { - "type": "object", - "description": "Credit bureau details" - } - } + "description": "VantageScore 4.0" } }, - "required": [] + "required": [ + "application_id" + ] } diff --git a/requirements.txt b/requirements.txt index 4c137c4..84fc996 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -jmespath == 1.0.1 -regex == 2023.12.25 +joblib == 1.3.2 +xgboost == 2.1.4 +shap == 0.46.0 diff --git a/response_schema.json b/response_schema.json index e39eea7..7e7b683 100644 --- a/response_schema.json +++ b/response_schema.json @@ -3,12 +3,26 @@ "type": "object", "properties": { "application_id": { - "type": ["string", "null"], - "description": "Application Key" + "type": "string", + "description": "Unique identifier for the application" }, - "hd_score_m1": { - "type": ["number", "null"], - "description": "HD Fraud Score M1" + "prediction": { + "type": "number", + "description": "Model's predicted probability score" + }, + "grade": { + "type": "string", + "description": "HD Model Grade" + }, + "reason_description": { + "type": "string", + "description": "Reason for the model decision" } - } + }, + "required": [ + "application_id", + "prediction", + "grade", + "reason_description" + ] } diff --git a/test_block.py b/test_block.py new file mode 100644 index 0000000..83886c6 --- /dev/null +++ b/test_block.py @@ -0,0 +1,12611 @@ +# Working test_block.py +import unittest +from block import __main__ + + +input_json = { + "application_id": "1234567890", + "creditBureau": { + "@attributes": { + "{http://www.w3.org/2001/XMLSchema-instance}schemaLocation": "http://www.transunion.com/namespace" + }, + "document": "response", + "product": { + "code": "07000", + "embeddedData": "PDF_IN_BASE64_ENCODED_FILE_SCRUBBED", + "subject": { + "number": "1", + "subjectRecord": { + "addOnProduct": [ + { + "code": "06500", + "highRiskFraudAlert": { + "message": [ + { + "@attributes": { + "source": "input" + }, + "code": "2507", + "custom": { + "addressMatch": "current" + } + }, + { + "@attributes": { + "source": "input" + }, + "code": "3020" + }, + { + "@attributes": { + "source": "input" + }, + "code": "9021" + }, + { + "@attributes": { + "source": "input" + }, + "code": "9017" + } + ] + }, + "status": "delivered" + }, + { + "code": "00W18", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "010", + "rank": "1" + }, + { + "code": "018", + "rank": "2" + }, + { + "code": "012", + "rank": "3" + }, + { + "code": "013", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+682" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00V60", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "34", + "rank": "1" + }, + { + "code": "63", + "rank": "2" + }, + { + "code": "39", + "rank": "3" + }, + { + "code": "12", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+623", + "scoreCard": "09" + } + }, + "status": "defaultDelivered" + }, + { + "code": "001NN", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "12", + "rank": "1" + }, + { + "code": "31", + "rank": "2" + }, + { + "code": "62", + "rank": "3" + }, + { + "code": "06", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+850", + "scoreCard": "06" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00A3Z", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "203", + "rank": "1" + }, + { + "code": "031", + "rank": "2" + }, + { + "code": "022", + "rank": "3" + }, + { + "code": "192", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+651", + "scoreCard": "07" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00A8B", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "031", + "rank": "1" + }, + { + "code": "022", + "rank": "2" + }, + { + "code": "073", + "rank": "3" + }, + { + "code": "192", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+657", + "scoreCard": "04" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00WF1", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "022", + "rank": "1" + }, + { + "code": "035", + "rank": "2" + }, + { + "code": "118", + "rank": "3" + }, + { + "code": "073", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+627", + "scoreCard": "3" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00AEO", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "182", + "rank": "1" + }, + { + "code": "031", + "rank": "2" + }, + { + "code": "022", + "rank": "3" + }, + { + "code": "066", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+553", + "scoreCard": "1" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00H85", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H85", + "id": "TRD", + "value": "0000000038" + }, + { + "algorithmID": "00H85", + "id": "BC_TRD", + "value": "0000000012" + }, + { + "algorithmID": "00H85", + "id": "INST_TRD", + "value": "0000000015" + }, + { + "algorithmID": "00H85", + "id": "NOMT_TRD", + "value": "0000000038" + }, + { + "algorithmID": "00H85", + "id": "REV_TRD", + "value": "0000000023" + }, + { + "algorithmID": "00H85", + "id": "RTL_TRD", + "value": "0000000015" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H86", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H86", + "id": "AGG101", + "value": "0000073496" + }, + { + "algorithmID": "00H86", + "id": "AGG102", + "value": "0000102788" + }, + { + "algorithmID": "00H86", + "id": "AGG103", + "value": "0000126709" + }, + { + "algorithmID": "00H86", + "id": "AGG104", + "value": "0000128355" + }, + { + "algorithmID": "00H86", + "id": "AGG105", + "value": "0000122544" + }, + { + "algorithmID": "00H86", + "id": "AGG106", + "value": "0000102077" + }, + { + "algorithmID": "00H86", + "id": "AGG107", + "value": "0000103041" + }, + { + "algorithmID": "00H86", + "id": "AGG108", + "value": "0000105367" + }, + { + "algorithmID": "00H86", + "id": "AGG109", + "value": "0000105969" + }, + { + "algorithmID": "00H86", + "id": "AGG110", + "value": "0000099330" + }, + { + "algorithmID": "00H86", + "id": "AGG111", + "value": "0000101941" + }, + { + "algorithmID": "00H86", + "id": "AGG112", + "value": "0000108026" + }, + { + "algorithmID": "00H86", + "id": "AGG113", + "value": "0000109371" + }, + { + "algorithmID": "00H86", + "id": "AGG114", + "value": "0000098850" + }, + { + "algorithmID": "00H86", + "id": "AGG115", + "value": "0000105786" + }, + { + "algorithmID": "00H86", + "id": "AGG116", + "value": "0000106262" + }, + { + "algorithmID": "00H86", + "id": "AGG117", + "value": "0000103360" + }, + { + "algorithmID": "00H86", + "id": "AGG118", + "value": "0000105010" + }, + { + "algorithmID": "00H86", + "id": "AGG119", + "value": "0000105058" + }, + { + "algorithmID": "00H86", + "id": "AGG120", + "value": "0000105821" + }, + { + "algorithmID": "00H86", + "id": "AGG121", + "value": "0000106506" + }, + { + "algorithmID": "00H86", + "id": "AGG122", + "value": "0000106551" + }, + { + "algorithmID": "00H86", + "id": "AGG123", + "value": "0000107698" + }, + { + "algorithmID": "00H86", + "id": "AGG124", + "value": "0000092453" + }, + { + "algorithmID": "00H86", + "id": "AGG201", + "value": "0000108986" + }, + { + "algorithmID": "00H86", + "id": "AGG202", + "value": "0000136613" + }, + { + "algorithmID": "00H86", + "id": "AGG203", + "value": "0000157013" + }, + { + "algorithmID": "00H86", + "id": "AGG204", + "value": "0000157013" + }, + { + "algorithmID": "00H86", + "id": "AGG205", + "value": "0000150609" + }, + { + "algorithmID": "00H86", + "id": "AGG206", + "value": "0000132242" + }, + { + "algorithmID": "00H86", + "id": "AGG207", + "value": "0000132242" + }, + { + "algorithmID": "00H86", + "id": "AGG208", + "value": "0000132812" + }, + { + "algorithmID": "00H86", + "id": "AGG209", + "value": "0000132812" + }, + { + "algorithmID": "00H86", + "id": "AGG210", + "value": "0000126408" + }, + { + "algorithmID": "00H86", + "id": "AGG211", + "value": "0000132747" + }, + { + "algorithmID": "00H86", + "id": "AGG212", + "value": "0000138121" + }, + { + "algorithmID": "00H86", + "id": "AGG213", + "value": "0000138121" + }, + { + "algorithmID": "00H86", + "id": "AGG214", + "value": "0000130542" + }, + { + "algorithmID": "00H86", + "id": "AGG215", + "value": "0000136946" + }, + { + "algorithmID": "00H86", + "id": "AGG216", + "value": "0000136946" + }, + { + "algorithmID": "00H86", + "id": "AGG217", + "value": "0000137846" + }, + { + "algorithmID": "00H86", + "id": "AGG218", + "value": "0000133546" + }, + { + "algorithmID": "00H86", + "id": "AGG219", + "value": "0000132546" + }, + { + "algorithmID": "00H86", + "id": "AGG220", + "value": "0000132546" + }, + { + "algorithmID": "00H86", + "id": "AGG221", + "value": "0000132546" + }, + { + "algorithmID": "00H86", + "id": "AGG222", + "value": "0000129046" + }, + { + "algorithmID": "00H86", + "id": "AGG223", + "value": "0000131396" + }, + { + "algorithmID": "00H86", + "id": "AGG224", + "value": "0000117165" + }, + { + "algorithmID": "00H86", + "id": "AGG301", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG302", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG303", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG304", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG305", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG306", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG307", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG308", + "value": "0000000046" + }, + { + "algorithmID": "00H86", + "id": "AGG309", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG310", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG311", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG312", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG313", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG314", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG315", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG316", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG317", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG318", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG319", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG320", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG321", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG322", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG323", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG324", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG401", + "value": "0000021168" + }, + { + "algorithmID": "00H86", + "id": "AGG402", + "value": "0000025006" + }, + { + "algorithmID": "00H86", + "id": "AGG403", + "value": "0000002762" + }, + { + "algorithmID": "00H86", + "id": "AGG404", + "value": "0000002762" + }, + { + "algorithmID": "00H86", + "id": "AGG405", + "value": "0000002034" + }, + { + "algorithmID": "00H86", + "id": "AGG406", + "value": "0000002260" + }, + { + "algorithmID": "00H86", + "id": "AGG407", + "value": "0000003129" + }, + { + "algorithmID": "00H86", + "id": "AGG408", + "value": "0000002209" + }, + { + "algorithmID": "00H86", + "id": "AGG409", + "value": "0000001635" + }, + { + "algorithmID": "00H86", + "id": "AGG410", + "value": "0000001699" + }, + { + "algorithmID": "00H86", + "id": "AGG411", + "value": "0000006629" + }, + { + "algorithmID": "00H86", + "id": "AGG412", + "value": "0000001996" + }, + { + "algorithmID": "00H86", + "id": "AGG413", + "value": "0000022833" + }, + { + "algorithmID": "00H86", + "id": "AGG414", + "value": "0000001932" + }, + { + "algorithmID": "00H86", + "id": "AGG415", + "value": "0000001886" + }, + { + "algorithmID": "00H86", + "id": "AGG416", + "value": "0000001983" + }, + { + "algorithmID": "00H86", + "id": "AGG417", + "value": "0000003914" + }, + { + "algorithmID": "00H86", + "id": "AGG418", + "value": "0000001961" + }, + { + "algorithmID": "00H86", + "id": "AGG419", + "value": "0000001846" + }, + { + "algorithmID": "00H86", + "id": "AGG420", + "value": "0000001802" + }, + { + "algorithmID": "00H86", + "id": "AGG421", + "value": "0000002853" + }, + { + "algorithmID": "00H86", + "id": "AGG422", + "value": "0000003053" + }, + { + "algorithmID": "00H86", + "id": "AGG423", + "value": "0000002198" + }, + { + "algorithmID": "00H86", + "id": "AGG424", + "value": "0000001149" + }, + { + "algorithmID": "00H86", + "id": "AGG501", + "value": "0000011376" + }, + { + "algorithmID": "00H86", + "id": "AGG502", + "value": "0000013544" + }, + { + "algorithmID": "00H86", + "id": "AGG503", + "value": "0000014428" + }, + { + "algorithmID": "00H86", + "id": "AGG504", + "value": "0000014468" + }, + { + "algorithmID": "00H86", + "id": "AGG505", + "value": "0000013881" + }, + { + "algorithmID": "00H86", + "id": "AGG506", + "value": "0000014012" + }, + { + "algorithmID": "00H86", + "id": "AGG507", + "value": "0000013522" + }, + { + "algorithmID": "00H86", + "id": "AGG508", + "value": "0000014257" + }, + { + "algorithmID": "00H86", + "id": "AGG509", + "value": "0000013714" + }, + { + "algorithmID": "00H86", + "id": "AGG510", + "value": "0000012850" + }, + { + "algorithmID": "00H86", + "id": "AGG511", + "value": "0000012856" + }, + { + "algorithmID": "00H86", + "id": "AGG512", + "value": "0000013082" + }, + { + "algorithmID": "00H86", + "id": "AGG513", + "value": "0000013289" + }, + { + "algorithmID": "00H86", + "id": "AGG514", + "value": "0000012309" + }, + { + "algorithmID": "00H86", + "id": "AGG515", + "value": "0000011673" + }, + { + "algorithmID": "00H86", + "id": "AGG516", + "value": "0000011314" + }, + { + "algorithmID": "00H86", + "id": "AGG517", + "value": "0000009809" + }, + { + "algorithmID": "00H86", + "id": "AGG518", + "value": "0000008762" + }, + { + "algorithmID": "00H86", + "id": "AGG519", + "value": "0000007805" + }, + { + "algorithmID": "00H86", + "id": "AGG520", + "value": "0000007516" + }, + { + "algorithmID": "00H86", + "id": "AGG521", + "value": "0000007354" + }, + { + "algorithmID": "00H86", + "id": "AGG522", + "value": "0000005863" + }, + { + "algorithmID": "00H86", + "id": "AGG523", + "value": "0000006309" + }, + { + "algorithmID": "00H86", + "id": "AGG524", + "value": "0000004584" + }, + { + "algorithmID": "00H86", + "id": "AGG601", + "value": "0000030000" + }, + { + "algorithmID": "00H86", + "id": "AGG602", + "value": "0000029850" + }, + { + "algorithmID": "00H86", + "id": "AGG603", + "value": "0000024800" + }, + { + "algorithmID": "00H86", + "id": "AGG604", + "value": "0000024800" + }, + { + "algorithmID": "00H86", + "id": "AGG605", + "value": "0000024800" + }, + { + "algorithmID": "00H86", + "id": "AGG606", + "value": "0000024800" + }, + { + "algorithmID": "00H86", + "id": "AGG607", + "value": "0000024800" + }, + { + "algorithmID": "00H86", + "id": "AGG608", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG609", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG610", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG611", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG612", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG613", + "value": "0000023800" + }, + { + "algorithmID": "00H86", + "id": "AGG614", + "value": "0000023550" + }, + { + "algorithmID": "00H86", + "id": "AGG615", + "value": "0000023550" + }, + { + "algorithmID": "00H86", + "id": "AGG616", + "value": "0000023550" + }, + { + "algorithmID": "00H86", + "id": "AGG617", + "value": "0000023550" + }, + { + "algorithmID": "00H86", + "id": "AGG618", + "value": "0000020050" + }, + { + "algorithmID": "00H86", + "id": "AGG619", + "value": "0000019050" + }, + { + "algorithmID": "00H86", + "id": "AGG620", + "value": "0000019050" + }, + { + "algorithmID": "00H86", + "id": "AGG621", + "value": "0000019050" + }, + { + "algorithmID": "00H86", + "id": "AGG622", + "value": "0000015550" + }, + { + "algorithmID": "00H86", + "id": "AGG623", + "value": "0000016900" + }, + { + "algorithmID": "00H86", + "id": "AGG624", + "value": "0000016900" + }, + { + "algorithmID": "00H86", + "id": "AGG701", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG702", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG703", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG704", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG705", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG706", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG707", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG708", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG709", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG710", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG711", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG712", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG713", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG714", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG715", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG716", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG717", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG718", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG719", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG720", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG721", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG722", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG723", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG724", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG801", + "value": "0000000310" + }, + { + "algorithmID": "00H86", + "id": "AGG802", + "value": "0000001109" + }, + { + "algorithmID": "00H86", + "id": "AGG803", + "value": "0000000269" + }, + { + "algorithmID": "00H86", + "id": "AGG804", + "value": "0000000269" + }, + { + "algorithmID": "00H86", + "id": "AGG805", + "value": "0000000205" + }, + { + "algorithmID": "00H86", + "id": "AGG806", + "value": "0000000180" + }, + { + "algorithmID": "00H86", + "id": "AGG807", + "value": "0000000932" + }, + { + "algorithmID": "00H86", + "id": "AGG808", + "value": "0000000202" + }, + { + "algorithmID": "00H86", + "id": "AGG809", + "value": "0000000137" + }, + { + "algorithmID": "00H86", + "id": "AGG810", + "value": "0000000166" + }, + { + "algorithmID": "00H86", + "id": "AGG811", + "value": "0000000179" + }, + { + "algorithmID": "00H86", + "id": "AGG812", + "value": "0000000210" + }, + { + "algorithmID": "00H86", + "id": "AGG813", + "value": "0000000179" + }, + { + "algorithmID": "00H86", + "id": "AGG814", + "value": "0000000183" + }, + { + "algorithmID": "00H86", + "id": "AGG815", + "value": "0000000210" + }, + { + "algorithmID": "00H86", + "id": "AGG816", + "value": "0000000186" + }, + { + "algorithmID": "00H86", + "id": "AGG817", + "value": "0000000267" + }, + { + "algorithmID": "00H86", + "id": "AGG818", + "value": "0000000314" + }, + { + "algorithmID": "00H86", + "id": "AGG819", + "value": "0000000184" + }, + { + "algorithmID": "00H86", + "id": "AGG820", + "value": "0000000190" + }, + { + "algorithmID": "00H86", + "id": "AGG821", + "value": "0000000687" + }, + { + "algorithmID": "00H86", + "id": "AGG822", + "value": "0000001742" + }, + { + "algorithmID": "00H86", + "id": "AGG823", + "value": "0000000751" + }, + { + "algorithmID": "00H86", + "id": "AGG824", + "value": "0000000250" + }, + { + "algorithmID": "00H86", + "id": "AGG901", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG902", + "value": "0000000003" + }, + { + "algorithmID": "00H86", + "id": "AGG903", + "value": "0000000000" + }, + { + "algorithmID": "00H86", + "id": "AGG904", + "value": "0000000002" + }, + { + "algorithmID": "00H86", + "id": "AGG905", + "value": "0000047.16" + }, + { + "algorithmID": "00H86", + "id": "AGG906", + "value": "0000053.94" + }, + { + "algorithmID": "00H86", + "id": "AGG907", + "value": "0000014428" + }, + { + "algorithmID": "00H86", + "id": "AGG908", + "value": "0000014468" + }, + { + "algorithmID": "00H86", + "id": "AGG909", + "value": "0000000004" + }, + { + "algorithmID": "00H86", + "id": "AGG910", + "value": "0000058.18" + }, + { + "algorithmID": "00H86", + "id": "AGG911", + "value": "0000059.90" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H87", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H87", + "id": "TRV01", + "value": "0000000999" + }, + { + "algorithmID": "00H87", + "id": "TRV02", + "value": "0000000000" + }, + { + "algorithmID": "00H87", + "id": "TRV03", + "value": "0000000005" + }, + { + "algorithmID": "00H87", + "id": "TRV04", + "value": "0000000010" + }, + { + "algorithmID": "00H87", + "id": "TRV05", + "value": "0000000004" + }, + { + "algorithmID": "00H87", + "id": "TRV06", + "value": "0000000012" + }, + { + "algorithmID": "00H87", + "id": "TRV07", + "value": "0000000010" + }, + { + "algorithmID": "00H87", + "id": "TRV08", + "value": "0000000035" + }, + { + "algorithmID": "00H87", + "id": "TRV09", + "value": "0000000009" + }, + { + "algorithmID": "00H87", + "id": "TRV10", + "value": "0000000012" + }, + { + "algorithmID": "00H87", + "id": "TRV11", + "value": "0000000002" + }, + { + "algorithmID": "00H87", + "id": "TRV12", + "value": "0000000004" + }, + { + "algorithmID": "00H87", + "id": "TRV13", + "value": "0000000006" + }, + { + "algorithmID": "00H87", + "id": "TRV14", + "value": "0000000008" + }, + { + "algorithmID": "00H87", + "id": "TRV15", + "value": "0000000001" + }, + { + "algorithmID": "00H87", + "id": "TRV16", + "value": "0000000003" + }, + { + "algorithmID": "00H87", + "id": "TRV17", + "value": "0000000004" + }, + { + "algorithmID": "00H87", + "id": "TRV18", + "value": "0000000003" + }, + { + "algorithmID": "00H87", + "id": "TRV19", + "value": "0000000000" + }, + { + "algorithmID": "00H87", + "id": "TRV20", + "value": "0000000000" + }, + { + "algorithmID": "00H87", + "id": "TRV21", + "value": "0000000000" + }, + { + "algorithmID": "00H87", + "id": "TRV22", + "value": "0000000000" + }, + { + "algorithmID": "00H87", + "id": "TRV23", + "value": "-000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H88", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H88", + "id": "BALMAG01", + "value": "0000000162" + }, + { + "algorithmID": "00H88", + "id": "BALMAG02", + "value": "0000000296" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00AI5", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AI5", + "id": "BALMAG03", + "value": "0000000296" + }, + { + "algorithmID": "00AI5", + "id": "BALMAG04", + "value": "0000000098" + }, + { + "algorithmID": "00AI5", + "id": "UTLMAG01", + "value": "0000000198" + }, + { + "algorithmID": "00AI5", + "id": "UTLMAG02", + "value": "0000000320" + }, + { + "algorithmID": "00AI5", + "id": "UTLMAG03", + "value": "0000000280" + }, + { + "algorithmID": "00AI5", + "id": "UTLMAG04", + "value": "0000000124" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG1A", + "value": "0000000299" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG01", + "value": "0000000299" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG02", + "value": "0000000299" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG03", + "value": "-000000004" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG04", + "value": "0000000299" + }, + { + "algorithmID": "00AI5", + "id": "PDMAG05", + "value": "-000000004" + }, + { + "algorithmID": "00AI5", + "id": "MNPMAG01", + "value": "0000000414" + }, + { + "algorithmID": "00AI5", + "id": "MNPMAG02", + "value": "0000000394" + }, + { + "algorithmID": "00AI5", + "id": "MNPMAG03", + "value": "0000000378" + }, + { + "algorithmID": "00AI5", + "id": "MNPMAG04", + "value": "0000000244" + }, + { + "algorithmID": "00AI5", + "id": "DUEMAG01", + "value": "0000000414" + }, + { + "algorithmID": "00AI5", + "id": "AEPMAG01", + "value": "0000000290" + }, + { + "algorithmID": "00AI5", + "id": "AEPMAG02", + "value": "0000000312" + }, + { + "algorithmID": "00AI5", + "id": "AEPMAG03", + "value": "0000000346" + }, + { + "algorithmID": "00AI5", + "id": "AEPMAG04", + "value": "0000000353" + }, + { + "algorithmID": "00AI5", + "id": "AEPMAG05", + "value": "0000000315" + }, + { + "algorithmID": "00AI5", + "id": "CLMAG01", + "value": "0000000274" + }, + { + "algorithmID": "00AI5", + "id": "CLMAG03", + "value": "0000000393" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H89", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H89", + "id": "RVLR01", + "value": "0000049.44" + }, + { + "algorithmID": "00H89", + "id": "RVLR02", + "value": "0000096.47" + }, + { + "algorithmID": "00H89", + "id": "RVLR03", + "value": "0000004202" + }, + { + "algorithmID": "00H89", + "id": "RVLR04", + "value": "0000001505" + }, + { + "algorithmID": "00H89", + "id": "RVLR05", + "value": "0000036.94" + }, + { + "algorithmID": "00H89", + "id": "RVLR06", + "value": "0000003.84" + }, + { + "algorithmID": "00H89", + "id": "RVLR07", + "value": "0000000004" + }, + { + "algorithmID": "00H89", + "id": "RVLR08", + "value": "0000000006" + }, + { + "algorithmID": "00H89", + "id": "RVLR09", + "value": "0000000006" + }, + { + "algorithmID": "00H89", + "id": "RVLR10", + "value": "0000000000" + }, + { + "algorithmID": "00H89", + "id": "RVLR11", + "value": "0000000001" + }, + { + "algorithmID": "00H89", + "id": "RVLR12", + "value": "0000000001" + }, + { + "algorithmID": "00H89", + "id": "RVLR13", + "value": "0000000001" + }, + { + "algorithmID": "00H89", + "id": "RVLR14", + "value": "TRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR15", + "value": "RRRTTRRT" + }, + { + "algorithmID": "00H89", + "id": "RVLR16", + "value": "TTTTTTTT" + }, + { + "algorithmID": "00H89", + "id": "RVLR17", + "value": "RRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR18", + "value": "RRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR19", + "value": "RRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR20", + "value": "TRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR21", + "value": "RRRRRTRT" + }, + { + "algorithmID": "00H89", + "id": "RVLR22", + "value": "RTTTT" + }, + { + "algorithmID": "00H89", + "id": "RVLR23", + "value": "TTTTTTTT" + }, + { + "algorithmID": "00H89", + "id": "RVLR24", + "value": "TTRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR25", + "value": "RTTTTTTT" + }, + { + "algorithmID": "00H89", + "id": "RVLR26", + "value": "RRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR27", + "value": "RRRRRRRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR28", + "value": "RRRRRTRR" + }, + { + "algorithmID": "00H89", + "id": "RVLR29", + "value": "0000002521" + }, + { + "algorithmID": "00H89", + "id": "RVLR30", + "value": "0000001956" + }, + { + "algorithmID": "00H89", + "id": "RVLR31", + "value": "0000001544" + }, + { + "algorithmID": "00H89", + "id": "RVLR32", + "value": "0000001535" + }, + { + "algorithmID": "00H89", + "id": "RVLR33", + "value": "0000001261" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H90", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H90", + "id": "WALSHR01", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR02", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR03", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR04", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR05", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR06", + "value": "0000000000" + }, + { + "algorithmID": "00H90", + "id": "WALSHR07", + "value": "0000007.61" + }, + { + "algorithmID": "00H90", + "id": "WALSHR08", + "value": "0000007.61" + }, + { + "algorithmID": "00H90", + "id": "WALSHR09", + "value": "0000000999" + }, + { + "algorithmID": "00H90", + "id": "WALSHR10", + "value": "0000000999" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00H91", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00H91", + "id": "PAYMNT01", + "value": "0000000002" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT02", + "value": "0000000003" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT03", + "value": "0000019011" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT04", + "value": "0000040415" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT05", + "value": "0000045053" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT06", + "value": "0000004.22" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT07", + "value": "0000010.22" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT08", + "value": "0000001.38" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT09", + "value": "0000001.38" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT10", + "value": "0000000039" + }, + { + "algorithmID": "00H91", + "id": "PAYMNT11", + "value": "0000000159" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00V26", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00V26", + "id": "CV01", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV02", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV03", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV04", + "value": "-000000006" + }, + { + "algorithmID": "00V26", + "id": "CV05", + "value": "-000000006" + }, + { + "algorithmID": "00V26", + "id": "CV06", + "value": "0000000000" + }, + { + "algorithmID": "00V26", + "id": "CV07", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV08", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV09", + "value": "-000000001" + }, + { + "algorithmID": "00V26", + "id": "CV10", + "value": "0000000002" + }, + { + "algorithmID": "00V26", + "id": "CV11", + "value": "0000000001" + }, + { + "algorithmID": "00V26", + "id": "CV12", + "value": "0000000000" + }, + { + "algorithmID": "00V26", + "id": "CV13", + "value": "0000000005" + }, + { + "algorithmID": "00V26", + "id": "CV14", + "value": "0000000007" + }, + { + "algorithmID": "00V26", + "id": "CV15", + "value": "0000000001" + }, + { + "algorithmID": "00V26", + "id": "CV16", + "value": "0000000001" + }, + { + "algorithmID": "00V26", + "id": "CV17", + "value": "0000000001" + }, + { + "algorithmID": "00V26", + "id": "CV18", + "value": "-000000007" + }, + { + "algorithmID": "00V26", + "id": "CV19", + "value": "0000080472" + }, + { + "algorithmID": "00V26", + "id": "CV20", + "value": "0000002138" + }, + { + "algorithmID": "00V26", + "id": "CV21", + "value": "0000043118" + }, + { + "algorithmID": "00V26", + "id": "CV22", + "value": "0000011376" + }, + { + "algorithmID": "00V26", + "id": "CV23", + "value": "0000000523" + }, + { + "algorithmID": "00V26", + "id": "CV24", + "value": "0000000310" + }, + { + "algorithmID": "00V26", + "id": "CV25", + "value": "0000000005" + }, + { + "algorithmID": "00V26", + "id": "CV26", + "value": "0000000011" + }, + { + "algorithmID": "00V26", + "id": "CV27", + "value": "0000000008" + }, + { + "algorithmID": "00V26", + "id": "CV28", + "value": "0000000000" + }, + { + "algorithmID": "00V26", + "id": "CV29", + "value": "0000000000" + }, + { + "algorithmID": "00V26", + "id": "CV30", + "value": "0000000999" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00V53", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00V53", + "id": "AGGS101", + "value": "0000001048" + }, + { + "algorithmID": "00V53", + "id": "AGGS102", + "value": "0000000581" + }, + { + "algorithmID": "00V53", + "id": "AGGS103", + "value": "0000001064" + }, + { + "algorithmID": "00V53", + "id": "AGGS104", + "value": "0000000319" + }, + { + "algorithmID": "00V53", + "id": "AGGS105", + "value": "0000000300" + }, + { + "algorithmID": "00V53", + "id": "AGGS106", + "value": "0000000891" + }, + { + "algorithmID": "00V53", + "id": "AGGS107", + "value": "0000001243" + }, + { + "algorithmID": "00V53", + "id": "AGGS108", + "value": "0000000680" + }, + { + "algorithmID": "00V53", + "id": "AGGS109", + "value": "0000000627" + }, + { + "algorithmID": "00V53", + "id": "AGGS110", + "value": "0000000289" + }, + { + "algorithmID": "00V53", + "id": "AGGS111", + "value": "0000000109" + }, + { + "algorithmID": "00V53", + "id": "AGGS112", + "value": "0000000188" + }, + { + "algorithmID": "00V53", + "id": "AGGS113", + "value": "0000001259" + }, + { + "algorithmID": "00V53", + "id": "AGGS114", + "value": "0000000933" + }, + { + "algorithmID": "00V53", + "id": "AGGS115", + "value": "0000000664" + }, + { + "algorithmID": "00V53", + "id": "AGGS116", + "value": "0000001772" + }, + { + "algorithmID": "00V53", + "id": "AGGS117", + "value": "0000001391" + }, + { + "algorithmID": "00V53", + "id": "AGGS118", + "value": "0000001280" + }, + { + "algorithmID": "00V53", + "id": "AGGS119", + "value": "0000000889" + }, + { + "algorithmID": "00V53", + "id": "AGGS120", + "value": "0000000473" + }, + { + "algorithmID": "00V53", + "id": "AGGS121", + "value": "0000003142" + }, + { + "algorithmID": "00V53", + "id": "AGGS122", + "value": "0000002603" + }, + { + "algorithmID": "00V53", + "id": "AGGS123", + "value": "0000001712" + }, + { + "algorithmID": "00V53", + "id": "AGGS124", + "value": "0000001140" + }, + { + "algorithmID": "00V53", + "id": "AGGS901", + "value": "0000002693" + }, + { + "algorithmID": "00V53", + "id": "AGGS902", + "value": "0000004203" + }, + { + "algorithmID": "00V53", + "id": "AGGS903", + "value": "0000007339" + }, + { + "algorithmID": "00V53", + "id": "AGGS904", + "value": "0000001243" + }, + { + "algorithmID": "00V53", + "id": "AGGS905", + "value": "0000000007" + }, + { + "algorithmID": "00V53", + "id": "INDEX01", + "value": "0000000043" + }, + { + "algorithmID": "00V53", + "id": "INDEX02", + "value": "0000000094" + }, + { + "algorithmID": "00V53", + "id": "INDEXQ1", + "value": "0000000021" + }, + { + "algorithmID": "00V53", + "id": "INDEXQ2", + "value": "0000000021" + }, + { + "algorithmID": "00V53", + "id": "INDEXQ3", + "value": "0000000032" + }, + { + "algorithmID": "00V53", + "id": "INDEXQ4", + "value": "0000000026" + }, + { + "algorithmID": "00V53", + "id": "WALSHRS1", + "value": "0000000077" + }, + { + "algorithmID": "00V53", + "id": "WALSHRS2", + "value": "0000000016" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00V93", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00V93", + "id": "RETS101", + "value": "0000000414" + }, + { + "algorithmID": "00V93", + "id": "RETS102", + "value": "0000000302" + }, + { + "algorithmID": "00V93", + "id": "RETS103", + "value": "0000000373" + }, + { + "algorithmID": "00V93", + "id": "RETS104", + "value": "0000000286" + }, + { + "algorithmID": "00V93", + "id": "RETS105", + "value": "0000028769" + }, + { + "algorithmID": "00V93", + "id": "RETS106", + "value": "0000000062" + }, + { + "algorithmID": "00V93", + "id": "RETS107", + "value": "0000000068" + }, + { + "algorithmID": "00V93", + "id": "RETS108", + "value": "0000000197" + }, + { + "algorithmID": "00V93", + "id": "RETS109", + "value": "0000000154" + }, + { + "algorithmID": "00V93", + "id": "RETS110", + "value": "0000000113" + }, + { + "algorithmID": "00V93", + "id": "RETS111", + "value": "0000000111" + }, + { + "algorithmID": "00V93", + "id": "RETS112", + "value": "0000000181" + }, + { + "algorithmID": "00V93", + "id": "RETS113", + "value": "0000000137" + }, + { + "algorithmID": "00V93", + "id": "RETS114", + "value": "0000000233" + }, + { + "algorithmID": "00V93", + "id": "RETS115", + "value": "0000000336" + }, + { + "algorithmID": "00V93", + "id": "RETS116", + "value": "0000002690" + }, + { + "algorithmID": "00V93", + "id": "RETS117", + "value": "0000000367" + }, + { + "algorithmID": "00V93", + "id": "RETS118", + "value": "0000000069" + }, + { + "algorithmID": "00V93", + "id": "RETS119", + "value": "0000000105" + }, + { + "algorithmID": "00V93", + "id": "RETS120", + "value": "0000000198" + }, + { + "algorithmID": "00V93", + "id": "RETS121", + "value": "0000000071" + }, + { + "algorithmID": "00V93", + "id": "RETS122", + "value": "0000000058" + }, + { + "algorithmID": "00V93", + "id": "RETS123", + "value": "0000014293" + }, + { + "algorithmID": "00V93", + "id": "RETS124", + "value": "0000000038" + }, + { + "algorithmID": "00V93", + "id": "RETS901", + "value": "0000001089" + }, + { + "algorithmID": "00V93", + "id": "RETS902", + "value": "0000030206" + }, + { + "algorithmID": "00V93", + "id": "RETS903", + "value": "0000031030" + }, + { + "algorithmID": "00V93", + "id": "RETS904", + "value": "0000028769" + }, + { + "algorithmID": "00V93", + "id": "RETS905", + "value": "0000000005" + }, + { + "algorithmID": "00V93", + "id": "RTDEX01", + "value": "0000000167" + }, + { + "algorithmID": "00V93", + "id": "RTDEX02", + "value": "0000000154" + }, + { + "algorithmID": "00V93", + "id": "RTDEXQ1", + "value": "0000000001" + }, + { + "algorithmID": "00V93", + "id": "RTDEXQ2", + "value": "0000000002" + }, + { + "algorithmID": "00V93", + "id": "RTDEXQ3", + "value": "0000000094" + }, + { + "algorithmID": "00V93", + "id": "RTDEXQ4", + "value": "0000000003" + }, + { + "algorithmID": "00V93", + "id": "WALSRTS1", + "value": "0000000065" + }, + { + "algorithmID": "00V93", + "id": "WALSRTS2", + "value": "0000000096" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00V92", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00V92", + "id": "REVS101", + "value": "0000001134" + }, + { + "algorithmID": "00V92", + "id": "REVS102", + "value": "0000000583" + }, + { + "algorithmID": "00V92", + "id": "REVS103", + "value": "0000001066" + }, + { + "algorithmID": "00V92", + "id": "REVS104", + "value": "0000000323" + }, + { + "algorithmID": "00V92", + "id": "REVS105", + "value": "0000000345" + }, + { + "algorithmID": "00V92", + "id": "REVS106", + "value": "0000000897" + }, + { + "algorithmID": "00V92", + "id": "REVS107", + "value": "0000001255" + }, + { + "algorithmID": "00V92", + "id": "REVS108", + "value": "0000000827" + }, + { + "algorithmID": "00V92", + "id": "REVS109", + "value": "0000000717" + }, + { + "algorithmID": "00V92", + "id": "REVS110", + "value": "0000000344" + }, + { + "algorithmID": "00V92", + "id": "REVS111", + "value": "0000000160" + }, + { + "algorithmID": "00V92", + "id": "REVS112", + "value": "0000000312" + }, + { + "algorithmID": "00V92", + "id": "REVS113", + "value": "0000001339" + }, + { + "algorithmID": "00V92", + "id": "REVS114", + "value": "0000001099" + }, + { + "algorithmID": "00V92", + "id": "REVS115", + "value": "0000000939" + }, + { + "algorithmID": "00V92", + "id": "REVS116", + "value": "0000004397" + }, + { + "algorithmID": "00V92", + "id": "REVS117", + "value": "0000001695" + }, + { + "algorithmID": "00V92", + "id": "REVS118", + "value": "0000001283" + }, + { + "algorithmID": "00V92", + "id": "REVS119", + "value": "0000000927" + }, + { + "algorithmID": "00V92", + "id": "REVS120", + "value": "0000000608" + }, + { + "algorithmID": "00V92", + "id": "REVS121", + "value": "0000003142" + }, + { + "algorithmID": "00V92", + "id": "REVS122", + "value": "0000002603" + }, + { + "algorithmID": "00V92", + "id": "REVS123", + "value": "0000001774" + }, + { + "algorithmID": "00V92", + "id": "REVS124", + "value": "0000001178" + }, + { + "algorithmID": "00V92", + "id": "REVS901", + "value": "0000002783" + }, + { + "algorithmID": "00V92", + "id": "REVS902", + "value": "0000004348" + }, + { + "algorithmID": "00V92", + "id": "REVS903", + "value": "0000007963" + }, + { + "algorithmID": "00V92", + "id": "REVS904", + "value": "0000001255" + }, + { + "algorithmID": "00V92", + "id": "REVS905", + "value": "0000000007" + }, + { + "algorithmID": "00V92", + "id": "RVDEX01", + "value": "0000000038" + }, + { + "algorithmID": "00V92", + "id": "RVDEX02", + "value": "0000000082" + }, + { + "algorithmID": "00V92", + "id": "RVDEXQ1", + "value": "0000000022" + }, + { + "algorithmID": "00V92", + "id": "RVDEXQ2", + "value": "0000000023" + }, + { + "algorithmID": "00V92", + "id": "RVDEXQ3", + "value": "0000000031" + }, + { + "algorithmID": "00V92", + "id": "RVDEXQ4", + "value": "0000000024" + }, + { + "algorithmID": "00V92", + "id": "WALSRVS1", + "value": "0000000071" + }, + { + "algorithmID": "00V92", + "id": "WALSRVS2", + "value": "0000000015" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00W88", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00W88", + "id": "AGGS906", + "value": "0000004000" + }, + { + "algorithmID": "00W88", + "id": "AGGS907", + "value": "0000002627" + }, + { + "algorithmID": "00W88", + "id": "AGGS908", + "value": "0000000060" + }, + { + "algorithmID": "00W88", + "id": "AGGS909", + "value": "0000001956" + }, + { + "algorithmID": "00W88", + "id": "AGGS910", + "value": "0000003100" + }, + { + "algorithmID": "00W88", + "id": "AGGS911", + "value": "0000000049" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WN2", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WN2", + "id": "RVLR61", + "value": "0000000001" + }, + { + "algorithmID": "00WN2", + "id": "RVLR62", + "value": "0000000001" + }, + { + "algorithmID": "00WN2", + "id": "RVLR63", + "value": "0000000001" + }, + { + "algorithmID": "00WN2", + "id": "RVLR64", + "value": "0000000001" + }, + { + "algorithmID": "00WN2", + "id": "RVLR65", + "value": "0000000001" + }, + { + "algorithmID": "00WN2", + "id": "RVLR66", + "value": "0000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WP4", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WP4", + "id": "RVLR70", + "value": "0000000004" + }, + { + "algorithmID": "00WP4", + "id": "RVLR71", + "value": "0000000001" + }, + { + "algorithmID": "00WP4", + "id": "RVLR72", + "value": "0000000004" + }, + { + "algorithmID": "00WP4", + "id": "RVLR73", + "value": "0000000001" + }, + { + "algorithmID": "00WP4", + "id": "RVLR74", + "value": "0000000005" + }, + { + "algorithmID": "00WP4", + "id": "RVLR75", + "value": "0000000000" + }, + { + "algorithmID": "00WP4", + "id": "RVLR76", + "value": "0000000005" + }, + { + "algorithmID": "00WP4", + "id": "RVLR77", + "value": "0000000000" + }, + { + "algorithmID": "00WP4", + "id": "RVLR78", + "value": "MIXBHVR" + }, + { + "algorithmID": "00WP4", + "id": "RVLR79", + "value": "MIXBHVR" + }, + { + "algorithmID": "00WP4", + "id": "RVLR80", + "value": "PRREVLR" + }, + { + "algorithmID": "00WP4", + "id": "RVLR81", + "value": "PRREVLR" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00ASF", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00ASF", + "id": "REV11", + "value": "0000000106" + }, + { + "algorithmID": "00ASF", + "id": "REV12", + "value": "0000000068" + }, + { + "algorithmID": "00ASF", + "id": "REV13", + "value": "0000000027" + }, + { + "algorithmID": "00ASF", + "id": "REV14", + "value": "0000000009" + }, + { + "algorithmID": "00ASF", + "id": "REV51", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "REV52", + "value": "0000000010" + }, + { + "algorithmID": "00ASF", + "id": "REV53", + "value": "0000000005" + }, + { + "algorithmID": "00ASF", + "id": "REV54", + "value": "0000000003" + }, + { + "algorithmID": "00ASF", + "id": "REV81", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV82", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV83", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV84", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV92", + "value": "0000000010" + }, + { + "algorithmID": "00ASF", + "id": "REV102", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "REV112", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "REV122", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "REV132", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV142", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV152", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "REV162", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "BKC11", + "value": "0000000083" + }, + { + "algorithmID": "00ASF", + "id": "BKC12", + "value": "0000000050" + }, + { + "algorithmID": "00ASF", + "id": "BKC13", + "value": "0000000016" + }, + { + "algorithmID": "00ASF", + "id": "BKC14", + "value": "0000000002" + }, + { + "algorithmID": "00ASF", + "id": "BKC51", + "value": "0000000009" + }, + { + "algorithmID": "00ASF", + "id": "BKC52", + "value": "0000000007" + }, + { + "algorithmID": "00ASF", + "id": "BKC53", + "value": "0000000003" + }, + { + "algorithmID": "00ASF", + "id": "BKC54", + "value": "0000000001" + }, + { + "algorithmID": "00ASF", + "id": "BKC81", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "BKC82", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "BKC83", + "value": "0000000001" + }, + { + "algorithmID": "00ASF", + "id": "BKC84", + "value": "0000000007" + }, + { + "algorithmID": "00ASF", + "id": "BKC92", + "value": "0000000004" + }, + { + "algorithmID": "00ASF", + "id": "BKC102", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "BKC112", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "BKC122", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "BKC132", + "value": "0000000002" + }, + { + "algorithmID": "00ASF", + "id": "BKC142", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "BKC152", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "BKC162", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET11", + "value": "0000000023" + }, + { + "algorithmID": "00ASF", + "id": "RET12", + "value": "0000000018" + }, + { + "algorithmID": "00ASF", + "id": "RET13", + "value": "0000000011" + }, + { + "algorithmID": "00ASF", + "id": "RET14", + "value": "0000000007" + }, + { + "algorithmID": "00ASF", + "id": "RET51", + "value": "0000000003" + }, + { + "algorithmID": "00ASF", + "id": "RET52", + "value": "0000000003" + }, + { + "algorithmID": "00ASF", + "id": "RET53", + "value": "0000000002" + }, + { + "algorithmID": "00ASF", + "id": "RET54", + "value": "0000000002" + }, + { + "algorithmID": "00ASF", + "id": "RET81", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET82", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET83", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET84", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET92", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "RET102", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "RET112", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "RET122", + "value": "0000000012" + }, + { + "algorithmID": "00ASF", + "id": "RET132", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET142", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET152", + "value": "0000000000" + }, + { + "algorithmID": "00ASF", + "id": "RET162", + "value": "0000000000" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00ASG", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00ASG", + "id": "REV201", + "value": "0000006.02" + }, + { + "algorithmID": "00ASG", + "id": "REV202", + "value": "0000004.14" + }, + { + "algorithmID": "00ASG", + "id": "REV203", + "value": "0000002.84" + }, + { + "algorithmID": "00ASG", + "id": "REV204", + "value": "0000002.22" + }, + { + "algorithmID": "00ASG", + "id": "REV205", + "value": "0000002.40" + }, + { + "algorithmID": "00ASG", + "id": "REV222", + "value": "0000003.76" + }, + { + "algorithmID": "00ASG", + "id": "REV223", + "value": "0000002.57" + }, + { + "algorithmID": "00ASG", + "id": "REV224", + "value": "0000002.06" + }, + { + "algorithmID": "00ASG", + "id": "REV225", + "value": "0000002.32" + }, + { + "algorithmID": "00ASG", + "id": "BKC201" + }, + { + "algorithmID": "00ASG", + "id": "BKC202" + }, + { + "algorithmID": "00ASG", + "id": "BKC203" + }, + { + "algorithmID": "00ASG", + "id": "BKC204" + }, + { + "algorithmID": "00ASG", + "id": "BKC205" + }, + { + "algorithmID": "00ASG", + "id": "BKC222" + }, + { + "algorithmID": "00ASG", + "id": "BKC223" + }, + { + "algorithmID": "00ASG", + "id": "BKC224" + }, + { + "algorithmID": "00ASG", + "id": "BKC225" + }, + { + "algorithmID": "00ASG", + "id": "RET201", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "RET202", + "value": "0000001.77" + }, + { + "algorithmID": "00ASG", + "id": "RET203", + "value": "0000001.97" + }, + { + "algorithmID": "00ASG", + "id": "RET204", + "value": "0000001.60" + }, + { + "algorithmID": "00ASG", + "id": "RET205", + "value": "0000001.58" + }, + { + "algorithmID": "00ASG", + "id": "RET222", + "value": "0000001.77" + }, + { + "algorithmID": "00ASG", + "id": "RET223", + "value": "0000001.82" + }, + { + "algorithmID": "00ASG", + "id": "RET224", + "value": "0000001.61" + }, + { + "algorithmID": "00ASG", + "id": "RET225", + "value": "0000001.61" + }, + { + "algorithmID": "00ASG", + "id": "AUT201", + "value": "0000020.26" + }, + { + "algorithmID": "00ASG", + "id": "AUT202", + "value": "0000007.42" + }, + { + "algorithmID": "00ASG", + "id": "AUT203", + "value": "0000004.21" + }, + { + "algorithmID": "00ASG", + "id": "AUT204", + "value": "0000003.21" + }, + { + "algorithmID": "00ASG", + "id": "AUT205", + "value": "0000002.24" + }, + { + "algorithmID": "00ASG", + "id": "AUT222", + "value": "0000007.42" + }, + { + "algorithmID": "00ASG", + "id": "AUT223", + "value": "0000004.21" + }, + { + "algorithmID": "00ASG", + "id": "AUT224", + "value": "0000003.07" + }, + { + "algorithmID": "00ASG", + "id": "AUT225", + "value": "0000002.14" + }, + { + "algorithmID": "00ASG", + "id": "STD201", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD202", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD203", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD204", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD205", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD222", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD223", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD224", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "STD225", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "PER201", + "value": "-000002.00" + }, + { + "algorithmID": "00ASG", + "id": "PER202", + "value": "0000020.60" + }, + { + "algorithmID": "00ASG", + "id": "PER203", + "value": "0000008.84" + }, + { + "algorithmID": "00ASG", + "id": "PER204", + "value": "0000004.56" + }, + { + "algorithmID": "00ASG", + "id": "PER205", + "value": "0000005.55" + }, + { + "algorithmID": "00ASG", + "id": "PER222", + "value": "0000020.60" + }, + { + "algorithmID": "00ASG", + "id": "PER223", + "value": "0000008.84" + }, + { + "algorithmID": "00ASG", + "id": "PER224", + "value": "0000004.56" + }, + { + "algorithmID": "00ASG", + "id": "PER225", + "value": "0000006.53" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00ASH", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00ASH", + "id": "ALL231", + "value": "0000021658" + }, + { + "algorithmID": "00ASH", + "id": "ALL232", + "value": "0000044213" + }, + { + "algorithmID": "00ASH", + "id": "ALL233", + "value": "0000044640" + }, + { + "algorithmID": "00ASH", + "id": "ALL234", + "value": "0000050702" + }, + { + "algorithmID": "00ASH", + "id": "ALL235", + "value": "0000090365" + }, + { + "algorithmID": "00ASH", + "id": "ALL252", + "value": "0000014738" + }, + { + "algorithmID": "00ASH", + "id": "ALL253", + "value": "0000007440" + }, + { + "algorithmID": "00ASH", + "id": "ALL254", + "value": "0000004225" + }, + { + "algorithmID": "00ASH", + "id": "ALL255", + "value": "0000003765" + }, + { + "algorithmID": "00ASH", + "id": "REV231", + "value": "0000002647" + }, + { + "algorithmID": "00ASH", + "id": "REV232", + "value": "0000003798" + }, + { + "algorithmID": "00ASH", + "id": "REV233", + "value": "0000004225" + }, + { + "algorithmID": "00ASH", + "id": "REV234", + "value": "0000005649" + }, + { + "algorithmID": "00ASH", + "id": "REV235", + "value": "0000011105" + }, + { + "algorithmID": "00ASH", + "id": "REV252", + "value": "0000001266" + }, + { + "algorithmID": "00ASH", + "id": "REV253", + "value": "0000000704" + }, + { + "algorithmID": "00ASH", + "id": "REV254", + "value": "0000000471" + }, + { + "algorithmID": "00ASH", + "id": "REV255", + "value": "0000000463" + }, + { + "algorithmID": "00ASH", + "id": "BKC231" + }, + { + "algorithmID": "00ASH", + "id": "BKC232" + }, + { + "algorithmID": "00ASH", + "id": "BKC233" + }, + { + "algorithmID": "00ASH", + "id": "BKC234" + }, + { + "algorithmID": "00ASH", + "id": "BKC235" + }, + { + "algorithmID": "00ASH", + "id": "BKC252" + }, + { + "algorithmID": "00ASH", + "id": "BKC253" + }, + { + "algorithmID": "00ASH", + "id": "BKC254" + }, + { + "algorithmID": "00ASH", + "id": "BKC255" + }, + { + "algorithmID": "00ASH", + "id": "RET231", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "RET232", + "value": "0000000087" + }, + { + "algorithmID": "00ASH", + "id": "RET233", + "value": "0000000332" + }, + { + "algorithmID": "00ASH", + "id": "RET234", + "value": "0000000710" + }, + { + "algorithmID": "00ASH", + "id": "RET235", + "value": "0000001089" + }, + { + "algorithmID": "00ASH", + "id": "RET252", + "value": "0000000044" + }, + { + "algorithmID": "00ASH", + "id": "RET253", + "value": "0000000066" + }, + { + "algorithmID": "00ASH", + "id": "RET254", + "value": "0000000065" + }, + { + "algorithmID": "00ASH", + "id": "RET255", + "value": "0000000052" + }, + { + "algorithmID": "00ASH", + "id": "AUT231", + "value": "0000019011" + }, + { + "algorithmID": "00ASH", + "id": "AUT232", + "value": "0000019011" + }, + { + "algorithmID": "00ASH", + "id": "AUT233", + "value": "0000019011" + }, + { + "algorithmID": "00ASH", + "id": "AUT234", + "value": "0000023649" + }, + { + "algorithmID": "00ASH", + "id": "AUT235", + "value": "0000025649" + }, + { + "algorithmID": "00ASH", + "id": "AUT252", + "value": "0000006337" + }, + { + "algorithmID": "00ASH", + "id": "AUT253", + "value": "0000003169" + }, + { + "algorithmID": "00ASH", + "id": "AUT254", + "value": "0000001971" + }, + { + "algorithmID": "00ASH", + "id": "AUT255", + "value": "0000001069" + }, + { + "algorithmID": "00ASH", + "id": "STD231", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD232", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD233", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD234", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD235", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD252", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD253", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD254", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "STD255", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "PER231", + "value": "-000000002" + }, + { + "algorithmID": "00ASH", + "id": "PER232", + "value": "0000021404" + }, + { + "algorithmID": "00ASH", + "id": "PER233", + "value": "0000021404" + }, + { + "algorithmID": "00ASH", + "id": "PER234", + "value": "0000021404" + }, + { + "algorithmID": "00ASH", + "id": "PER235", + "value": "0000053596" + }, + { + "algorithmID": "00ASH", + "id": "PER252", + "value": "0000010702" + }, + { + "algorithmID": "00ASH", + "id": "PER253", + "value": "0000004281" + }, + { + "algorithmID": "00ASH", + "id": "PER254", + "value": "0000001946" + }, + { + "algorithmID": "00ASH", + "id": "PER255", + "value": "0000002436" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00ASI", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00ASI", + "id": "REV315", + "value": "0000000000" + }, + { + "algorithmID": "00ASI", + "id": "REV316", + "value": "0000019388" + }, + { + "algorithmID": "00ASI", + "id": "REV317", + "value": "0000019388" + }, + { + "algorithmID": "00ASI", + "id": "REV318", + "value": "0000019388" + }, + { + "algorithmID": "00ASI", + "id": "REV319", + "value": "0000019388" + }, + { + "algorithmID": "00ASI", + "id": "REV320", + "value": "0000000003" + }, + { + "algorithmID": "00ASI", + "id": "REV321", + "value": "0000011944" + }, + { + "algorithmID": "00ASI", + "id": "REV322", + "value": "0000011806" + }, + { + "algorithmID": "00ASI", + "id": "REV323", + "value": "0000011806" + }, + { + "algorithmID": "00ASI", + "id": "REV324", + "value": "0000011806" + }, + { + "algorithmID": "00ASI", + "id": "REV325", + "value": "0000016286" + }, + { + "algorithmID": "00ASI", + "id": "REV326", + "value": "0000014834" + }, + { + "algorithmID": "00ASI", + "id": "REV327", + "value": "0000015297" + }, + { + "algorithmID": "00ASI", + "id": "REV328", + "value": "0000015539" + }, + { + "algorithmID": "00ASI", + "id": "BKC315", + "value": "0000000000" + }, + { + "algorithmID": "00ASI", + "id": "BKC316", + "value": "0000018624" + }, + { + "algorithmID": "00ASI", + "id": "BKC317", + "value": "0000018624" + }, + { + "algorithmID": "00ASI", + "id": "BKC318", + "value": "0000018624" + }, + { + "algorithmID": "00ASI", + "id": "BKC319", + "value": "0000018624" + }, + { + "algorithmID": "00ASI", + "id": "BKC320", + "value": "0000000007" + }, + { + "algorithmID": "00ASI", + "id": "BKC321", + "value": "0000010372" + }, + { + "algorithmID": "00ASI", + "id": "BKC322", + "value": "0000010332" + }, + { + "algorithmID": "00ASI", + "id": "BKC323", + "value": "0000009543" + }, + { + "algorithmID": "00ASI", + "id": "BKC324", + "value": "0000009543" + }, + { + "algorithmID": "00ASI", + "id": "BKC325", + "value": "0000015101" + }, + { + "algorithmID": "00ASI", + "id": "BKC326", + "value": "0000012890" + }, + { + "algorithmID": "00ASI", + "id": "BKC327", + "value": "0000011738" + }, + { + "algorithmID": "00ASI", + "id": "BKC328", + "value": "0000011627" + }, + { + "algorithmID": "00ASI", + "id": "RET315", + "value": "0000000007" + }, + { + "algorithmID": "00ASI", + "id": "RET316", + "value": "0000001572" + }, + { + "algorithmID": "00ASI", + "id": "RET317", + "value": "0000005255" + }, + { + "algorithmID": "00ASI", + "id": "RET318", + "value": "0000006100" + }, + { + "algorithmID": "00ASI", + "id": "RET319", + "value": "0000006100" + }, + { + "algorithmID": "00ASI", + "id": "RET320", + "value": "0000000000" + }, + { + "algorithmID": "00ASI", + "id": "RET321", + "value": "0000000764" + }, + { + "algorithmID": "00ASI", + "id": "RET322", + "value": "0000000764" + }, + { + "algorithmID": "00ASI", + "id": "RET323", + "value": "0000000764" + }, + { + "algorithmID": "00ASI", + "id": "RET324", + "value": "0000000764" + }, + { + "algorithmID": "00ASI", + "id": "RET325", + "value": "0000001185" + }, + { + "algorithmID": "00ASI", + "id": "RET326", + "value": "0000001944" + }, + { + "algorithmID": "00ASI", + "id": "RET327", + "value": "0000003558" + }, + { + "algorithmID": "00ASI", + "id": "RET328", + "value": "0000003911" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00ASJ", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00ASJ", + "id": "RLE901", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE902", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE903", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE904", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE905", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE906", + "value": "-000000001" + }, + { + "algorithmID": "00ASJ", + "id": "RLE907", + "value": "-000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00AI9", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AI9", + "id": "CTM01", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM02", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM03", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM04", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM05", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM06", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM07", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM08", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM09", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM10", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM11", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM12", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM13", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM14", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM15", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM16", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM17", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM18", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM19", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM20", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM21", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM22", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CTM23", + "value": "-000000008" + }, + { + "algorithmID": "00AI9", + "id": "CT301", + "value": "0000000002" + }, + { + "algorithmID": "00AI9", + "id": "CT302", + "value": "0000028399" + }, + { + "algorithmID": "00AI9", + "id": "CT303", + "value": "0000000026" + }, + { + "algorithmID": "00AI9", + "id": "CT304", + "value": "0000000086" + }, + { + "algorithmID": "00AI9", + "id": "CT308", + "value": "0000005727" + }, + { + "algorithmID": "00AI9", + "id": "CT309", + "value": "0000045819" + }, + { + "algorithmID": "00AI9", + "id": "CT310", + "value": "0000000060" + }, + { + "algorithmID": "00AI9", + "id": "CT311", + "value": "0000000039" + }, + { + "algorithmID": "00AI9", + "id": "CT312", + "value": "0000000015" + }, + { + "algorithmID": "00AI9", + "id": "CT313", + "value": "0000000004" + }, + { + "algorithmID": "00AI9", + "id": "CT314", + "value": "0000000095" + }, + { + "algorithmID": "00AI9", + "id": "CT315", + "value": "0000000074" + }, + { + "algorithmID": "00AI9", + "id": "CT316", + "value": "0000000042" + }, + { + "algorithmID": "00AI9", + "id": "CT317", + "value": "0000000022" + }, + { + "algorithmID": "00AI9", + "id": "CT318", + "value": "0000000010" + }, + { + "algorithmID": "00AI9", + "id": "CT319", + "value": "0000000021" + }, + { + "algorithmID": "00AI9", + "id": "CT320", + "value": "0000000039" + }, + { + "algorithmID": "00AI9", + "id": "CT321", + "value": "0000000095" + }, + { + "algorithmID": "00AI9", + "id": "CT322", + "value": "0000000001" + }, + { + "algorithmID": "00AI9", + "id": "CT323", + "value": "0000000008" + }, + { + "algorithmID": "00AI9", + "id": "CT601", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT602", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT603", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT604", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT608", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT609", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT610", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT611", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT612", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT613", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT614", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT615", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT616", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT617", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT618", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT619", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT620", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT621", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT622", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CT623", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC01", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC02", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC03", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC04", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC08", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC09", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC10", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC11", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC12", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC13", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC14", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC15", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC16", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC17", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC18", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC19", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC20", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC21", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC22", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTC23", + "value": "-000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTA05", + "value": "0000000018" + }, + { + "algorithmID": "00AI9", + "id": "CTA06", + "value": "0000000000" + }, + { + "algorithmID": "00AI9", + "id": "CTA07", + "value": "0000000000" + }, + { + "algorithmID": "00AI9", + "id": "CTA08", + "value": "0000011275" + }, + { + "algorithmID": "00AI9", + "id": "CTA09", + "value": "0000022550" + }, + { + "algorithmID": "00AI9", + "id": "CTA10", + "value": "0000000010" + }, + { + "algorithmID": "00AI9", + "id": "CTA11", + "value": "0000000004" + }, + { + "algorithmID": "00AI9", + "id": "CTA12", + "value": "0000000001" + }, + { + "algorithmID": "00AI9", + "id": "CTA13", + "value": "0000000001" + }, + { + "algorithmID": "00AI9", + "id": "CTA14", + "value": "0000000013" + }, + { + "algorithmID": "00AI9", + "id": "CTA15", + "value": "0000000007" + }, + { + "algorithmID": "00AI9", + "id": "CTA16", + "value": "0000000002" + }, + { + "algorithmID": "00AI9", + "id": "CTA17", + "value": "0000000002" + }, + { + "algorithmID": "00AI9", + "id": "CTA18", + "value": "0000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTA19", + "value": "0000000005" + }, + { + "algorithmID": "00AI9", + "id": "CTA20", + "value": "0000000013" + }, + { + "algorithmID": "00AI9", + "id": "CTA21", + "value": "0000000013" + }, + { + "algorithmID": "00AI9", + "id": "CTA22", + "value": "0000000001" + }, + { + "algorithmID": "00AI9", + "id": "CTA23", + "value": "0000000002" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00AR1", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AR1", + "id": "SC01S", + "value": "0000000000" + }, + { + "algorithmID": "00AR1", + "id": "SC02S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC03S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC06S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC09S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC12S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC20S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC21S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC24S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC25S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC27S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC28S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC29S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC30S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC31S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC32S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC33S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC34S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC35S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC36S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC57S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC97A", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC97B", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC98A", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC101S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC102S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC103S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC104S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC106S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC107S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC108S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC109S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC110S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG218D", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG219D", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG220D", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG221D", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG300S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG301S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCAP01", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG001C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG002C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG003C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG004C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG066S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG071S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG076S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG041C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG042C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG043C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SCG044C", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC211S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC212S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC213S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC214S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC215S", + "value": "-000000001" + }, + { + "algorithmID": "00AR1", + "id": "SC216S", + "value": "-000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00AR2", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AR2", + "id": "SCC11", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC12", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC13", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC14", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC51", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC52", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC53", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC54", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC81", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC82", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC83", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC84", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC92", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC102", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC112", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC122", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC132", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC142", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC152", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC162", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC315", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC316", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC317", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC318", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC319", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC320", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC321", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC322", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC323", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC324", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC325", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC326", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC327", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCC328", + "value": "-000000001" + }, + { + "algorithmID": "00AR2", + "id": "SCBALM01", + "value": "-000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WR3", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WR3", + "id": "AT01S", + "value": "0000000038" + }, + { + "algorithmID": "00WR3", + "id": "AT02S", + "value": "0000000017" + }, + { + "algorithmID": "00WR3", + "id": "AT03S", + "value": "0000000017" + }, + { + "algorithmID": "00WR3", + "id": "AT06S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "AT09S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "AT12S", + "value": "0000000017" + }, + { + "algorithmID": "00WR3", + "id": "AT20S", + "value": "0000000192" + }, + { + "algorithmID": "00WR3", + "id": "AT21S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "AT24S", + "value": "0000000015" + }, + { + "algorithmID": "00WR3", + "id": "AT25S", + "value": "0000000015" + }, + { + "algorithmID": "00WR3", + "id": "AT27S", + "value": "0000000011" + }, + { + "algorithmID": "00WR3", + "id": "AT28A", + "value": "0000136328" + }, + { + "algorithmID": "00WR3", + "id": "AT28B", + "value": "0000136328" + }, + { + "algorithmID": "00WR3", + "id": "AT29S", + "value": "0000000016" + }, + { + "algorithmID": "00WR3", + "id": "AT30S", + "value": "0000000053" + }, + { + "algorithmID": "00WR3", + "id": "AT31S", + "value": "0000000024" + }, + { + "algorithmID": "00WR3", + "id": "AT32S", + "value": "0000027234" + }, + { + "algorithmID": "00WR3", + "id": "AT33A", + "value": "0000096407" + }, + { + "algorithmID": "00WR3", + "id": "AT33B", + "value": "0000096407" + }, + { + "algorithmID": "00WR3", + "id": "AT34A", + "value": "0000000071" + }, + { + "algorithmID": "00WR3", + "id": "AT34B", + "value": "0000000071" + }, + { + "algorithmID": "00WR3", + "id": "AT35A", + "value": "0000005671" + }, + { + "algorithmID": "00WR3", + "id": "AT35B", + "value": "0000005671" + }, + { + "algorithmID": "00WR3", + "id": "AT36S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "AT57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AT101S", + "value": "0000096407" + }, + { + "algorithmID": "00WR3", + "id": "AT101B", + "value": "0000096407" + }, + { + "algorithmID": "00WR3", + "id": "AT103S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "AT104S", + "value": "0000000032" + }, + { + "algorithmID": "00WR3", + "id": "AU01S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "AU02S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU03S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU09S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU12S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU20S", + "value": "0000000090" + }, + { + "algorithmID": "00WR3", + "id": "AU21S", + "value": "0000000010" + }, + { + "algorithmID": "00WR3", + "id": "AU24S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU25S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU27S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU28S", + "value": "0000033774" + }, + { + "algorithmID": "00WR3", + "id": "AU29S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "AU31S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU32S", + "value": "0000022951" + }, + { + "algorithmID": "00WR3", + "id": "AU33S", + "value": "0000022951" + }, + { + "algorithmID": "00WR3", + "id": "AU34S", + "value": "0000000068" + }, + { + "algorithmID": "00WR3", + "id": "AU35S", + "value": "0000022951" + }, + { + "algorithmID": "00WR3", + "id": "AU36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "AU51A", + "value": "0000000066" + }, + { + "algorithmID": "00WR3", + "id": "AU57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU101S", + "value": "0000022951" + }, + { + "algorithmID": "00WR3", + "id": "BC01S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "BC02S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BC03S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BC06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "BC09S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "BC12S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BC20S", + "value": "0000000088" + }, + { + "algorithmID": "00WR3", + "id": "BC21S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BC24S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "BC25S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "BC27S", + "value": "0000000007" + }, + { + "algorithmID": "00WR3", + "id": "BC28S", + "value": "0000030000" + }, + { + "algorithmID": "00WR3", + "id": "BC29S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BC30S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "BC31S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC32S", + "value": "0000002521" + }, + { + "algorithmID": "00WR3", + "id": "BC33S", + "value": "0000011376" + }, + { + "algorithmID": "00WR3", + "id": "BC34S", + "value": "0000000038" + }, + { + "algorithmID": "00WR3", + "id": "BC35S", + "value": "0000001264" + }, + { + "algorithmID": "00WR3", + "id": "BC36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "BC57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC97A", + "value": "0000018624" + }, + { + "algorithmID": "00WR3", + "id": "BC97B", + "value": "0000007000" + }, + { + "algorithmID": "00WR3", + "id": "BC98A", + "value": "0000018624" + }, + { + "algorithmID": "00WR3", + "id": "BC101S", + "value": "0000011376" + }, + { + "algorithmID": "00WR3", + "id": "BC102S", + "value": "0000003333" + }, + { + "algorithmID": "00WR3", + "id": "BC103S", + "value": "0000001264" + }, + { + "algorithmID": "00WR3", + "id": "BC104S", + "value": "0000000042" + }, + { + "algorithmID": "00WR3", + "id": "BC106S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC107S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC108S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC109S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BC110S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BI01S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI02S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI03S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BI09S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BI12S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI20S", + "value": "0000000192" + }, + { + "algorithmID": "00WR3", + "id": "BI21S", + "value": "0000000041" + }, + { + "algorithmID": "00WR3", + "id": "BI24S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI25S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI27S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI28S", + "value": "0000027342" + }, + { + "algorithmID": "00WR3", + "id": "BI29S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BI30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "BI31S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "BI32S", + "value": "0000015935" + }, + { + "algorithmID": "00WR3", + "id": "BI33S", + "value": "0000022911" + }, + { + "algorithmID": "00WR3", + "id": "BI34S", + "value": "0000000084" + }, + { + "algorithmID": "00WR3", + "id": "BI35S", + "value": "0000011456" + }, + { + "algorithmID": "00WR3", + "id": "BI36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "BI57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BI101S", + "value": "0000022911" + }, + { + "algorithmID": "00WR3", + "id": "BR01S", + "value": "0000000014" + }, + { + "algorithmID": "00WR3", + "id": "BR02S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BR03S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BR06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "BR09S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "BR12S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BR20S", + "value": "0000000088" + }, + { + "algorithmID": "00WR3", + "id": "BR21S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "BR24S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "BR25S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "BR27S", + "value": "0000000007" + }, + { + "algorithmID": "00WR3", + "id": "BR28S", + "value": "0000030000" + }, + { + "algorithmID": "00WR3", + "id": "BR29S", + "value": "0000000009" + }, + { + "algorithmID": "00WR3", + "id": "BR30S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "BR31S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BR32S", + "value": "0000002521" + }, + { + "algorithmID": "00WR3", + "id": "BR33S", + "value": "0000011376" + }, + { + "algorithmID": "00WR3", + "id": "BR34S", + "value": "0000000038" + }, + { + "algorithmID": "00WR3", + "id": "BR35S", + "value": "0000001264" + }, + { + "algorithmID": "00WR3", + "id": "BR36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "BR57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "BR101S", + "value": "0000011376" + }, + { + "algorithmID": "00WR3", + "id": "BR109S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "CO01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "CO02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "CO03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "CO04S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "CO05S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "CO06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "CO07S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "FC02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC04S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC05S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FC07S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "FI01S", + "value": "0000000010" + }, + { + "algorithmID": "00WR3", + "id": "FI02S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "FI03S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "FI06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FI09S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "FI12S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "FI20S", + "value": "0000000090" + }, + { + "algorithmID": "00WR3", + "id": "FI21S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "FI24S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "FI25S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "FI27S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FI28S", + "value": "0000076676" + }, + { + "algorithmID": "00WR3", + "id": "FI29S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "FI30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "FI31S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "FI32S", + "value": "0000027234" + }, + { + "algorithmID": "00WR3", + "id": "FI33S", + "value": "0000060574" + }, + { + "algorithmID": "00WR3", + "id": "FI34S", + "value": "0000000079" + }, + { + "algorithmID": "00WR3", + "id": "FI35S", + "value": "0000020191" + }, + { + "algorithmID": "00WR3", + "id": "FI36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "FI57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "FI101S", + "value": "0000060574" + }, + { + "algorithmID": "00WR3", + "id": "FR01S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "FR02S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR03S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "FR09S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR12S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR20S", + "value": "0000000028" + }, + { + "algorithmID": "00WR3", + "id": "FR21S", + "value": "0000000016" + }, + { + "algorithmID": "00WR3", + "id": "FR24S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR25S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR27S", + "value": "-000000006" + }, + { + "algorithmID": "00WR3", + "id": "FR28S", + "value": "0000001560" + }, + { + "algorithmID": "00WR3", + "id": "FR29S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "FR30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "FR31S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "FR32S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "FR33S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "FR34S", + "value": "0000000096" + }, + { + "algorithmID": "00WR3", + "id": "FR35S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "FR36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "FR57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "FR101S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "G001S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G001B", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G001C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G002S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G002B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G002C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G003S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G003C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G020S", + "value": "0000000032" + }, + { + "algorithmID": "00WR3", + "id": "G041S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G041C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G042S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G042C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G043S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G043C", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G051S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "G057S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G058S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G059S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G061S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G063S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G064S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G066S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G068S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G069S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G071S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G093S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G094S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G095S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G099S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G100S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G102S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G105S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G199S", + "value": "0000002089" + }, + { + "algorithmID": "00WR3", + "id": "G200S", + "value": "0000000098" + }, + { + "algorithmID": "00WR3", + "id": "G201A", + "value": "0000019388" + }, + { + "algorithmID": "00WR3", + "id": "G201B", + "value": "-000000005" + }, + { + "algorithmID": "00WR3", + "id": "G202A", + "value": "0000019388" + }, + { + "algorithmID": "00WR3", + "id": "G202B", + "value": "-000000005" + }, + { + "algorithmID": "00WR3", + "id": "G205S", + "value": "0000002089" + }, + { + "algorithmID": "00WR3", + "id": "G206S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G207S", + "value": "0000002138" + }, + { + "algorithmID": "00WR3", + "id": "G208S", + "value": "0000000098" + }, + { + "algorithmID": "00WR3", + "id": "G209S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G210S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G211S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G212S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G213A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G213B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G215A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G215B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G216S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G217S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G218A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G218B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G218C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G218D", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G219A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G219B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G219C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G219D", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G220A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G220B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G220C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G220D", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G221A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G221B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G221C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G221D", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G222S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G223S", + "value": "-000000002" + }, + { + "algorithmID": "00WR3", + "id": "G224A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G224B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G224C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G225S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G226S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G227S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G228S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G230S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G232S", + "value": "0000000007" + }, + { + "algorithmID": "00WR3", + "id": "G234S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G235S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G237S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "G238S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "G240S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G241S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G250A", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G250B", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G250C", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G251A", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G251B", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G251C", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G300S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G301S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G302S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G303S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "G304S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G305S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G306S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G307S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G308S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G309S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G310S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G311S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "G312S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G313S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G314S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G315S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G960S", + "value": "0000000007" + }, + { + "algorithmID": "00WR3", + "id": "G980S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "G990S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "HI01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "HI02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI09S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI12S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI24S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI25S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI27S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI29S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI30S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI31S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI32S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI35S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI36S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI57S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HI101S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "HR02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR09S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR12S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR24S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR25S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR27S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR29S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR30S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR31S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR32S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR35S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR36S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR57S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HR101S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "IN01S", + "value": "0000000015" + }, + { + "algorithmID": "00WR3", + "id": "IN02S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN03S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "IN09S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN12S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN20S", + "value": "0000000192" + }, + { + "algorithmID": "00WR3", + "id": "IN21S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN24S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "IN25S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "IN27S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "IN28S", + "value": "0000104018" + }, + { + "algorithmID": "00WR3", + "id": "IN29S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "IN30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "IN31S", + "value": "0000000060" + }, + { + "algorithmID": "00WR3", + "id": "IN32S", + "value": "0000027234" + }, + { + "algorithmID": "00WR3", + "id": "IN33S", + "value": "0000083485" + }, + { + "algorithmID": "00WR3", + "id": "IN34S", + "value": "0000000080" + }, + { + "algorithmID": "00WR3", + "id": "IN35S", + "value": "0000016697" + }, + { + "algorithmID": "00WR3", + "id": "IN36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "IN57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "IN101S", + "value": "0000083485" + }, + { + "algorithmID": "00WR3", + "id": "LM01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "LM02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM04S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM05S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM07S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM08S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM09S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM10S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM11S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM12S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM13S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "LM14S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM15S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM16S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM17S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM18S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM19S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM22S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM23S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM24S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM25S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "LM26S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM27S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM29S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM30S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM31S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM32S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM35S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM36S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM37S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM38S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "LM39S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "MT02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT09S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT12S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT24S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT25S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT27S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT29S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT30S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT31S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT32S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT34B", + "value": "-0000001.0" + }, + { + "algorithmID": "00WR3", + "id": "MT34C", + "value": "-0000001.0" + }, + { + "algorithmID": "00WR3", + "id": "MT35S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT36S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT47S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT57S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MT101S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MD02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MD33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "MD106S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "OF01S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "OF02S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "OF03S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "OF09S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "OF12S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF20S", + "value": "0000000107" + }, + { + "algorithmID": "00WR3", + "id": "OF21S", + "value": "0000000107" + }, + { + "algorithmID": "00WR3", + "id": "OF24S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF25S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF27S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF28S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF29S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF30S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF31S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF32S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF33S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF34S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF35S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "OF57S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "OF101S", + "value": "-000000002" + }, + { + "algorithmID": "00WR3", + "id": "PB01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "PB02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB09S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB12S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB24S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB25S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB27S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB29S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB30S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB31S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB32S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB35S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB36S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB57S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "PB101S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RE01S", + "value": "0000000023" + }, + { + "algorithmID": "00WR3", + "id": "RE02S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "RE03S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "RE06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "RE09S", + "value": "0000000007" + }, + { + "algorithmID": "00WR3", + "id": "RE12S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "RE20S", + "value": "0000000107" + }, + { + "algorithmID": "00WR3", + "id": "RE21S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "RE24S", + "value": "0000000011" + }, + { + "algorithmID": "00WR3", + "id": "RE25S", + "value": "0000000011" + }, + { + "algorithmID": "00WR3", + "id": "RE27S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "RE28S", + "value": "0000032310" + }, + { + "algorithmID": "00WR3", + "id": "RE29S", + "value": "0000000011" + }, + { + "algorithmID": "00WR3", + "id": "RE30S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "RE31S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "RE32S", + "value": "0000002521" + }, + { + "algorithmID": "00WR3", + "id": "RE33S", + "value": "0000012922" + }, + { + "algorithmID": "00WR3", + "id": "RE34S", + "value": "0000000040" + }, + { + "algorithmID": "00WR3", + "id": "RE35S", + "value": "0000001077" + }, + { + "algorithmID": "00WR3", + "id": "RE36S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "RE57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "RE101S", + "value": "0000012922" + }, + { + "algorithmID": "00WR3", + "id": "RE102S", + "value": "0000002693" + }, + { + "algorithmID": "00WR3", + "id": "RP01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "RP02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP04S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP05S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP06S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP07S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RP08S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "RT01S", + "value": "0000000013" + }, + { + "algorithmID": "00WR3", + "id": "RT02S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "RT03S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "RT06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "RT09S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "RT12S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "RT20S", + "value": "0000000068" + }, + { + "algorithmID": "00WR3", + "id": "RT21S", + "value": "0000000012" + }, + { + "algorithmID": "00WR3", + "id": "RT24S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "RT25S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "RT27S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "RT28S", + "value": "0000002310" + }, + { + "algorithmID": "00WR3", + "id": "RT29S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "RT30S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "RT31S", + "value": "0000000033" + }, + { + "algorithmID": "00WR3", + "id": "RT32S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "RT33S", + "value": "0000001546" + }, + { + "algorithmID": "00WR3", + "id": "RT34S", + "value": "0000000067" + }, + { + "algorithmID": "00WR3", + "id": "RT35S", + "value": "0000000515" + }, + { + "algorithmID": "00WR3", + "id": "RT36S", + "value": "0000000008" + }, + { + "algorithmID": "00WR3", + "id": "RT57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "RT101S", + "value": "0000001546" + }, + { + "algorithmID": "00WR3", + "id": "RT201S", + "value": "0000001505" + }, + { + "algorithmID": "00WR3", + "id": "S004S", + "value": "0000000042" + }, + { + "algorithmID": "00WR3", + "id": "S043S", + "value": "0000000004" + }, + { + "algorithmID": "00WR3", + "id": "S061S", + "value": "0000000039" + }, + { + "algorithmID": "00WR3", + "id": "S062S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "S064A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S064B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S068A", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "S068B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S071A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S071B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S073A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S073B", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S114S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST01S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST02S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST03S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST05S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "ST06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "ST09S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "ST12S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST20S", + "value": "0000000192" + }, + { + "algorithmID": "00WR3", + "id": "ST21S", + "value": "0000000041" + }, + { + "algorithmID": "00WR3", + "id": "ST24S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST25S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST27S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST28S", + "value": "0000027342" + }, + { + "algorithmID": "00WR3", + "id": "ST29S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "ST31S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "ST32S", + "value": "0000015935" + }, + { + "algorithmID": "00WR3", + "id": "ST33S", + "value": "0000022911" + }, + { + "algorithmID": "00WR3", + "id": "ST34S", + "value": "0000000084" + }, + { + "algorithmID": "00WR3", + "id": "ST35S", + "value": "0000011456" + }, + { + "algorithmID": "00WR3", + "id": "ST36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "ST45S", + "value": "0000000192" + }, + { + "algorithmID": "00WR3", + "id": "ST50S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "ST57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "ST60S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "ST99S", + "value": "-000000005" + }, + { + "algorithmID": "00WR3", + "id": "ST101S", + "value": "0000022911" + }, + { + "algorithmID": "00WR3", + "id": "ATAP01", + "value": "0000002138" + }, + { + "algorithmID": "00WR3", + "id": "HIAP01", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "HRAP01", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "INAP01", + "value": "0000001526" + }, + { + "algorithmID": "00WR3", + "id": "MTAP01", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "REAP01", + "value": "0000000612" + }, + { + "algorithmID": "00WR3", + "id": "S063S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S063A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S208S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S207S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S207A", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G106S", + "value": "0000000299" + }, + { + "algorithmID": "00WR3", + "id": "G099A", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "S209S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S209A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S204S", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "S204A", + "value": "-000000004" + }, + { + "algorithmID": "00WR3", + "id": "G242S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "G242F", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G243F", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G244F", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G242B", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G243B", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G244B", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "ST102S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "ST103S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AT01A", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "US01S", + "value": "0000000003" + }, + { + "algorithmID": "00WR3", + "id": "US02S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "US03S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US06S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "US09S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "US12S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US20S", + "value": "0000000025" + }, + { + "algorithmID": "00WR3", + "id": "US21S", + "value": "0000000013" + }, + { + "algorithmID": "00WR3", + "id": "US24S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US25S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US27S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US28S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US29S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US30S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US31S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US32S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US33S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US34S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US35S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "US57S", + "value": "-000000003" + }, + { + "algorithmID": "00WR3", + "id": "US101S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "SE01S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "SE02S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "SE03S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "SE06S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "SE09S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "SE12S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "SE20S", + "value": "0000000058" + }, + { + "algorithmID": "00WR3", + "id": "SE21S", + "value": "0000000005" + }, + { + "algorithmID": "00WR3", + "id": "SE24S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "SE25S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "SE27S", + "value": "-000000006" + }, + { + "algorithmID": "00WR3", + "id": "SE28S", + "value": "0000042902" + }, + { + "algorithmID": "00WR3", + "id": "SE29S", + "value": "0000000002" + }, + { + "algorithmID": "00WR3", + "id": "SE30S", + "value": "0000000100" + }, + { + "algorithmID": "00WR3", + "id": "SE31S", + "value": "0000000050" + }, + { + "algorithmID": "00WR3", + "id": "SE32S", + "value": "0000027234" + }, + { + "algorithmID": "00WR3", + "id": "SE33S", + "value": "0000037623" + }, + { + "algorithmID": "00WR3", + "id": "SE34S", + "value": "0000000088" + }, + { + "algorithmID": "00WR3", + "id": "SE35S", + "value": "0000018812" + }, + { + "algorithmID": "00WR3", + "id": "SE36S", + "value": "0000000999" + }, + { + "algorithmID": "00WR3", + "id": "SE57S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "SE101S", + "value": "0000037623" + }, + { + "algorithmID": "00WR3", + "id": "JT01S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "JT02S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT03S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT20S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT21S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT28S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT33S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT34S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT40S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT41S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT42S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT44S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT51S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT53S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT70S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT75S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "JT80S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "AU200S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU201S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU202S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU203S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU204S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU205S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU206S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "AU207S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G400S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G401S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G402S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G403S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G404S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G405S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G406S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G407S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G408S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G409S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G410S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G411S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G412S", + "value": "0000000000" + }, + { + "algorithmID": "00WR3", + "id": "G413S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G414S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G415S", + "value": "0000000001" + }, + { + "algorithmID": "00WR3", + "id": "G416S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G417S", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G418S", + "value": "0000000006" + }, + { + "algorithmID": "00WR3", + "id": "US51A", + "value": "0000000060" + }, + { + "algorithmID": "00WR3", + "id": "HRAP02", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "REAP02", + "value": "0000000612" + }, + { + "algorithmID": "00WR3", + "id": "G199B", + "value": "0000002089" + }, + { + "algorithmID": "00WR3", + "id": "G200B", + "value": "0000000098" + }, + { + "algorithmID": "00WR3", + "id": "G205B", + "value": "0000002089" + }, + { + "algorithmID": "00WR3", + "id": "G206B", + "value": "-000000001" + }, + { + "algorithmID": "00WR3", + "id": "G207B", + "value": "0000002138" + }, + { + "algorithmID": "00WR3", + "id": "G208B", + "value": "0000000098" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WBN", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WBN", + "id": "AD01A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD01H", + "value": "0000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD02A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD02H", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD03H", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD04H", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD05H", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD06A", + "value": "0000000075" + }, + { + "algorithmID": "00WBN", + "id": "AD06B", + "value": "0000000075" + }, + { + "algorithmID": "00WBN", + "id": "AD06C", + "value": "0000000075" + }, + { + "algorithmID": "00WBN", + "id": "AD06D", + "value": "0000000075" + }, + { + "algorithmID": "00WBN", + "id": "AD07A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD08A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD09A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD12H", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD13A", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13B", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13C", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13D", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13E", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13F", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13G", + "value": "-000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD13H", + "value": "0000000001" + }, + { + "algorithmID": "00WBN", + "id": "AD14A", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14B", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14C", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14D", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14E", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14F", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14G", + "value": "0000000000" + }, + { + "algorithmID": "00WBN", + "id": "AD14H", + "value": "0000000000" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WBO", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WBO", + "id": "P02A", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P02B", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P02C", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P02D", + "value": "0000000001" + }, + { + "algorithmID": "00WBO", + "id": "P02E", + "value": "0000000001" + }, + { + "algorithmID": "00WBO", + "id": "P02F", + "value": "0000000002" + }, + { + "algorithmID": "00WBO", + "id": "P02G", + "value": "0000000002" + }, + { + "algorithmID": "00WBO", + "id": "P02H", + "value": "0000000002" + }, + { + "algorithmID": "00WBO", + "id": "P03A", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P03B", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P03C", + "value": "0000000000" + }, + { + "algorithmID": "00WBO", + "id": "P03D", + "value": "0000000001" + }, + { + "algorithmID": "00WBO", + "id": "P03E", + "value": "0000000001" + }, + { + "algorithmID": "00WBO", + "id": "P03F", + "value": "0000000002" + }, + { + "algorithmID": "00WBO", + "id": "P03G", + "value": "0000000002" + }, + { + "algorithmID": "00WBO", + "id": "P03H", + "value": "0000000002" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00W16", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00W16", + "id": "INCOME", + "value": "069 D" + }, + { + "algorithmID": "00W16", + "id": "LOWEND", + "value": "0000060000" + }, + { + "algorithmID": "00W16", + "id": "HIGHEND", + "value": "0000069999" + } + ], + "score": { + "derogatoryAlert": "false", + "fileInquiriesImpactedScore": "false", + "results": "+69 D", + "scoreCard": "1" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00U29", + "scoreModel": { + "characteristic": { + "algorithmID": "00U29", + "id": "DTIRATIO", + "value": "0000000037" + }, + "score": { + "derogatoryAlert": "false", + "fileInquiriesImpactedScore": "false", + "results": "+37" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00AQW", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AQW", + "id": "LALL232", + "value": "0000044213" + }, + { + "algorithmID": "00AQW", + "id": "LQA232Q2", + "value": "0000000099" + }, + { + "algorithmID": "00AQW", + "id": "LQA232Q3", + "value": "0000000097" + }, + { + "algorithmID": "00AQW", + "id": "LQA232YR", + "value": "0000000053" + }, + { + "algorithmID": "00AQW", + "id": "LALL252", + "value": "0000014738" + }, + { + "algorithmID": "00AQW", + "id": "LQA252Q2", + "value": "0000000099" + }, + { + "algorithmID": "00AQW", + "id": "LQA252Q3", + "value": "0000000097" + }, + { + "algorithmID": "00AQW", + "id": "LQA252YR", + "value": "0000000053" + }, + { + "algorithmID": "00AQW", + "id": "LREV316", + "value": "0000019388" + }, + { + "algorithmID": "00AQW", + "id": "LQR316Q2", + "value": "0000000017" + }, + { + "algorithmID": "00AQW", + "id": "LQR316Q3", + "value": "0000000016" + }, + { + "algorithmID": "00AQW", + "id": "LQR316YR", + "value": "0000000028" + }, + { + "algorithmID": "00AQW", + "id": "LREV325", + "value": "0000016286" + }, + { + "algorithmID": "00AQW", + "id": "LQR325Q2", + "value": "0000000018" + }, + { + "algorithmID": "00AQW", + "id": "LQR325Q3", + "value": "0000000002" + }, + { + "algorithmID": "00AQW", + "id": "LQR325YR", + "value": "0000000019" + }, + { + "algorithmID": "00AQW", + "id": "LAGG905", + "value": "0000047.16" + }, + { + "algorithmID": "00AQW", + "id": "LQA905Q2", + "value": "-000000021" + }, + { + "algorithmID": "00AQW", + "id": "LQA905Q3", + "value": "-000000022" + }, + { + "algorithmID": "00AQW", + "id": "LQA905YR", + "value": "-000000011" + }, + { + "algorithmID": "00AQW", + "id": "LAGG501", + "value": "0000011376" + }, + { + "algorithmID": "00AQW", + "id": "LQA501Q2", + "value": "-000000027" + }, + { + "algorithmID": "00AQW", + "id": "LQA501Q3", + "value": "-000000019" + }, + { + "algorithmID": "00AQW", + "id": "LQA501YR", + "value": "-000000017" + }, + { + "algorithmID": "00AQW", + "id": "LBKC320", + "value": "0000000007" + }, + { + "algorithmID": "00AQW", + "id": "LREV315", + "value": "0000000000" + }, + { + "algorithmID": "00AQW", + "id": "LQR315Q2", + "value": "-000005999" + }, + { + "algorithmID": "00AQW", + "id": "LREV202", + "value": "0000004.14" + }, + { + "algorithmID": "00AQW", + "id": "LQR202Q2", + "value": "0000000066" + }, + { + "algorithmID": "00AQW", + "id": "LQR202Q3", + "value": "0000000049" + }, + { + "algorithmID": "00AQW", + "id": "LQR202YR", + "value": "0000000074" + }, + { + "algorithmID": "00AQW", + "id": "LREV222", + "value": "0000003.76" + }, + { + "algorithmID": "00AQW", + "id": "LQR222Q2", + "value": "0000000063" + }, + { + "algorithmID": "00AQW", + "id": "LQR222Q3", + "value": "0000000047" + }, + { + "algorithmID": "00AQW", + "id": "LQR222YR", + "value": "0000000071" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00WDC", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "066", + "rank": "1" + }, + { + "code": "022", + "rank": "2" + }, + { + "code": "061", + "rank": "3" + }, + { + "code": "031", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+733", + "scoreCard": "4" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00WDF", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "234", + "rank": "1" + }, + { + "code": "232", + "rank": "2" + }, + { + "code": "052", + "rank": "3" + }, + { + "code": "035", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+548", + "scoreCard": "03" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00WB1", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "fileInquiriesImpactedScore": "false", + "results": "+198" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00AAV", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AAV", + "id": "AT900S", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "AT900B", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "AT900C", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "AT921S", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AT921B", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AT921C", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AT933S", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AT933B", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AT933C", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "AU900S", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "AU900B", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "AU900C", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "BC900S", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "BC900B", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "BC900C", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "BC999S", + "value": "0000000000" + }, + { + "algorithmID": "00AAV", + "id": "RL900S", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "RL900B", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "RL900C", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "RL933S", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "RL933B", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "RL933C", + "value": "-000000001" + }, + { + "algorithmID": "00AAV", + "id": "US900S", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "US900B", + "value": "-000000003" + }, + { + "algorithmID": "00AAV", + "id": "US900C", + "value": "-000000003" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00Y52", + "scoreModel": { + "characteristic": { + "algorithmID": "00Y52", + "id": "SPRFI09", + "value": "033" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Y70", + "scoreModel": { + "characteristic": { + "algorithmID": "00Y70", + "id": "CVVTG4RR", + "value": "021" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00WD6", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00WD6", + "id": "LINKT001", + "value": "0000000001" + }, + { + "algorithmID": "00WD6", + "id": "LINKT002", + "value": "0000000075" + }, + { + "algorithmID": "00WD6", + "id": "LINKT003", + "value": "0000000000" + }, + { + "algorithmID": "00WD6", + "id": "LINKT004", + "value": "0000000000" + }, + { + "algorithmID": "00WD6", + "id": "LINKT006", + "value": "0000000000" + }, + { + "algorithmID": "00WD6", + "id": "LINKT007", + "value": "-000000004" + }, + { + "algorithmID": "00WD6", + "id": "LINKT008", + "value": "-000000004" + }, + { + "algorithmID": "00WD6", + "id": "LINKT009", + "value": "0000000000" + }, + { + "algorithmID": "00WD6", + "id": "LINKT010", + "value": "-000000004" + }, + { + "algorithmID": "00WD6", + "id": "LINKT011", + "value": "0000000000" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00AX5", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00AX5", + "id": "AT36SD", + "value": "0000000008" + }, + { + "algorithmID": "00AX5", + "id": "G071SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G218DD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "S062SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "G063SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G069SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G001BD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G218BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G302SD", + "value": "0000000002" + }, + { + "algorithmID": "00AX5", + "id": "G304SD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G308SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "G310SD", + "value": "0000000002" + }, + { + "algorithmID": "00AX5", + "id": "AU201SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "AU203SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "AU205SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "AU36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BC106SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "BC108SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "BC36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BI36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BR36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "FI36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "FR36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "G001CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "G002BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G002CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "G003CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "G003SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G057SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G058SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G059SD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G061SD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G064SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G066SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G068SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G216SD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G219BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G219DD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G220BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G220DD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G221BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G221DD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G224BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G224CD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G235SD", + "value": "0000000002" + }, + { + "algorithmID": "00AX5", + "id": "G250BD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G250CD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G251BD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G251CD", + "value": "0000000000" + }, + { + "algorithmID": "00AX5", + "id": "G300SD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G306SD", + "value": "0000000001" + }, + { + "algorithmID": "00AX5", + "id": "G312SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "G314SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "HI36SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "HR36SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "IN36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "MT36SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "MT47SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "OF36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "PB36SD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "RE36SD", + "value": "0000000008" + }, + { + "algorithmID": "00AX5", + "id": "RT36SD", + "value": "0000000008" + }, + { + "algorithmID": "00AX5", + "id": "S061SD", + "value": "0000000039" + }, + { + "algorithmID": "00AX5", + "id": "SE36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "ST36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "US36SD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "AT21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "AU21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BC21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BI21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BR21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "FI21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "FR21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "HI21CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "HR21CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "IN21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "MT21CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "OF21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "PB21CD", + "value": "-000000001" + }, + { + "algorithmID": "00AX5", + "id": "RE21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "RT21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "SE21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "ST21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "US21CD", + "value": "0000000999" + }, + { + "algorithmID": "00AX5", + "id": "BK07FD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BK07XD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BK07DD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BK13FD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BK13XD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BK13DD", + "value": "-000000004" + }, + { + "algorithmID": "00AX5", + "id": "BL001D", + "value": "-000000001" + } + ] + }, + "status": "defaultDelivered" + }, + { + "code": "00Z23", + "scoreModel": { + "characteristic": { + "algorithmID": "00Z23", + "id": "LINKF001", + "value": "CLEAR" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00WDM", + "status": "defaultDelivered" + }, + { + "code": "00WDN", + "status": "defaultDelivered" + }, + { + "code": "00Z42", + "scoreModel": { + "consumerStatement": { + "text": "*A*:" + }, + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "990", + "rank": "1" + }, + { + "code": "038", + "rank": "2" + }, + { + "code": "031", + "rank": "3" + }, + { + "code": "144", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+660", + "scoreCard": "4" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z43", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "990", + "rank": "1" + }, + { + "code": "038", + "rank": "2" + }, + { + "code": "031", + "rank": "3" + }, + { + "code": "144", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+667", + "scoreCard": "4" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z17", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00Z17", + "id": "LINKA004", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA002", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA023", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA024", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA048", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA049", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA001", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA050", + "value": "0000000001" + }, + { + "algorithmID": "00Z17", + "id": "LINKA051", + "value": "0000000001" + }, + { + "algorithmID": "00Z17", + "id": "LINKA052", + "value": "0000000001" + }, + { + "algorithmID": "00Z17", + "id": "LINKA029", + "value": "0000000003" + }, + { + "algorithmID": "00Z17", + "id": "LINKA030", + "value": "0000000130" + }, + { + "algorithmID": "00Z17", + "id": "LINKA053", + "value": "0000001016" + }, + { + "algorithmID": "00Z17", + "id": "LINKA022", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA026", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA027", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA028", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA021", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA020", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA006", + "value": "0000000003" + }, + { + "algorithmID": "00Z17", + "id": "LINKA003", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA025", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA011", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA005", + "value": "0000.00000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA010", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA040", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA033", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA034", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA035", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA036", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA007", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA037", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA008", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA009", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA039", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA042", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA043", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA044", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA015", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA045", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA046", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA047", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA017", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA018", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA019", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA041", + "value": "9999.99999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA012", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA014", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA016", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA013", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA038", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA054", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA055", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA056", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA057", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA058", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA059", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA031", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA080", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA060", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA061", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA062", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA063", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA064", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA065", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA066", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA082", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA067", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA068", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA069", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA070", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA071", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA072", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA032", + "value": "0000000000" + }, + { + "algorithmID": "00Z17", + "id": "LINKA081", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA084", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA085", + "value": "0000099999" + }, + { + "algorithmID": "00Z17", + "id": "LINKA073", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA074", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA075", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA076", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA077", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA078", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA079", + "value": "0000000.00" + }, + { + "algorithmID": "00Z17", + "id": "LINKA083", + "value": "0000000.00" + } + ], + "consumerStatement": { + "text": "*A*:" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z18", + "scoreModel": { + "characteristic": [ + { + "algorithmID": "00Z18", + "id": "LINKB001" + }, + { + "algorithmID": "00Z18", + "id": "LINKB014" + }, + { + "algorithmID": "00Z18", + "id": "LINKB005" + }, + { + "algorithmID": "00Z18", + "id": "LINKB002" + }, + { + "algorithmID": "00Z18", + "id": "LINKB003" + }, + { + "algorithmID": "00Z18", + "id": "LINKB004" + }, + { + "algorithmID": "00Z18", + "id": "LINKB013" + }, + { + "algorithmID": "00Z18", + "id": "LINKB015" + }, + { + "algorithmID": "00Z18", + "id": "LINKB016" + }, + { + "algorithmID": "00Z18", + "id": "LINKB017" + }, + { + "algorithmID": "00Z18", + "id": "LINKB018" + }, + { + "algorithmID": "00Z18", + "id": "LINKB010" + }, + { + "algorithmID": "00Z18", + "id": "LINKB011" + }, + { + "algorithmID": "00Z18", + "id": "LINKB006" + }, + { + "algorithmID": "00Z18", + "id": "LINKB007" + }, + { + "algorithmID": "00Z18", + "id": "LINKB008" + }, + { + "algorithmID": "00Z18", + "id": "LINKB009" + }, + { + "algorithmID": "00Z18", + "id": "LINKB012" + } + ], + "score": { + "derogatoryAlert": "false", + "fileInquiriesImpactedScore": "false", + "noScoreReason": "insufficientCredit", + "results": "+" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z44", + "scoreModel": { + "consumerStatement": { + "text": "*A*:" + }, + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "990", + "rank": "1" + }, + { + "code": "951", + "rank": "2" + }, + { + "code": "960", + "rank": "3" + }, + { + "code": "950", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+618", + "scoreCard": "4" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z45", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "990", + "rank": "1" + }, + { + "code": "960", + "rank": "2" + }, + { + "code": "959", + "rank": "3" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+622", + "scoreCard": "4" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z5T", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "066", + "rank": "1" + }, + { + "code": "103", + "rank": "2" + }, + { + "code": "144", + "rank": "3" + }, + { + "code": "073", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "true", + "results": "+694", + "scoreCard": "02" + } + }, + "status": "defaultDelivered" + }, + { + "code": "00Z5U", + "scoreModel": { + "score": { + "derogatoryAlert": "false", + "factors": { + "factor": [ + { + "code": "031", + "rank": "1" + }, + { + "code": "073", + "rank": "2" + }, + { + "code": "022", + "rank": "3" + }, + { + "code": "222", + "rank": "4" + } + ] + }, + "fileInquiriesImpactedScore": "false", + "results": "+607", + "scoreCard": "02" + } + }, + "status": "defaultDelivered" + }, + { + "code": "06800", + "ofacNameScreen": { + "@attributes": { + "searchStatus": "clear" + } + }, + "status": "defaultDelivered" + }, + { + "code": "07051", + "militaryLendingActSearch": { + "@attributes": { + "searchStatus": "noMatch" + } + }, + "status": "delivered" + } + ], + "consumerFileData": {}, + "custom": { + "credit": { + "creditSummary": { + "installmentAmount": { + "creditLimit": "000000000", + "currentBalance": "000083485", + "highCredit": "000104018", + "monthlyPayment": "000001526", + "pastDue": "000000000" + }, + "recordCounts": { + "@attributes": { + "reportingPeriod": "totalHistory" + }, + "collectionCount": "000", + "historicalNegativeOccurrencesCount": "006", + "historicalNegativeTradeCount": "002", + "installmentTradeCount": "015", + "mortgageTradeCount": "000", + "negativeTradeCount": "000", + "openTradeCount": "000", + "publicRecordCount": "000", + "revolvingTradeCount": "023", + "totalInquiryCount": "007", + "totalTradeCount": "038", + "unspecifiedTradeCount": "000" + }, + "revolvingAmount": { + "creditLimit": "000032310", + "currentBalance": "000012922", + "highCredit": "000021633", + "monthlyPayment": "000000612", + "pastDue": "000000000", + "percentAvailableCredit": "060" + }, + "totalAmount": { + "creditLimit": "000032310", + "currentBalance": "000096407", + "highCredit": "000125651", + "monthlyPayment": "000002138", + "pastDue": "000000000" + } + }, + "inquiry": [ + { + "ECOADesignator": "individual", + "date": "2025-02-03", + "subscriber": { + "industryCode": "Z", + "inquirySubscriberPrefixCode": "17WP", + "memberCode": "00004884", + "name": { + "unparsed": "UNITED ONE" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2025-01-09", + "subscriber": { + "industryCode": "Q", + "inquirySubscriberPrefixCode": "17RV", + "memberCode": "01724100", + "name": { + "unparsed": "URW COMM FCU" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2024-09-17", + "subscriber": { + "industryCode": "A", + "inquirySubscriberPrefixCode": "12LA", + "memberCode": "04503647", + "name": { + "unparsed": "GUNTER CHRYS" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2024-09-17", + "subscriber": { + "industryCode": "Q", + "inquirySubscriberPrefixCode": "17RV", + "memberCode": "01724100", + "name": { + "unparsed": "URW COMM FCU" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2024-05-17", + "subscriber": { + "industryCode": "Q", + "inquirySubscriberPrefixCode": "17RV", + "memberCode": "01724100", + "name": { + "unparsed": "URW COMM FCU" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2024-02-29", + "subscriber": { + "industryCode": "Q", + "inquirySubscriberPrefixCode": "17RV", + "memberCode": "01724100", + "name": { + "unparsed": "URW COMM FCU" + } + } + }, + { + "ECOADesignator": "individual", + "date": "2023-06-23", + "subscriber": { + "industryCode": "Q", + "inquirySubscriberPrefixCode": "17RV", + "memberCode": "01724100", + "name": { + "unparsed": "URW COMM FCU" + } + } + } + ], + "trade": [ + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "431503735964", + "accountRating": "01", + "creditLimit": "000004000", + "currentBalance": "000001956", + "dateEffective": "2025-03-02", + "dateOpened": "2020-03-02", + "highCredit": "000003100", + "mostRecentPayment": { + "date": "2025-02-27" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "59" + }, + "paymentPattern": { + "startDate": "2025-02-02", + "text": "1111111111111111111111111111111EE11111111111111111111E11EEE" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "02GY6002", + "name": { + "unparsed": "MISSIONLNTAB" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000100" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "RD" + }, + "accountNumber": "214840002", + "accountRating": "01", + "currentBalance": "000027234", + "dateEffective": "2025-02-28", + "dateOpened": "2024-10-17", + "highCredit": "000028671", + "mostRecentPayment": { + "date": "2025-02-18" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "04" + }, + "paymentPattern": { + "startDate": "2025-01-28", + "text": "1111" + } + }, + "portfolioType": "installment", + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "060", + "scheduledMonthlyPayment": "000000626" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "RD" + }, + "accountNumber": "214605357", + "accountRating": "01", + "currentBalance": "000010389", + "dateEffective": "2025-02-28", + "dateOpened": "2023-04-05", + "highCredit": "000014231", + "mostRecentPayment": { + "date": "2025-02-04" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "22" + }, + "paymentPattern": { + "startDate": "2025-01-28", + "text": "1111111111111111111111" + } + }, + "portfolioType": "installment", + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "072", + "scheduledMonthlyPayment": "000000234" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "AU" + }, + "accountNumber": "214540785", + "accountRating": "01", + "currentBalance": "000022951", + "dateEffective": "2025-02-28", + "dateOpened": "2022-11-10", + "highCredit": "000033774", + "mostRecentPayment": { + "date": "2025-02-20" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "27" + }, + "paymentPattern": { + "startDate": "2025-01-28", + "text": "111111111111111111111111111" + } + }, + "portfolioType": "installment", + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "072", + "scheduledMonthlyPayment": "000000589" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "FX" + }, + "accountNumber": "518941018847", + "accountRating": "01", + "creditLimit": "000004500", + "currentBalance": "000001165", + "dateEffective": "2025-02-26", + "dateOpened": "2025-01-09", + "highCredit": "000001165", + "mostRecentPayment": { + "date": "2025-02-15" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "01" + }, + "paymentPattern": { + "startDate": "2025-01-26", + "text": "1" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "064DB002", + "name": { + "unparsed": "CITI" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000041" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "517805749294", + "accountRating": "01", + "creditLimit": "000001000", + "currentBalance": "000000409", + "dateEffective": "2025-02-24", + "dateOpened": "2019-10-11", + "highCredit": "000000857", + "mostRecentPayment": { + "date": "2025-02-21" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "63" + }, + "paymentPattern": { + "startDate": "2025-01-24", + "text": "1111111111111111E11111111111111EE1111111111111111111E1E1111111E" + } + }, + "portfolioType": "revolving", + "remark": { + "code": "DRG", + "type": "compliance" + }, + "subscriber": { + "industryCode": "B", + "memberCode": "01DTV001", + "name": { + "unparsed": "CAPITAL ONE" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000025" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "authorizedUser", + "account": { + "type": "CC" + }, + "accountNumber": "517805810890", + "accountRating": "01", + "creditLimit": "000007500", + "currentBalance": "000001535", + "dateEffective": "2025-02-20", + "dateOpened": "2017-11-23", + "highCredit": "000003198", + "mostRecentPayment": { + "date": "2025-02-17" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "82" + }, + "paymentPattern": { + "startDate": "2025-01-20", + "text": "11111111111111111111111111EEEEEEE11111EEEE1111111111111111111111111111111111111111" + } + }, + "portfolioType": "revolving", + "remark": { + "code": "DRG", + "type": "compliance" + }, + "subscriber": { + "industryCode": "B", + "memberCode": "01DTV001", + "name": { + "unparsed": "CAPITAL ONE" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000049" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "542539505425", + "accountRating": "01", + "creditLimit": "000002200", + "currentBalance": "000001261", + "dateEffective": "2025-02-14", + "dateOpened": "2020-01-31", + "highCredit": "000001590", + "mostRecentPayment": { + "date": "2025-02-13" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "60" + }, + "paymentPattern": { + "startDate": "2025-01-14", + "text": "111111111111111111111111111111111111111111111111111111111111" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "01TGU001", + "name": { + "unparsed": "MERRICK BK" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000085" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "778840305008", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000450", + "currentBalance": "000000000", + "dateClosed": "2025-01-22", + "dateEffective": "2025-02-13", + "dateOpened": "2022-12-29", + "datePaidOut": "2023-01-23", + "highCredit": "000000017", + "mostRecentPayment": { + "date": "2023-01-23" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "25" + }, + "paymentPattern": { + "startDate": "2025-01-13", + "text": "EEEEEEEEEEEEEEEEEEEEEEEE1" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CBG", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "R", + "memberCode": "01NZ8368", + "name": { + "unparsed": "CCB/CARTERS" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "504662207203", + "accountRating": "01", + "creditLimit": "000001560", + "currentBalance": "000001505", + "dateEffective": "2025-02-11", + "dateOpened": "2023-11-22", + "highCredit": "000002584", + "mostRecentPayment": { + "date": "2025-01-06" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "15" + }, + "paymentPattern": { + "startDate": "2025-01-11", + "text": "111111111111111" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "F", + "memberCode": "0999206U", + "name": { + "unparsed": "SYNCB/LUXURY" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000059" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "601101200826", + "accountRating": "01", + "creditLimit": "000005000", + "currentBalance": "000002521", + "dateEffective": "2025-02-11", + "dateOpened": "2022-11-28", + "highCredit": "000004563", + "mostRecentPayment": { + "date": "2025-01-27" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "26" + }, + "paymentPattern": { + "startDate": "2025-01-11", + "text": "1111111111111111111111111E" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "09616003", + "name": { + "unparsed": "DISCOVERBANK" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000100" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "604583128333", + "accountRating": "01", + "creditLimit": "000000450", + "currentBalance": "000000000", + "dateEffective": "2025-02-07", + "dateOpened": "2023-10-05", + "datePaidOut": "2024-08-19", + "highCredit": "000000508", + "mostRecentPayment": { + "date": "2024-08-19" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "16" + }, + "paymentPattern": { + "startDate": "2025-01-07", + "text": "EEEEE11111111111" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "D", + "memberCode": "0235062A", + "name": { + "unparsed": "SYNCB/BELK" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "444796252421", + "accountRating": "01", + "creditLimit": "000001250", + "currentBalance": "000000371", + "dateEffective": "2025-02-06", + "dateOpened": "2020-10-22", + "highCredit": "000000612", + "mostRecentPayment": { + "date": "2025-02-02" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "51" + }, + "paymentPattern": { + "startDate": "2025-01-06", + "text": "11111E111111111111111111EE1EEEEE1111111111111111111" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "054MR013", + "name": { + "unparsed": "CREDITONEBNK" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000030" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "552342661604", + "accountRating": "01", + "creditLimit": "000003500", + "currentBalance": "000001544", + "dateEffective": "2025-02-05", + "dateOpened": "2023-04-23", + "highCredit": "000002654", + "mostRecentPayment": { + "date": "2025-02-03" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "21" + }, + "paymentPattern": { + "startDate": "2025-01-05", + "text": "11111111111111111111E" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "01DTV001", + "name": { + "unparsed": "CAPITAL ONE" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000062" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "AU" + }, + "accountNumber": "214786123", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2025-02-03", + "dateEffective": "2025-02-03", + "dateOpened": "2024-05-17", + "highCredit": "000021003", + "mostRecentPayment": { + "date": "2025-02-03" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "09" + }, + "paymentPattern": { + "startDate": "2025-01-03", + "text": "111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "066" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "778850603832", + "accountRating": "01", + "creditLimit": "000000300", + "currentBalance": "000000041", + "dateEffective": "2025-02-03", + "dateOpened": "2021-01-22", + "highCredit": "000000180", + "mostRecentPayment": { + "date": "2024-07-10" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "01", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "48" + }, + "maxDelinquency": [ + { + "accountRating": "02", + "amount": "000000046", + "date": "2024-07-01", + "earliest": "true" + }, + { + "amount": "000000046", + "date": "2024-07-01", + "earliest": "false" + } + ], + "paymentPattern": { + "startDate": "2025-01-03", + "text": "EEEE112111111111111EE111EEEEEE111EEE1EE111EEEE11" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "C", + "memberCode": "01NZ8386", + "name": { + "unparsed": "CB/MAURICES" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000030" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "444796258426", + "accountRating": "01", + "creditLimit": "000001050", + "currentBalance": "000000614", + "dateEffective": "2025-02-03", + "dateOpened": "2019-10-20", + "highCredit": "000000622", + "mostRecentPayment": { + "date": "2025-01-29" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "63" + }, + "paymentPattern": { + "startDate": "2025-01-03", + "text": "111111111111111111111111111111111111111111111111111111111111111" + } + }, + "portfolioType": "revolving", + "subscriber": { + "industryCode": "B", + "memberCode": "054MR013", + "name": { + "unparsed": "CREDITONEBNK" + } + }, + "terms": { + "paymentScheduleMonthCount": "MIN", + "scheduledMonthlyPayment": "000000031" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "763600600686", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000007000", + "currentBalance": "000000000", + "dateClosed": "2024-04-02", + "dateEffective": "2025-02-03", + "dateOpened": "2024-03-26", + "highCredit": "000000000", + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "10" + }, + "paymentPattern": { + "startDate": "2025-01-03", + "text": "EEEEEEEEEE" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CLO", + "type": "ratingHistory" + }, + { + "code": "CBC", + "type": "compliance" + } + ], + "subscriber": { + "industryCode": "B", + "memberCode": "022EL018", + "name": { + "unparsed": "TBOM RETAIL" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "ST" + }, + "accountNumber": "97895843241E00320211006211007", + "accountRating": "01", + "currentBalance": "000006976", + "dateEffective": "2025-01-31", + "dateOpened": "2021-10-06", + "highCredit": "000006404", + "mostRecentPayment": { + "date": "2023-08-26" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "39" + }, + "paymentPattern": { + "startDate": "2024-12-31", + "text": "11111111111X111111111111111111111111XX1" + } + }, + "portfolioType": "installment", + "subscriber": { + "industryCode": "B", + "memberCode": "02JC8001", + "name": { + "unparsed": "DPT ED/AIDV" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "120", + "scheduledMonthlyPayment": "000000077" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "US" + }, + "accountNumber": "214755954", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2025-01-30", + "dateEffective": "2025-01-30", + "dateOpened": "2024-02-29", + "highCredit": "000025000", + "mostRecentPayment": { + "date": "2025-01-30" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "11" + }, + "paymentPattern": { + "startDate": "2024-12-30", + "text": "11111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "060" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "778840206323", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000003900", + "currentBalance": "000000000", + "dateClosed": "2024-10-23", + "dateEffective": "2024-10-25", + "dateOpened": "2024-03-28", + "highCredit": "000000000", + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "06" + }, + "paymentPattern": { + "startDate": "2024-09-25", + "text": "EEEEEE" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CBG", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "B", + "memberCode": "01NZ8267", + "name": { + "unparsed": "CCB/ALPCOS" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "ST" + }, + "accountNumber": "97895843241ER0220150328", + "accountRating": "01", + "currentBalance": "000015935", + "dateEffective": "2024-04-30", + "dateOpened": "2009-03-09", + "highCredit": "000020938", + "mostRecentPayment": { + "date": "2024-04-26" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "80" + }, + "paymentPattern": { + "startDate": "2024-03-30", + "text": "1111111111111111111111111111111111111111111111111111111111X11111X11111X1XX1111XX" + } + }, + "portfolioType": "installment", + "subscriber": { + "industryCode": "B", + "memberCode": "02JC8001", + "name": { + "unparsed": "DPT ED/AIDV" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "240" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "AU" + }, + "accountNumber": "214581440", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2024-04-16", + "dateEffective": "2024-04-16", + "dateOpened": "2023-02-10", + "highCredit": "000008924", + "mostRecentPayment": { + "date": "2024-04-16" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "14" + }, + "paymentPattern": { + "startDate": "2024-03-16", + "text": "11111111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "048" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "US" + }, + "accountNumber": "214594956", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2024-02-29", + "dateEffective": "2024-02-29", + "dateOpened": "2023-03-14", + "highCredit": "000024075", + "mostRecentPayment": { + "date": "2024-02-29" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "11" + }, + "paymentPattern": { + "startDate": "2024-01-29", + "text": "11111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "060" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "504662206909", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000500", + "currentBalance": "000000000", + "dateClosed": "2023-11-20", + "dateEffective": "2024-02-19", + "dateOpened": "2022-11-22", + "datePaidOut": "2023-05-16", + "highCredit": "000000330", + "mostRecentPayment": { + "date": "2023-05-16" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "15" + }, + "paymentPattern": { + "startDate": "2024-01-19", + "text": "EEEEEEEEE1111EE" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CBG", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "F", + "memberCode": "0999212Y", + "name": { + "unparsed": "SYNCB/PNDORA" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "601919127850", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000003900", + "currentBalance": "000000000", + "dateClosed": "2023-11-12", + "dateEffective": "2024-02-09", + "dateOpened": "2022-11-28", + "highCredit": "000000000", + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "15" + }, + "paymentPattern": { + "startDate": "2024-01-09", + "text": "EEEEEEEEEEEEEEE" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "INA", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "H", + "memberCode": "09992545", + "name": { + "unparsed": "SYNCB/RMSTGO" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "549806005060", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000700", + "currentBalance": "000000000", + "dateClosed": "2023-05-16", + "dateEffective": "2023-09-06", + "dateOpened": "2021-11-14", + "datePaidOut": "2023-05-16", + "highCredit": "000000569", + "mostRecentPayment": { + "date": "2023-05-16" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "21" + }, + "paymentPattern": { + "startDate": "2023-08-06", + "text": "EEEE111111EEEEE111111" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CLO", + "type": "ratingHistory" + }, + { + "code": "CBC", + "type": "compliance" + } + ], + "subscriber": { + "industryCode": "B", + "memberCode": "022EL016", + "name": { + "unparsed": "TBOM/MILSTNE" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "636992450026", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000000", + "currentBalance": "000000000", + "dateClosed": "2023-05-03", + "dateEffective": "2023-06-05", + "dateOpened": "2022-04-12", + "highCredit": "000000000", + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "14" + }, + "paymentPattern": { + "startDate": "2023-05-05", + "text": "EEEYEEEEEEEEXE" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "INA", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "D", + "memberCode": "02CSN005", + "name": { + "unparsed": "FETTIFHT/WEB" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CC" + }, + "accountNumber": "543668400064", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000650", + "currentBalance": "000000000", + "dateClosed": "2023-05-16", + "dateEffective": "2023-06-01", + "dateOpened": "2021-01-27", + "datePaidOut": "2023-05-16", + "highCredit": "000000330", + "mostRecentPayment": { + "date": "2023-05-16" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "28" + }, + "paymentPattern": { + "startDate": "2023-05-01", + "text": "1111111111111111111111111111" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CLO", + "type": "ratingHistory" + }, + { + "code": "CBC", + "type": "compliance" + } + ], + "subscriber": { + "industryCode": "B", + "memberCode": "027XU013", + "name": { + "unparsed": "CORTRUST BK" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "778840206306", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000003400", + "currentBalance": "000000000", + "dateClosed": "2023-04-10", + "dateEffective": "2023-05-26", + "dateOpened": "2023-04-10", + "highCredit": "000000000", + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "01" + }, + "paymentPattern": { + "startDate": "2023-04-26", + "text": "E" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CLO", + "type": "ratingHistory" + }, + { + "code": "CBC", + "type": "compliance" + } + ], + "subscriber": { + "industryCode": "B", + "memberCode": "01NZ8267", + "name": { + "unparsed": "CCB/ALPCOS" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "US" + }, + "accountNumber": "214581276", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2023-03-14", + "dateEffective": "2023-03-14", + "dateOpened": "2023-02-10", + "highCredit": "000011000", + "mostRecentPayment": { + "date": "2023-03-14" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "01" + }, + "paymentPattern": { + "startDate": "2023-02-14", + "text": "1" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "060" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "IS" + }, + "accountNumber": "348334300003", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2023-03-09", + "dateEffective": "2023-03-09", + "dateOpened": "2022-04-02", + "highCredit": "000001184", + "mostRecentPayment": { + "date": "2023-03-09" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "11" + }, + "paymentPattern": { + "startDate": "2023-02-09", + "text": "E1111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "H", + "memberCode": "01L2B026", + "name": { + "unparsed": "SCHEWEL FURN" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "010" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "AU" + }, + "accountNumber": "214457302", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2023-02-10", + "dateEffective": "2023-02-10", + "dateOpened": "2022-05-25", + "highCredit": "000009944", + "mostRecentPayment": { + "date": "2023-02-10" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "09" + }, + "paymentPattern": { + "startDate": "2023-01-10", + "text": "111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "Q", + "memberCode": "026P7001", + "name": { + "unparsed": "URW COMM FCU" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "060" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "LC" + }, + "accountNumber": "617653", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000000500", + "currentBalance": "000000000", + "dateClosed": "2022-09-16", + "dateEffective": "2022-11-30", + "dateOpened": "2016-04-18", + "datePaidOut": "2017-03-13", + "highCredit": "000000500", + "mostRecentPayment": { + "date": "2017-03-13" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "14" + }, + "paymentPattern": { + "startDate": "2022-10-30", + "text": "YEEEEEEEEEEEEE" + } + }, + "portfolioType": "lineOfCredit", + "remark": [ + { + "code": "INA", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "Q", + "memberCode": "01ZSG004", + "name": { + "unparsed": "STATECU" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "CH" + }, + "accountNumber": "636992150667", + "accountRating": "01", + "closedIndicator": "normal", + "creditLimit": "000001000", + "currentBalance": "000000000", + "dateClosed": "2022-06-16", + "dateEffective": "2022-09-05", + "dateOpened": "2019-07-19", + "datePaidOut": "2022-05-27", + "highCredit": "000000961", + "mostRecentPayment": { + "date": "2022-05-27" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "04", + "late60DaysTotal": "01", + "late90DaysTotal": "00", + "monthsReviewedCount": "26" + }, + "maxDelinquency": [ + { + "accountRating": "03", + "amount": "000000126", + "date": "2021-12-01", + "earliest": "true" + }, + { + "amount": "000000126", + "date": "2021-12-01", + "earliest": "false" + } + ], + "paymentPattern": { + "startDate": "2022-08-05", + "text": "EEE11211322211111111111111" + } + }, + "portfolioType": "revolving", + "remark": [ + { + "code": "CBG", + "type": "generic" + }, + { + "code": "CLO", + "type": "ratingHistory" + } + ], + "subscriber": { + "industryCode": "D", + "memberCode": "02CSN002", + "name": { + "unparsed": "WEBBNK/FHUT" + } + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "AU" + }, + "accountNumber": "1700116304", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2022-03-30", + "dateEffective": "2022-03-30", + "dateOpened": "2017-09-28", + "highCredit": "000012312", + "mostRecentPayment": { + "date": "2022-03-30" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "54" + }, + "paymentPattern": { + "startDate": "2022-02-28", + "text": "11111111111111X111111111111111111111111111111111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "F", + "memberCode": "01FS9001", + "name": { + "unparsed": "NICHOLAS FIN" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "062" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "IS" + }, + "accountNumber": "348334300002", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2022-02-07", + "dateEffective": "2022-02-07", + "dateOpened": "2022-02-07", + "highCredit": "000001168", + "mostRecentPayment": { + "date": "2022-02-07" + }, + "pastDue": "000000000", + "paymentHistory": {}, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "H", + "memberCode": "01L2B026", + "name": { + "unparsed": "SCHEWEL FURN" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "009" + }, + "updateMethod": "automated" + }, + { + "ECOADesignator": "individual", + "account": { + "type": "IS" + }, + "accountNumber": "348334300001", + "accountRating": "01", + "closedIndicator": "normal", + "currentBalance": "000000000", + "dateClosed": "2022-01-20", + "dateEffective": "2022-01-20", + "dateOpened": "2020-05-07", + "highCredit": "000002393", + "mostRecentPayment": { + "date": "2022-01-20" + }, + "pastDue": "000000000", + "paymentHistory": { + "historicalCounters": { + "late30DaysTotal": "00", + "late60DaysTotal": "00", + "late90DaysTotal": "00", + "monthsReviewedCount": "20" + }, + "paymentPattern": { + "startDate": "2021-12-20", + "text": "11Y11111111111111111" + } + }, + "portfolioType": "installment", + "remark": { + "code": "CLO", + "type": "ratingHistory" + }, + "subscriber": { + "industryCode": "H", + "memberCode": "01L2B026", + "name": { + "unparsed": "SCHEWEL FURN" + } + }, + "terms": { + "paymentFrequency": "monthly", + "paymentScheduleMonthCount": "021" + }, + "updateMethod": "automated" + } + ] + } + }, + "fileNumber": "01", + "fileSummary": { + "consumerStatementIndicator": "false", + "creditDataStatus": { + "disputed": "false", + "doNotPromote": { + "indicator": "false" + }, + "freeze": { + "indicator": "false" + }, + "minor": "false", + "suppressed": "false" + }, + "fileHitIndicator": "regularHit", + "inFileSinceDate": "2001-01-01", + "market": "17", + "ssnMatchIndicator": "exact", + "submarket": "RV" + }, + "indicative": { + "address": { + "@attributes": { + "source": "file" + }, + "dateReported": "2018-12-31", + "location": { + "city": "New York", + "state": "NY", + "zipCode": "10004", + "zipExtension": "0000" + }, + "qualifier": "personal", + "status": "current", + "street": { + "name": "Main", + "number": "444", + "type": "ST" + } + }, + "dateOfBirth": "1976-01-01", + "employment": [ + { + "@attributes": { + "source": "file" + }, + "dateEffective": "2022-03-14", + "dateOnFileSince": "2022-02-11", + "employer": { + "unparsed": "SELFEMPLOYED1099 EMPLOYEE" + } + }, + { + "@attributes": { + "source": "file" + }, + "dateEffective": "2020-07-02", + "dateOnFileSince": "2020-07-02", + "employer": { + "unparsed": "LIFE WELLNESS FITNESS CTR" + } + } + ], + "name": [ + { + "@attributes": { + "source": "file" + }, + "person": { + "first": "Name", + "last": "Last Name", + "middle": {} + } + }, + { + "@attributes": { + "source": "file" + }, + "person": { + "unparsed": "First Name, Last Name" + }, + "qualifier": "alsoKnownAs" + }, + { + "@attributes": { + "source": "file" + }, + "person": { + "unparsed": "First Name, Last Name" + }, + "qualifier": "alsoKnownAs" + }, + { + "@attributes": { + "source": "file" + }, + "person": { + "unparsed": "First Name, Last Name" + }, + "qualifier": "alsoKnownAs" + } + ], + "socialSecurity": { + "@attributes": { + "source": "file" + }, + "number": "125784586" + } + } + } + } + }, + "transactionControl": { + "options": { + "country": "us", + "language": "en", + "productVersion": "creditVision" + }, + "subscriber": { + "industryCode": "F", + "inquirySubscriberPrefixCode": "1256", + "memberCode": "0001245" + }, + "tracking": { + "transactionTimeStamp": "2025-02-04T16:04:17.047-06:00" + }, + "userRefNumber": "01JNSXXXXXXXXXXXXX" + }, + "version": "2.31" + } +} + +class TestBlock(unittest.TestCase): + def test_main_success(self): + blockResult = __main__(**input_json) + # breakpoint() + self.assertIsInstance(blockResult, dict, "Result should be a dictionary.") + self.assertIn("grade", blockResult, "Result dictionary should contain 'grade' if success.") + + +if __name__ == "__main__": + unittest.main() + diff --git a/xgboost_model.joblib b/xgboost_model.joblib new file mode 100644 index 0000000..c01720d Binary files /dev/null and b/xgboost_model.joblib differ