{"id":1631977,"date":"2025-06-12T09:24:53","date_gmt":"2025-06-12T00:24:53","guid":{"rendered":"https:\/\/www.hanwhavision.com\/?page_id=1631977"},"modified":"2025-06-13T07:44:26","modified_gmt":"2025-06-12T22:44:26","slug":"ai-pack-license-request","status":"publish","type":"page","link":"https:\/\/www.hanwhavision.com\/en\/ai-pack-license-request\/","title":{"rendered":"AI Pack License Request (NEW)"},"content":{"rendered":"\n<!-- STANDARD HERO -->\n<section class=\"section-hero-standard \" >\n\t<div class=\"wrapper\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"standard-hero-block no-media\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"content-cell\">\n\t\t\t\t\t<div class=\"content-wrap\">\n\t\t\t\t\t\t                        \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h1 class=\"hero-title\">AI Pack License Request Form<\/h1>\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"p1\">Thank you for your interest in our AI solution. Our team will process your request promptly, and you can expect to receive your license within 3 business days. If you have any questions or need assistance, please feel free to contact us.<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n\n\n<style>\n#frm_ai_pack .frm-error-message {\n\tmargin-top: 4px;\n\tfont-size: 13px;\n\tline-height: 1.2;\n\tfont-weight: 300;\n\tcolor: red;\n}\n<\/style>\n<script>\n\tvar valid = true;\n\n\tfunction getTrim(strValue, strTrimType) {\n\t\tvar strReturn = \"\";\n\t\tswitch (strTrimType.toUpperCase()) {\n\t\t\tdefault :\n\t\t\t\tstrReturn = strValue;\n\t\t\t\tbreak;\n\t\t}\n\t\treturn strReturn;\n\t}\n\n\tfunction IsEmpty(strValue) {\n\t\tif (strValue == null || getTrim(strValue, \"A\") == \"\") return true;\n\t\treturn false;\n\t}\n\n\t\/\/ \ube48\uac12\uc5ec\ubd80 \uccb4\ud06c \ud6c4 \ud3ec\ucee4\uc2a4\n\tfunction IsCheck(obj, strMsg) {\n\t\tif (IsEmpty(obj.value)) {\n\t\t\talert(strMsg);\n\t\t\tobj.focus();\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction validate(obj, type) {\n\t\tswitch(type) {\n\t\t\tcase 'required':\n\t\t\t\tif ( IsEmpty(obj.value) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'email':\n\t\t\t\tif ( ! IsEmail(obj.value) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase 'checked':\n\t\t\t\tif ( ! IsChecked(obj) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tconsole.log('ERR: invalid validation type');\n\t\t}\n\n\t\treturn true;\n\t}\n\n\t\/\/ \uccb4\ud06c\uc5ec\ubd80 \ud655\uc778\n\tfunction IsChecked(objEle) {\n\t\tif (String(objEle) != \"undefined\") {\n\t\t\tif (String(objEle.length) == \"undefined\") {\n\t\t\t\tif (objEle.checked) return true;\n\t\t\t} else {\n\t\t\t\tfor (var i = 0; i < objEle.length; i++) {\n\t\t\t\t\tif (objEle[i].checked) return true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}\n\n\t\/\/ \uccb4\ud06c\ub41c \uac12 \uad6c\ud558\uae30\n\tfunction getChecked_Value(objEle) {\n\t\tvar strReturn = \"\";\n\n\t\tif (String(objEle) != \"undefined\") {\n\t\t\tif (String(objEle.length) == \"undefined\") {\n\t\t\t\tstrReturn = objEle.value;\n\t\t\t} else {\n\t\t\t\tfor (var i = 0; i < objEle.length; i++) {\n\t\t\t\t\tif (objEle[i].checked) {\n\t\t\t\t\t\tif (strReturn.length > 0) strReturn += \",\";\n\t\t\t\t\t\tstrReturn += objEle[i].value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn strReturn;\n\t}\n\n\tfunction IsEmail(strValue) {\n\t\tvar pattern = \/^[0-9a-zA-Z]([-_\\.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_\\.]?[0-9a-zA-Z])*\\.[a-zA-Z]{2,3}$\/i;\n\n\t\tif ((strValue.length == 0) || (!pattern.test(strValue))) return false;\n\t\treturn true;\n\t}\n\n\t\/\/ \uc785\ub825\uac00\ub2a5\ud55c \ubb38\uc790\uc778\uc9c0 \uccb4\ud06c\n\tfunction IsValueType(strValue, strCheckType) {\n\t\tif (strValue.length == 0) return false;\n\n\t\tswitch (strCheckType.toUpperCase()) {\n\t\t\tcase \"H\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)\n\t\t\tcase \"E\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38\n\t\t\tcase \"N\"        :\n\t\t\t\tif (strValue.search(\/[^0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790\n\t\t\tcase \"HE\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38\n\t\t\tcase \"HN\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a30-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc22b\uc790\n\t\t\tcase \"EN\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790\n\t\t\tcase \"HEN\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790\n\t\t\tcase \"HENS\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9,]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+,\n\t\t\tcase \"HENB\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+\uacf5\ubc31\n\t\t\tcase \"HENBI\"    :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3A-Za-z0-9~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uc601\ubb38+\uc22b\uc790+\uacf5\ubc31+\ud2b9\uc218\ubb38\uc790( ~!@#&()- )\n\t\t\tcase \"ENB\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790+\uacf5\ubc31\n\t\t\tcase \"N-\"        :\n\t\t\t\tif (strValue.search(\/[^0-9-]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790+\ud558\uc774\ud508\n\t\t\tcase \"N,\"        :\n\t\t\t\tif (strValue.search(\/[^0-9,]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc22b\uc790+\ucf64\ub9c8\n\t\t\tcase \"HB\"        :\n\t\t\t\tif (strValue.search(\/[^\uac00-\ud7a3 ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud55c\uae00(\uc790\uc18c\ud5c8\uc6a9\uc548\ud568)+\uacf5\ubc31\n\t\t\tcase \"EB\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z ]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uacf5\ubc31\n\t\t\tcase \"PWD\"        :\n\t\t\t\tif (strValue.search(\/[^A-Za-z0-9~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \uc601\ubb38+\uc22b\uc790+\ud2b9\ubb38( ~!@#$%^&*()\\? )\n\t\t\tcase \"SP\"        :\n\t\t\t\tif (strValue.search(\/[^~!@#$%^&*()-\\?]\/) != -1) return false;\n\t\t\t\tbreak;  \/\/ \ud2b9\ubb38( ~!@#$%^&*()\\? )\n\t\t\tdefault            :\n\t\t\t\treturn false;\n\t\t\t\tbreak;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction reset_frm() {\n\t\t\/\/ var f = document.frm_ai_pack;\n\t\tjQuery('#frm_ai_pack')[0].reset();\n\t\tgrecaptcha.reset();\n\t}\n\n\tfunction displayError(obj, msg) {\n\t\tvar errorEl = obj.closest(\".form-col\").querySelector(\".frm-error-message\");\n\t\terrorEl.textContent = msg;\n\t\terrorEl.classList.remove(\"d-none\");\n\n\t\tif ( valid ) {\n\t\t\tobj.focus();\n\t\t}\n\t\tvalid = false;\n\t\tobj.setAttribute(\"aria-invalid\", \"true\");\n\t}\n\n\tfunction hideError(obj) {\n\t\tvar errorEl = obj.closest(\".form-col\").querySelector(\".frm-error-message\");\n\t\terrorEl.textContent = \"\";\n\t\terrorEl.classList.add(\"d-none\");\n\n\t\tobj.setAttribute(\"aria-invalid\", \"false\"); \n\t}\n\n\tfunction reg_ai_pack() {\n\t\tvar f = document.frm_ai_pack;\n\t\tvar g_captcha;\n\n\t\t\/\/ reset\n\t\tvalid = true;\n\n\t\t\/\/ validate name - required\n\t\tif( ! validate(f.name, 'required') ) {\n\t\t\tdisplayError(f.name, \"Please add license key recipient's name.\");\n\t\t}\n\t\telse {\n\t\t\thideError(f.name);\n\t\t}\n\n\t\t\/\/ validate email - required\n\t\tif( ! validate(f.email, 'required') ) {\n\t\t\tdisplayError(f.email, \"Please add license key recipient's email\");\n\t\t}\n\t\telse if( ! validate(f.email, 'email') ) {\n\t\t\tdisplayError(f.email, 'Invalid email address format. Please check again.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.email);\n\t\t}\n\n\t\t\/\/ validate product - required\n\t\tif( ! validate(f.product, 'required') ) {\n\t\t\tdisplayError(f.product, 'Please select requesting AI Pack.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.product);\n\t\t}\n\n\t\t\/\/ validate acceptance\n\t\tif( ! validate(f.acceptance, 'checked') ) {\n\t\t\tdisplayError(f.acceptance, 'Please read and agree the privacy policy.');\n\t\t}\n\t\telse {\n\t\t\thideError(f.acceptance);\n\t\t}\n\n\t\t\/\/ validate recaptcha\n\t\tg_captcha = grecaptcha.getResponse();\n\t\tif ( g_captcha.length == 0 ) {\n\t\t\tvar errorEl = document.getElementById('error-recaptcha');\n\t\t\terrorEl.textContent = \"Please check 'I am not a robot.'\";\n\t\t\terrorEl.classList.remove('d-none');\n\t\t\tvalid = false;\n\t\t}\n\t\telse {\n\t\t\tvar errorEl = document.getElementById('error-recaptcha');\n\t\t\terrorEl.textContent = '';\n\t\t\terrorEl.classList.add('d-none');\n\t\t}\n\n\t\t\/\/ disable submit button, prepare for API call\n\t\tif( valid === false ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tf.submit.disabled = true;\n\t\tjQuery('.wpcf7-spinner').css('visibility', 'visible');\n\n\t\tvar data = {\n\t\t\t\"action\": \"ai_pack_register\",\n\t\t\t\"mode\": \"NEW\", \/\/ not used\n\t\t\t\"version\": \"10\", \/\/ not used\n\t\t\t\/\/ \"name\": f.name.value,\n\t\t\t\"email\": f.email.value,\n\t\t\t\"product\": f.product.value,\n\t\t\t\"acceptance\": f.acceptance.value,\n\t\t\t\"g_captcha\": g_captcha,\n\t\t\t\/\/ \"current_lang\": \"en\",\n\t\t};\n\n\t\t\/\/ console.log(data);\n\t\t\/\/ return;\n\n\t\tjQuery.post(\"https:\/\/www.hanwhavision.com\/wp-admin\/admin-ajax.php\", data, function(response) {\n\t\t\t\/*\n\t\t\tFAIL_CAPTCHA\n\t\t\tINVALID_EMAIL\n\t\t\tINVALID_PRODUCT\n\t\t\tINVALID_ACCEPTANCE\n\t\t\tBAD_REQUEST\n\t\t\tUNAUTHORIZED\n\t\t\tCONFLICT\n\t\t\tUNPROCESSABLE_ENTITY\n\t\t\tINTERNAL_SERVER_ERROR\n\t\t\tUNKNOWN\n\t\t\tOK\n\t\t\t*\/\n\t\t\t\n\t\t\tif (response == \"INVALID_EMAIL\" || response == \"INVALID_PRODUCT\" || response == \"INVALID_ACCEPTANCE\") {\n\t\t\t\talert(\"There is an error in the information you entered. Please enter it correctly.\");\n\t\t\t\t\/\/ reset_frm();\n\t\t\t}\n\t\t\telse if (response == \"FAIL_CAPTCHA\") {\n\t\t\t\talert(\"The CAPTCHA has expired or the verification failed.\\r\\nPlease try again.\");\n\t\t\t}\n\t\t\telse if (response == \"OK\") {\n\t\t\t\talert(\"AI PACK license issuance request has been completed.\\r\\nThe license key will be sent to the email you provided.\");\n\t\t\t\treset_frm();\n\t\t\t} \n\t\t\telse {\n\t\t\t\talert(\"Failed to issue the AI PACK license.\\r\\nIf this message keeps appearing, please contact the administrator.\");\n\t\t\t}\n\n\t\t\tjQuery('.wpcf7-spinner').css('visibility', 'hidden');\n\t\t\tf.submit.disabled = false;\n\n\t\t\treturn;\n\t\t});\n\t}\n<\/script>\n<section class=\"section\">\n\t<div class=\"wrapper\">\n\t\t<div class=\"container\">\n\t\t\t<div class=\"form-block\">\n\t\t\t\t<form id=\"frm_ai_pack\" name=\"frm_ai_pack\" onsubmit=\"return false;\">\n\t\t\t\t\t<input type=\"hidden\" id=\"ai_pack_version\" name=\"ai_pack_version\" \/>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"name\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tLicense key recipient's name\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-name\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"name\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"name\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"name\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"email\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tLicense key recipient's email\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-email\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"email\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"email\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"email\" \n\t\t\t\t\t\t\t\t\t\tname=\"email\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"product\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tAI Pack Trial License Request\n\t\t\t\t\t\t\t\t\t<span class=\"form-required-mark\">*<\/span>\n\t\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-product\"><\/p>\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"product\">\n\t\t\t\t\t\t\t\t\t<select \n\t\t\t\t\t\t\t\t\t\tclass=\"form-select\" \n\t\t\t\t\t\t\t\t\t\tid=\"product\" \n\t\t\t\t\t\t\t\t\t\taria-required=\"true\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tname=\"product\"\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t<option value=\"\">\n\t\t\t\t\t\t\t\t\t\t\tPlease choose an option\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01RET\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01RET (Retail & Business AI Pack')\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01TRF\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01TRF (Traffic AI Pack')\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01BLK\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01BLK (Blocked exit detection AI pack')\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"AIA-C01FAC\">\n\t\t\t\t\t\t\t\t\t\t\tAIA-C01FAC (Factory & Safety AI Pack')\n\t\t\t\t\t\t\t\t\t\t<\/option>\n\t\t\t\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"position\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tPosition\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"position\">\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control wpcf7-radio\" id=\"position\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item first\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"User\" checked=\"checked\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">User<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"Installer\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">Installer<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"SI\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">SI<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item last\">\n\t\t\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"radio\" name=\"position\" value=\"Dealership\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item-label\">Dealership<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"company\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tCompany Name\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"company\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"company\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"company\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<label for=\"referee-name\" class=\"p-label text-normal\">\n\t\t\t\t\t\t\t\t\tReferee's name\n\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"referee-name\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tsize=\"40\" \n\t\t\t\t\t\t\t\t\t\tclass=\"form-control\" \n\t\t\t\t\t\t\t\t\t\tid=\"referee-name\" \n\t\t\t\t\t\t\t\t\t\taria-invalid=\"false\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"\" \n\t\t\t\t\t\t\t\t\t\ttype=\"text\" \n\t\t\t\t\t\t\t\t\t\tname=\"referee-name\" \n\t\t\t\t\t\t\t\t\t\tautocomplete=\"off\" \n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block divider-top\"><\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<div class=\"scroll-policy\">\n\t\t\t\t\t\t\t\t\t<h4>Privacy Policy Agreement<\/h4>\n\t\t\t\t\t\t\t\t\t<p>Hanwha Vision Co., Ltd. (hereinafter \"Hanwha Vision\") values the privacy of our customers and has established the Privacy Policy in compliance with the Act on Promotion of Information and Communications Network Utilization and Information Protection, ETC. Personal Information Protection Act, and other relevant laws and regulations. Hanwha Vision 's Privacy Policy may change according to changes in the enactment of laws, amendments, changes in government policies, or the company's internal policies.<\/p>\n\t\t\t\t\t\t\t\t\t<p>&nbsp;<\/p>\n\t\t\t\t\t\t\t\t\t<h5>1. Purpose of Collection and Use of Personal Information<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\u2460 To provide satisfactory services, Hanwha Vision collects a minimal degree of required personal information for the purposes of answering questions and retaining responses, managing memberships, providing content, transmitting advertising information, and other marketing activities.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2461 However, we do not collect sensitive personal information (race, ethnicity, ideas\/beliefs, place of birth, location of family register, political affiliation, criminal records, health, sexuality, etc.) that may risk violating a customer's basic rights.<\/p>\n\t\t\t\t\t\t\t\t\t<h5>2. Personal Information collection items<\/h5>\n\t\t\t\t\t\t\t\t\t<p>- Name, email address, country, customer type, company name, job title, phone number, category, product<\/p>\n\t\t\t\t\t\t\t\t\t<h5>3. Retention, Usage Period, and Destruction of Personal Information<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\u2460 Hanwha Vision shall destroy personal information without delay at the request of a customer or when the purpose of collection or provision of personal information has been achieved.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2461 However, such information shall be retained for a certain period of time if required by relevant laws and regulations or internal policies as follows:<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u203b Retention of information pursuant to relevant laws and regulations (Commercial Act, Framework Act on National Taxes, Act on the Consumer Protection in Electronic Commerce, etc.<\/p>\n\t\t\t\t\t\t\t\t\t<p>Protection of Communications Secrets Act, etc.).<\/p>\n\t\t\t\t\t\t\t\t\t<p>1. Website sign-up and management: Until withdrawal<\/p>\n\t\t\t\t\t\t\t\t\t<p>However, information shall be retained until fulfillment of duty for the following reasons:<\/p>\n\t\t\t\t\t\t\t\t\t<p>A. Until the end of an investigation for violations in accordance with relevant laws and regulations.<\/p>\n\t\t\t\t\t\t\t\t\t<p>B. Until the settlement of remaining debts with respect to Website usage.<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. Provision of goods or services: Until the provision of goods or services are completed or fees are settled.<\/p>\n\t\t\t\t\t\t\t\t\t<p>However, information shall be retained until fulfillment of duty for the following reasons:<\/p>\n\t\t\t\t\t\t\t\t\t<p>A. Recording of transactions in accordance with the Uniform Electronic Transactions Act such as displays, advertisements, agreements and implementations thereof, etc.<\/p>\n\t\t\t\t\t\t\t\t\t<p>1) Records of displays and advertisements: 6 months<\/p>\n\t\t\t\t\t\t\t\t\t<p>2) Records of contract cancellations, payments, and provision of goods: 5 years<\/p>\n\t\t\t\t\t\t\t\t\t<p>3) Records of consumer complaints or disputes: 3 years<\/p>\n\t\t\t\t\t\t\t\t\t<p>B. Archiving of communications evidence in accordance with Article 41 of the Enforcement Decree of the Protection of Communications Secrets Act.<\/p>\n\t\t\t\t\t\t\t\t\t<p>1) Computer communications, Internet log data, and connection tracking data: 3 months<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2462 Destruction Procedures and Methods<\/p>\n\t\t\t\t\t\t\t\t\t<p>1. Hanwha Vision shall destroy without delay the personal information of customers when the retention period has lapsed, objectives have been achieved, or the information is no longer required for any other reason.<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. Despite the above reasons, if personal information needs to be retained in accordance with relevant laws or regulations, the information shall be moved to a separate database (DB) or storage area.<\/p>\n\t\t\t\t\t\t\t\t\t<p>3. Hanwha Vision shall destroy personal information recorded or stored in electronic files in a manner in which restoration or recovery is impossible. Information recorded or stored on paper shall be shredded or incinerated.<\/p>\n\t\t\t\t\t\t\t\t\t<h5>4. Use, Provision, and Sharing of Personal Information<\/h5>\n\t\t\t\t\t\t\t\t\t<p>\u2460 Except in cases where applicable by law or via customer consent, Hanwha Vision does not use or provide personal information to other companies or organizations beyond the scope prescribed under Article 3. However, personal information is cautiously used and\/or provided for the following cases.<\/p>\n\t\t\t\t\t\t\t\t\t<p>1. If the rights and obligations of a service provider is fully succeeded or transferred due to a sale, disposal, merger, or acquisition, Hanwha Vision shall provide advance notice with legitimate reasons as well as an option for the withdrawal of consent with respect to personal information handling.<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. If the personal information of a customer is provided or shared for any other reason, the customer shall be notified in advance via email or in writing regarding who is to receive or share such information, the purpose for which the information is provided, the types of information provided, the right to refuse provision, and possible detriments that may be incurred as a result of refusal.<\/p>\n\t\t\t\t\t\t\t\t\t<p>\u2461 In the following cases, we may provide personal information without consent in accordance with relevant laws and regulations.<\/p>\n\t\t\t\t\t\t\t\t\t<p>1. Execution of contract regarding provision of service.<\/p>\n\t\t\t\t\t\t\t\t\t<p>2. If stipulated by the terms of relevant laws and regulations, or if requested by a law enforcement agency for investigative purposes in accordance with the procedures and methods prescribed by law.<\/p>\n\t\t\t\t\t\t\t\t\t<p>3. If provided for statistical or academic or market research purposes by first processing personal information in a manner in which a specific individual cannot be identified.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-acceptance\"><\/p>\n\t\t\t\t\t\t\t\t<div class=\"form-row-group\">\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control-wrap\" data-name=\"acceptance\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-form-control wpcf7-acceptance\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" name=\"acceptance\" value=\"agreed\" id=\"acceptance\" aria-invalid=\"false\" \/>\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<label for=\"acceptance\">I agree <span class=\"form-required-mark\">*<\/span><\/label>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col\">\n\t\t\t\t\t\t\t\t<span id=\"captcha\" class=\"g-recaptcha\" data-sitekey=\"6LdjusYkAAAAAIjUJrYs3J80P8MrL15Cr0nPN-Qg\"><\/span>\n\t\t\t\t\t\t\t\t<p class=\"frm-error-message d-none\" id=\"error-recaptcha\"><\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"form-grid-block\">\n\t\t\t\t\t\t<div class=\"form-row\">\n\t\t\t\t\t\t\t<div class=\"form-col text-center\">\n\t\t\t\t\t\t\t\t<div class=\"form-inline-block\">\n\t\t\t\t\t\t\t\t\t<input \n\t\t\t\t\t\t\t\t\t\tclass=\"wpcf7-form-control wpcf7-submit has-spinner btn\" \n\t\t\t\t\t\t\t\t\t\ttype=\"submit\" \n\t\t\t\t\t\t\t\t\t\tname=\"submit\" \n\t\t\t\t\t\t\t\t\t\tvalue=\"Submit\" \n\t\t\t\t\t\t\t\t\t\tonclick=\"reg_ai_pack();\"\n\t\t\t\t\t\t\t\t\t\/>\n\t\t\t\t\t\t\t\t\t<span class=\"wpcf7-spinner\"><\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/form>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n<script src=\"https:\/\/www.google.com\/recaptcha\/api.js\" async defer><\/script>\n\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":55,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"v2024\/template-generic.php","meta":{"footnotes":""},"acf":[],"_links":{"self":[{"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/pages\/1631977"}],"collection":[{"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/users\/55"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/comments?post=1631977"}],"version-history":[{"count":4,"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/pages\/1631977\/revisions"}],"predecessor-version":[{"id":1632019,"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/pages\/1631977\/revisions\/1632019"}],"wp:attachment":[{"href":"https:\/\/www.hanwhavision.com\/en\/wp-json\/wp\/v2\/media?parent=1631977"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}